https://cacontology.projectvic.org/core/shapes#ConditioningPhaseShape
Validation shape for offense-trajectory conditioning phase instances.
Instances of cac-core:ConditioningPhase can have the following properties:
@prefix cac-core: <https://cacontology.projectvic.org/core#> .
@prefix cac-core-shapes: <https://cacontology.projectvic.org/core/shapes#> .
@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#> .
cac-core-shapes:ConditioningPhaseShape a sh:NodeShape ;
rdfs:label "Conditioning Phase Shape"@en ;
rdfs:comment "Validation shape for offense-trajectory conditioning phase instances."@en ;
sh:property [ sh:hasValue cac-core:Phase ;
sh:message "ConditioningPhase instances must always be dual-typed with cac-core:Phase."@en ;
sh:minCount 1 ;
sh:path rdf:type ],
[ sh:message "Conditioning phase must have a human-readable label."@en ;
sh:minCount 1 ;
sh:path rdfs:label ],
[ sh:datatype xsd:string ;
sh:in ( "trust_rapport" "deception" "isolation" "normalization" "desensitization" "compliance_shaping" "dependency_creation" "fear_priming" "platform_confidence" ) ;
sh:maxCount 1 ;
sh:message "conditioningMode must be from the allowed offense-trajectory mechanism list."@en ;
sh:minCount 0 ;
sh:path cac-core:conditioningMode ] ;
sh:targetClass cac-core:ConditioningPhase .