https://cacontology.projectvic.org/stranger-abduction#PredatoryAbductionShape
Validation shape for predatory abduction instances.
@prefix cacontology-stranger: <https://cacontology.projectvic.org/stranger-abduction#> .
@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-stranger:PredatoryAbductionShape a sh:NodeShape ;
rdfs:label "Predatory Abduction Shape"@en ;
rdfs:comment "Validation shape for predatory abduction instances."@en ;
sh:property [ sh:datatype xsd:boolean ;
sh:maxCount 1 ;
sh:message "Predatory abduction must specify if hunting behavior was observed."@en ;
sh:minCount 1 ;
sh:path cacontology-stranger:huntingBehavior ],
[ sh:datatype xsd:decimal ;
sh:maxCount 1 ;
sh:maxInclusive 720.0 ;
sh:message "Surveillance period must be between 0.1 and 720 hours (30 days)."@en ;
sh:minCount 0 ;
sh:minInclusive 0.1 ;
sh:path cacontology-stranger:surveillancePeriod ],
[ sh:datatype xsd:string ;
sh:in ( "specific_criteria" "random_selection" "convenience" "vulnerability_based" "proximity_based" ) ;
sh:maxCount 1 ;
sh:message "Predatory abduction must specify victim selection method from the allowed list."@en ;
sh:minCount 1 ;
sh:path cacontology-stranger:victimSelection ] ;
sh:targetClass cacontology-stranger:PredatoryAbduction .