We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I propose we extend the schema so that we can also exchange objects referring to individuals.
For instance:
{ "type": "Instance", "id": "1", "name": "john", "description": "This is John!", "types": [ { "type": "Class", "id": "person-class" } ], "propertyAssignments": { "name": "John Doe", "age": 30, "dataOfBirth": "2000-01-01" } }
Where:
types
propertyAssignments
I'm not sure how to handle the instantiation of relations...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I propose we extend the schema so that we can also exchange objects referring to individuals.
For instance:
Where:
types
is an array of reference objects pointing to the types an individual instantiates.propertyAssignments
contain the instantiation of attributesI'm not sure how to handle the instantiation of relations...
The text was updated successfully, but these errors were encountered: