Ontology Version: 2.2.0

cacontology-tactical:ArrestOperationShape leaf node


URI

https://cacontology.projectvic.org/tactical#ArrestOperationShape

Label

Arrest Operation Shape

Description

Validation shape for arrest operation instances.

Implementation

@prefix cacontology-tactical: <https://cacontology.projectvic.org/tactical#> .
@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 xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-tactical:ArrestOperationShape a sh:NodeShape ;
    rdfs:label "Arrest Operation Shape"@en ;
    rdfs:comment "Validation shape for arrest operation instances."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:in ( "warrant_arrest" "probable_cause_arrest" "consensual_arrest" "traffic_stop_arrest" "field_arrest" "coordinated_arrest" ) ;
            sh:maxCount 1 ;
            sh:message "Arrest operation must specify arrest type from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-tactical:arrestType ],
        [ sh:datatype xsd:nonNegativeInteger ;
            sh:maxCount 1 ;
            sh:maxInclusive 50 ;
            sh:message "Arrest operation must target between 1 and 50 individuals."@en ;
            sh:minCount 1 ;
            sh:minInclusive 1 ;
            sh:path cacontology-tactical:targetCount ],
        [ sh:datatype xsd:boolean ;
            sh:maxCount 1 ;
            sh:message "Arrest operation must specify if resistance is expected."@en ;
            sh:minCount 1 ;
            sh:path cacontology-tactical:resistanceExpected ],
        [ sh:datatype xsd:boolean ;
            sh:maxCount 1 ;
            sh:message "Arrest operation must specify if weapons are expected."@en ;
            sh:minCount 1 ;
            sh:path cacontology-tactical:weaponsExpected ] ;
    sh:targetClass cacontology-tactical:ArrestOperation .