Ontology Version: 2.2.0

cacontology-grooming:IsolationTacticsShape leaf node


URI

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

Label

Isolation Tactics Shape

Description

Validation shape for isolation tactics instances with gUFO integration.

Implementation

@prefix cacontology-grooming: <https://cacontology.projectvic.org/grooming#> .
@prefix gufo: <http://purl.org/nemo/gufo#> .
@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:IsolationTacticsShape a sh:NodeShape ;
    rdfs:label "Isolation Tactics Shape"@en ;
    rdfs:comment "Validation shape for isolation tactics instances with gUFO integration."@en ;
    sh:property [ sh:datatype xsd:dateTimeStamp ;
            sh:maxCount 1 ;
            sh:message "Isolation tactics may have begin timestamp (gUFO temporal)"@en ;
            sh:path gufo:hasBeginPointInXSDDateTimeStamp ],
        [ sh:datatype xsd:string ;
            sh:in ( "physical_separation" "emotional_manipulation" "relationship_interference" "activity_restriction" "communication_control" "social_undermining" "dependency_creation" ) ;
            sh:maxCount 1 ;
            sh:message "Isolation tactics must specify method from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-grooming:isolationMethod ],
        [ sh:datatype xsd:string ;
            sh:in ( "ineffective" "partially_effective" "effective" "highly_effective" "complete" ) ;
            sh:maxCount 1 ;
            sh:message "Isolation effectiveness must be from the allowed list (gUFO quality aspect)."@en ;
            sh:minCount 0 ;
            sh:path cacontology-grooming:isolationEffectiveness ],
        [ sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:maxInclusive 1.0 ;
            sh:message "Isolation progress rate must be between 0.0 and 1.0 (gUFO quality aspect)"@en ;
            sh:minInclusive 0.0 ;
            sh:path cacontology-grooming:isolationProgressRate ] ;
    sh:targetClass cacontology-grooming:IsolationTactics .