Ontology Version: 2.2.0

cacontology-tactical:SearchWarrantOperationShape leaf node


URI

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

Label

Search Warrant Operation Shape

Description

Validation shape for search warrant 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:SearchWarrantOperationShape a sh:NodeShape ;
    rdfs:label "Search Warrant Operation Shape"@en ;
    rdfs:comment "Validation shape for search warrant operation instances."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:in ( "premises_search" "vehicle_search" "person_search" "digital_search" "combined_search" "no_knock_warrant" ) ;
            sh:maxCount 1 ;
            sh:message "Search warrant operation must specify warrant type from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-tactical:warrantType ],
        [ sh:datatype xsd:string ;
            sh:in ( "specific_items" "general_evidence" "digital_evidence" "contraband" "weapons" "comprehensive" ) ;
            sh:maxCount 1 ;
            sh:message "Search warrant operation must specify search scope from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-tactical:searchScope ],
        [ sh:datatype xsd:string ;
            sh:in ( "knock_announce" "no_knock" "consent" "key_entry" "forced_entry" "stealth_entry" ) ;
            sh:maxCount 1 ;
            sh:message "Search warrant operation must specify entry method from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-tactical:entryMethod ],
        [ sh:datatype xsd:boolean ;
            sh:maxCount 1 ;
            sh:message "Search warrant operation must specify if evidence is expected."@en ;
            sh:minCount 1 ;
            sh:path cacontology-tactical:evidenceExpected ] ;
    sh:targetClass cacontology-tactical:SearchWarrantOperation .