https://cacontology.projectvic.org/undercover#OperationCrossReferenceShape
Validates cross-references between operation and related entities.
Instances of cacontology-undercover:UndercoverOperation can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|---|
@prefix cacontology-undercover: <https://cacontology.projectvic.org/undercover#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
cacontology-undercover:OperationCrossReferenceShape a sh:NodeShape ;
rdfs:label "Operation Cross Reference Shape"@en ;
rdfs:comment "Validates cross-references between operation and related entities."@en ;
sh:sparql [ sh:message "Undercover operation must use at least one identity and follow a plan."@en ;
sh:select """
SELECT $this
WHERE {
$this a cacontology-undercover:UndercoverOperation .
FILTER NOT EXISTS {
$this cacontology-undercover:usesIdentity ?identity ;
cacontology-undercover:followsPlan ?plan .
}
}
""" ] ;
sh:targetClass cacontology-undercover:UndercoverOperation .