Ontology Version: 2.2.0

cacontology-grooming:EmotionalVulnerabilityShape leaf node


URI

https://cacontology.projectvic.org/grooming#EmotionalVulnerabilityShape

Label

Emotional Vulnerability Shape

Description

Validation shape for emotional vulnerability instances with gUFO integration.

Implementation

@prefix cacontology-grooming: <https://cacontology.projectvic.org/grooming#> .
@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-grooming:EmotionalVulnerabilityShape a sh:NodeShape ;
    rdfs:label "Emotional Vulnerability Shape"@en ;
    rdfs:comment "Validation shape for emotional vulnerability instances with gUFO integration."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:in ( "loneliness" "depression" "anxiety" "low_self_esteem" "anger" "confusion" "grief" "trauma_response" ) ;
            sh:maxCount 1 ;
            sh:message "Emotional vulnerability must specify emotional state from the allowed list (gUFO quality aspect)."@en ;
            sh:minCount 1 ;
            sh:path cacontology-grooming:emotionalState ],
        [ sh:datatype xsd:string ;
            sh:in ( "attention" "validation" "acceptance" "love" "security" "understanding" "belonging" "control" ) ;
            sh:maxCount 1 ;
            sh:message "Emotional need must be from the allowed list (gUFO quality aspect)."@en ;
            sh:minCount 0 ;
            sh:path cacontology-grooming:emotionalNeed ],
        [ sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:maxInclusive 1.0 ;
            sh:message "Emotional intensity must be between 0.0 and 1.0 (gUFO quality aspect)"@en ;
            sh:minInclusive 0.0 ;
            sh:path cacontology-grooming:emotionalIntensity ] ;
    sh:targetClass cacontology-grooming:EmotionalVulnerability .