Conversation
|
Review is WIP ⏳ + Let's try talking more about higher-level rules, e.g., how to incorporate https://en.wikipedia.org/wiki/F-logic 🤔 |
| @@ -0,0 +1,129 @@ | |||
| # LPG YAML Schema Options - examples | |||
|
|
|||
| # Version 1 - simple | |||
There was a problem hiding this comment.
Simple version is for interoperability (sharing info between different domains, e.g., business and research)
There was a problem hiding this comment.
USA-CASE: Share the understanding as quickly as possible
| --- | ||
| Nodes: | ||
| Person: | ||
| attributes: |
There was a problem hiding this comment.
How to add "label aliases" (under Person or attributes)?
| mandatory: BOOLEAN | ||
| indexed: BOOLEAN | ||
| default: STRING | ||
| extension: |
There was a problem hiding this comment.
This can be anything, such as information about the information or metadata about the label node.
| default: STRING | ||
| extension: | ||
| - count: INT | ||
| - filling_factor: FLOAT |
| - multiedge: BOOLEAN | ||
| - from_node_type: Person | ||
| - to_node_type: Address | ||
| attributes: |
There was a problem hiding this comment.
"properties are the properties of the edge type"
"attributes are properties of the edges"
properties (properties of the edges) vs attributes
| type: STRING | ||
| mandatory: BOOLEAN | ||
| indexed: BOOLEAN | ||
| default: STRING |
There was a problem hiding this comment.
What is the type of the default value?
| attributes: | ||
| - id: | ||
| type: STRING | ||
| mandatory: BOOLEAN |
There was a problem hiding this comment.
unique: BOOLEAN is an extension on the attribute
|
|
Initial proposal for YAML LPG schema including both simple and extensible serialisations.
TODOs