https://cacontology.projectvic.org/tactical#ArrestOperationShape
Validation shape for arrest operation instances. - Validation shape for arrest operations in ICAC investigations.
Instances of cacontology-tactical:ArrestOperation can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|
|---|---|---|---|---|
| cacontology-tactical:ArrestOperation | ||||
| cacontology-tactical:arrestType | 1 | 1 |
xsd:string
|
|
| cacontology-tactical:resistanceExpected | 1 | 1 |
xsd:boolean
|
|
| cacontology-tactical:targetCount | 0, 1 | 1 |
xsd:nonNegativeInteger
|
|
| cacontology-tactical:weaponsExpected | 1 | 1 |
xsd:boolean
|
|
| 0 | 1 |
rdf:langString
|
||
| 0 | 1 |
xsd:dateTime
|
||
@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 uco-core: <https://ontology.unifiedcyberontology.org/uco/core/> .
@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,
"Validation shape for arrest operations in ICAC investigations."@en ;
sh:property [ sh:datatype rdf:langString ;
sh:maxCount 1 ;
sh:message "Arrest operation should have a label."@en ;
sh:minCount 0 ;
sh:path rdfs:label ],
[ sh:datatype xsd:nonNegativeInteger ;
sh:maxCount 1 ;
sh:maxInclusive 100 ;
sh:message "Target count should be between 1 and 100."@en ;
sh:minCount 0 ;
sh:minInclusive 1 ;
sh:path cacontology-tactical:targetCount ],
[ sh:datatype xsd:dateTime ;
sh:maxCount 1 ;
sh:message "May specify the arrest operation time."@en ;
sh:minCount 0 ;
sh:path uco-core:startTime ],
[ sh:datatype xsd:string ;
sh:in ( "warrant_arrest" "probable_cause_arrest" "consensual_arrest" "traffic_stop_arrest" "field_arrest" "coordinated_arrest" "sting_operation" "undercover_takedown" "multi_target_sweep" "surveillance_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 .