https://cacontology.projectvic.org/specialized-units#K9OperationCrossReferenceShape
Validates cross-references between K9 operations and related entities.
Instances of cacontology-specialized:K9SearchOperation can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|---|
@prefix cacontology-specialized: <https://cacontology.projectvic.org/specialized-units#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
cacontology-specialized:K9OperationCrossReferenceShape a sh:NodeShape ;
rdfs:label "K9 Operation Cross Reference Shape"@en ;
rdfs:comment "Validates cross-references between K9 operations and related entities."@en ;
sh:sparql [ sh:message "K9 search operation should have an associated detection dog."@en ;
sh:select """
SELECT $this
WHERE {
$this a cacontology-specialized:K9SearchOperation .
FILTER NOT EXISTS {
?dog cacontology-specialized:assistsInSearch $this .
}
}
""" ] ;
sh:targetClass cacontology-specialized:K9SearchOperation .