https://cacontology.projectvic.org/sextortion#ResistanceResponseShape
Validation shape for resistance response 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:ResistanceResponseShape a sh:NodeShape ;
rdfs:label "Resistance Response Shape"@en ;
rdfs:comment "Validation shape for resistance response instances."@en ;
sh:property [ sh:datatype xsd:string ;
sh:in ( "blocking" "reporting" "threatening_legal_action" "seeking_help" "counter_threats" "ignoring" "confrontation" ) ;
sh:maxCount 1 ;
sh:message "Resistance response must specify resistance method from the allowed list."@en ;
sh:minCount 1 ;
sh:path cacontology-sextortion:resistanceMethod ],
[ sh:datatype xsd:string ;
sh:in ( "ineffective" "partially_effective" "effective" "highly_effective" "completely_successful" ) ;
sh:maxCount 1 ;
sh:message "Resistance effectiveness must be from the allowed list."@en ;
sh:minCount 0 ;
sh:path cacontology-sextortion:resistanceEffectiveness ] ;
sh:targetClass cacontology-sextortion:ResistanceResponse .