Ontology Version: 2.2.0

cacontology-enterprises:SelfHarmCoercionShape leaf node


URI

https://cacontology.projectvic.org/extremist-enterprises#SelfHarmCoercionShape

Label

SelfHarmCoercionShape

Shape Properties

Instances of cacontology-enterprises:SelfHarmCoercion can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-enterprises:SelfHarmCoercion
cacontology-enterprises:coercionEffectiveness 1 xsd:decimal
cacontology-enterprises:coercionSeverity 1 xsd:string
cacontology-enterprises:createsVictimizationSituation 1 gufo:Situation
cacontology-enterprises:hasCoercionEventBeginDate 1 xsd:dateTimeStamp
cacontology-enterprises:selfHarmType 1 xsd:string

Implementation

@prefix cacontology-enterprises: <https://cacontology.projectvic.org/extremist-enterprises#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-enterprises:SelfHarmCoercionShape a sh:NodeShape ;
    sh:property [ sh:datatype xsd:string ;
            sh:in ( "moderate" "severe" "extreme" "life_threatening" ) ;
            sh:maxCount 1 ;
            sh:message "Coercion severity must be valid level."@en ;
            sh:path cacontology-enterprises:coercionSeverity ],
        [ sh:datatype xsd:string ;
            sh:in ( "cutting" "burning" "bruising" "other" ) ;
            sh:maxCount 1 ;
            sh:message "Self-harm type must be valid type."@en ;
            sh:path cacontology-enterprises:selfHarmType ],
        [ sh:datatype xsd:decimal ;
            sh:maxCount 1 ;
            sh:maxInclusive 1.0 ;
            sh:message "Coercion effectiveness must be between 0.0 and 1.0."@en ;
            sh:minInclusive 0.0 ;
            sh:path cacontology-enterprises:coercionEffectiveness ] ;
    sh:targetClass cacontology-enterprises:SelfHarmCoercion .