-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
References: * casework/CASE#138 * ucoProject/UCO#544 Signed-off-by: Alex Nelson <[email protected]>
- Loading branch information
1 parent
af31119
commit 9e5486a
Showing
5 changed files
with
87 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
@prefix observable: <https://ontology.unifiedcyberontology.org/uco/observable/> . | ||
@prefix owl: <http://www.w3.org/2002/07/owl#> . | ||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | ||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | ||
@prefix sh: <http://www.w3.org/ns/shacl#> . | ||
@prefix vocabulary: <https://ontology.unifiedcyberontology.org/uco/vocabulary/> . | ||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | ||
|
||
[] | ||
a sh:ValidationReport ; | ||
sh:conforms "true"^^xsd:boolean ; | ||
sh:result | ||
[ | ||
a sh:ValidationResult ; | ||
sh:focusNode <http://example.org/kb/account-facet-2ff9009c-69d9-4f96-8cdf-d282ecae4a24> ; | ||
sh:resultMessage "Value is outside the default vocabulary AccountTypeVocab." ; | ||
sh:resultPath observable:accountType ; | ||
sh:resultSeverity sh:Info ; | ||
sh:sourceConstraintComponent sh:DatatypeConstraintComponent ; | ||
sh:sourceShape [ | ||
sh:datatype vocabulary:AccountTypeVocab ; | ||
sh:message "Value is outside the default vocabulary AccountTypeVocab." ; | ||
sh:path observable:accountType ; | ||
sh:severity sh:Info ; | ||
] ; | ||
sh:value "Phone" ; | ||
] , | ||
[ | ||
a sh:ValidationResult ; | ||
sh:focusNode <http://example.org/kb/account-facet-a1397192-d69e-427a-ba4a-b55afc4480f5> ; | ||
sh:resultMessage "Value is outside the default vocabulary AccountTypeVocab." ; | ||
sh:resultPath observable:accountType ; | ||
sh:resultSeverity sh:Info ; | ||
sh:sourceConstraintComponent sh:DatatypeConstraintComponent ; | ||
sh:sourceShape [ | ||
sh:datatype vocabulary:AccountTypeVocab ; | ||
sh:message "Value is outside the default vocabulary AccountTypeVocab." ; | ||
sh:path observable:accountType ; | ||
sh:severity sh:Info ; | ||
] ; | ||
sh:value "Phone" ; | ||
] | ||
; | ||
. | ||
|
24 changes: 24 additions & 0 deletions
24
examples/crossover_linked/query-email_addresses_in_common.html
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,24 @@ | ||
<table border="1" class="dataframe table table-bordered table-condensed"> | ||
<thead> | ||
<tr style="text-align: right;"> | ||
<th>?lAddressValue</th> | ||
<th>?lInvestigationName</th> | ||
<th>?nInvestigation</th> | ||
<th>?nEmailAddress</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr> | ||
<td>[email protected] <aresthewerewolf></td> | ||
<td>CROSSOVER_2018_11191001</td> | ||
<td>kb:Investigation1-85c7b8d1-54e0-4023-847a-20e0f55dd48e</td> | ||
<td>kb:EmailAddress-d2bc0936-e1c5-4b55-8a1b-af2b3a2b145c</td> | ||
</tr> | ||
<tr> | ||
<td>[email protected]</td> | ||
<td>CROSSOVER_2018_12111001</td> | ||
<td>kb:investigation-99892fd4-ea24-46b5-be68-a69978d6ab98</td> | ||
<td>kb:emailaddress-456a2bac-8c21-11e9-8902-0c4de9c24de5</td> | ||
</tr> | ||
</tbody> | ||
</table> |
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