-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add yaml v1 #15
base: main
Are you sure you want to change the base?
Add yaml v1 #15
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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Simple version is for interoperability (sharing info between different domains, e.g., business and research)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
USA-CASE: Share the understanding as quickly as possible
--- | ||
Nodes: | ||
Person: | ||
attributes: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How to add "label aliases" (under Person or attributes
)?
mandatory: BOOLEAN | ||
indexed: BOOLEAN | ||
default: STRING | ||
extension: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This can be anything, such as information about the information or metadata about the label node.
default: STRING | ||
extension: | ||
- count: INT | ||
- filling_factor: FLOAT |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
N/A
- multiedge: BOOLEAN | ||
- from_node_type: Person | ||
- to_node_type: Address | ||
attributes: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is the type of the default value?
attributes: | ||
- id: | ||
type: STRING | ||
mandatory: BOOLEAN |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
unique: BOOLEAN
is an extension on the attribute
Initial proposal for YAML LPG schema including both simple and extensible serialisations.
TODOs