Ontology Version: 2.2.0

cacontology-stranger:SearchEffectivenessShape leaf node


URI

https://cacontology.projectvic.org/stranger-abduction#SearchEffectivenessShape

Label

Search Effectiveness Shape

Description

Validates search operation resource allocation.

Implementation

@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 .