https://cacontology.projectvic.org/sextortion#EscalationPatternShape
Validation shape for escalation pattern instances.
@prefix cacontology-sextortion: <https://cacontology.projectvic.org/sextortion#> .
@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-sextortion:EscalationPatternShape a sh:NodeShape ;
rdfs:label "Escalation Pattern Shape"@en ;
rdfs:comment "Validation shape for escalation pattern instances."@en ;
sh:property [ sh:datatype xsd:string ;
sh:in ( "demand_escalation" "threat_escalation" "frequency_escalation" "scope_escalation" "violence_escalation" "exposure_escalation" ) ;
sh:maxCount 1 ;
sh:message "Escalation pattern must specify escalation type from the allowed list."@en ;
sh:minCount 1 ;
sh:path cacontology-sextortion:escalationType ],
[ sh:datatype xsd:string ;
sh:in ( "non_compliance" "resistance" "delay" "partial_compliance" "reporting_threat" "blocking" "time_passage" ) ;
sh:maxCount 1 ;
sh:message "Escalation trigger must be from the allowed list."@en ;
sh:minCount 0 ;
sh:path cacontology-sextortion:escalationTrigger ],
[ sh:datatype xsd:string ;
sh:in ( "gradual" "moderate" "rapid" "immediate" "explosive" ) ;
sh:maxCount 1 ;
sh:message "Escalation pattern must specify escalation speed from the allowed list."@en ;
sh:minCount 1 ;
sh:path cacontology-sextortion:escalationSpeed ] ;
sh:targetClass cacontology-sextortion:EscalationPattern .