Ontology Version: 2.2.0

cacontology-stranger:BehavioralProfileShape leaf node


URI

https://cacontology.projectvic.org/stranger-abduction#BehavioralProfileShape

Label

Behavioral Profile Shape

Description

Validation shape for behavioral profile instances.

Implementation

@prefix cacontology-stranger: <https://cacontology.projectvic.org/stranger-abduction#> .
@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-stranger:BehavioralProfileShape a sh:NodeShape ;
    rdfs:label "Behavioral Profile Shape"@en ;
    rdfs:comment "Validation shape for behavioral profile instances."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:in ( "deception" "force" "enticement" "authority_figure" "assistance_ruse" "direct_approach" ) ;
            sh:maxCount 1 ;
            sh:message "Behavioral profile must specify approach method from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-stranger:approachMethod ],
        [ sh:datatype xsd:string ;
            sh:in ( "friendly" "authoritative" "threatening" "manipulative" "silent" "erratic" ) ;
            sh:maxCount 1 ;
            sh:message "Communication style must be from the allowed list."@en ;
            sh:minCount 0 ;
            sh:path cacontology-stranger:communicationStyle ],
        [ sh:datatype xsd:string ;
            sh:in ( "highly_organized" "organized" "mixed" "disorganized" "chaotic" ) ;
            sh:maxCount 1 ;
            sh:message "Behavioral profile must specify organization level from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-stranger:organizationLevel ] ;
    sh:targetClass cacontology-stranger:BehavioralProfile .