-
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.
Add Non/InformationResource and UUID rule exception
A follow-on patch will regenerate Make-managed files. References: * #606 Signed-off-by: Alex Nelson <[email protected]>
- Loading branch information
1 parent
fde4cdd
commit d2e2720
Showing
6 changed files
with
119 additions
and
3 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
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,50 @@ | ||
{ | ||
"@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 a warning 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" | ||
} | ||
] | ||
}, | ||
{ | ||
"@id": "kb:Person-a3d3af3d-ea1d-47f6-bc02-ac334ded6549", | ||
"@type": "identity:Person", | ||
"core:name": "Bob", | ||
"rdfs:seeAlso": { | ||
"@id": "http://example.org/~bob" | ||
} | ||
}, | ||
{ | ||
"@id": "kb:WebPage-1c05c378-124e-4d3c-898a-fb5a8d178cf8", | ||
"@type": "observable:WebPage", | ||
"core:description": "Bob's company home page.", | ||
"rdfs:seeAlso": { | ||
"@id": "http://example.org/~bob" | ||
} | ||
}, | ||
{ | ||
"@id": "http://example.org/~chris", | ||
"@type": "observable:WebResource", | ||
"rdfs:comment": "This node will trigger an info-level result from not designating itself a InformationResource, and not ending with a UUID." | ||
} | ||
] | ||
} |
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