Ontology Version: 2.2.0

cacontology-stranger:AbductionMethodShape leaf node


URI

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

Label

Abduction Method Shape

Description

Validation shape for abduction method 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:AbductionMethodShape a sh:NodeShape ;
    rdfs:label "Abduction Method Shape"@en ;
    rdfs:comment "Validation shape for abduction method instances."@en ;
    sh:property [ sh:datatype xsd:boolean ;
            sh:maxCount 1 ;
            sh:message "Abduction method must specify if weapon was involved."@en ;
            sh:minCount 1 ;
            sh:path cacontology-stranger:weaponInvolved ],
        [ sh:datatype xsd:boolean ;
            sh:maxCount 1 ;
            sh:message "Abduction method must specify if vehicle was used."@en ;
            sh:minCount 1 ;
            sh:path cacontology-stranger:vehicleUsed ],
        [ sh:datatype xsd:nonNegativeInteger ;
            sh:maxCount 1 ;
            sh:maxInclusive 10 ;
            sh:message "Number of accomplices must be between 0 and 10."@en ;
            sh:minCount 0 ;
            sh:minInclusive 0 ;
            sh:path cacontology-stranger:accomplices ],
        [ sh:datatype xsd:string ;
            sh:in ( "physical_force" "deception" "enticement" "threat" "weapon_use" "vehicle_abduction" "walk_away" ) ;
            sh:maxCount 1 ;
            sh:message "Abduction method must specify method type from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-stranger:methodType ],
        [ sh:datatype xsd:string ;
            sh:in ( "none" "minimal" "moderate" "significant" "extreme" "lethal" ) ;
            sh:maxCount 1 ;
            sh:message "Force level must be from the allowed list."@en ;
            sh:minCount 0 ;
            sh:path cacontology-stranger:forceLevel ] ;
    sh:targetClass cacontology-stranger:AbductionMethod .