-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enforce InformationResource and NeverInformationResource disjointedness
A follow-on patch will regenerate Make-managed files. References: * #619 Signed-off-by: Alex Nelson <[email protected]>
- Loading branch information
1 parent
5599ce3
commit ee63df3
Showing
5 changed files
with
44 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"@context": { | ||
"core": "https://ontology.unifiedcyberontology.org/uco/core/", | ||
"kb": "http://example.org/kb/", | ||
"identity": "https://ontology.unifiedcyberontology.org/uco/identity/", | ||
"observable": "https://ontology.unifiedcyberontology.org/uco/observable/", | ||
"rdfs": "http://www.w3.org/2000/01/rdf-schema#" | ||
}, | ||
"@graph": [ | ||
{ | ||
"@id": "http://example.org/~bob", | ||
"@type": [ | ||
"identity:Person", | ||
"observable:WebPage" | ||
], | ||
"core:name": "Bob", | ||
"core:description": "Bob's company home page.", | ||
"rdfs:comment": "This node will trigger an error from conflating a node as both a person and the person's home page.", | ||
"rdfs:seeAlso": [ | ||
{ | ||
"@id": "kb:Person-a3d3af3d-ea1d-47f6-bc02-ac334ded6549" | ||
}, | ||
{ | ||
"@id": "kb:WebPage-1c05c378-124e-4d3c-898a-fb5a8d178cf8" | ||
} | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters