Ontology Version: 2.2.0

cacontology-sextortion:VictimResponseShape leaf node


URI

https://cacontology.projectvic.org/sextortion#VictimResponseShape

Label

Victim Response Shape

Description

Validation shape for victim response instances.

Shape Properties

Instances of cacontology-sextortion:VictimResponse can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

Implementation

@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:VictimResponseShape a sh:NodeShape ;
    rdfs:label "Victim Response Shape"@en ;
    rdfs:comment "Validation shape for victim response instances."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:in ( "minimal" "moderate" "significant" "severe" "traumatic" "devastating" ) ;
            sh:maxCount 1 ;
            sh:message "Emotional impact must be from the allowed list."@en ;
            sh:minCount 0 ;
            sh:path cacontology-sextortion:emotionalImpact ],
        [ sh:datatype xsd:string ;
            sh:in ( "compliance" "resistance" "negotiation" "reporting" "blocking" "withdrawal" "escalation" "seeking_help" ) ;
            sh:maxCount 1 ;
            sh:message "Victim response must specify response type from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-sextortion:responseType ],
        [ sh:datatype xsd:string ;
            sh:in ( "immediate" "within_hours" "within_days" "delayed" "no_response" ) ;
            sh:maxCount 1 ;
            sh:message "Response speed must be from the allowed list."@en ;
            sh:minCount 0 ;
            sh:path cacontology-sextortion:responseSpeed ] ;
    sh:targetClass cacontology-sextortion:VictimResponse .