https://cacontology.projectvic.org/stranger-abduction#SearchEffectivenessShape
Validates search operation resource allocation.
@prefix cacontology-stranger: <https://cacontology.projectvic.org/stranger-abduction#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
cacontology-stranger:SearchEffectivenessShape a sh:NodeShape ;
rdfs:label "Search Effectiveness Shape"@en ;
rdfs:comment "Validates search operation resource allocation."@en ;
sh:sparql [ sh:message "Large search operations should have adequate personnel."@en ;
sh:select """
SELECT $this
WHERE {
$this cacontology-stranger:searchRadius ?radius ;
cacontology-stranger:personnelCount ?personnel .
FILTER (?radius > 50.0 && ?personnel < 20)
}
""" ] ;
sh:targetClass cacontology-stranger:SearchOperation .