-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Warn if an AlternateDataStream instance is not also a FileSystemObject
A follow-on patch will regenerate Make-managed files. References: * #590 Signed-off-by: Alex Nelson <[email protected]>
- Loading branch information
1 parent
27ca6b0
commit 13f877b
Showing
4 changed files
with
40 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"@context": { | ||
"kb": "http://example.org/kb/", | ||
"observable": "https://ontology.unifiedcyberontology.org/uco/observable/", | ||
"rdfs": "http://www.w3.org/2000/01/rdf-schema#" | ||
}, | ||
"@graph": [ | ||
{ | ||
"@id": "kb:AlternateDataStream-07b3c41a-080c-4916-8375-c18148763e13", | ||
"@type": "observable:AlternateDataStream", | ||
"rdfs:comment": "This node should trigger a sh:Warning from not being a observable:FileSystemObject" | ||
}, | ||
{ | ||
"@id": "kb:AlternateDataStream-b2d4968b-4490-4b44-a56b-832058834454", | ||
"@type": [ | ||
"observable:AlternateDataStream", | ||
"observable:FileSystemObject" | ||
] | ||
} | ||
] | ||
} |
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