Ontology Version: 2.7.0

cacontology-sextortion:ViolenceThreatShape leaf node


URI

https://cacontology.projectvic.org/sextortion#ViolenceThreatShape

Label

Violence Threat Shape

Description

Validation shape for violence threat mechanisms.

Shape Properties

Instances of cacontology-sextortion:ViolenceThreat can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-sextortion:ViolenceThreat
cacontology-sextortion:threatType 1 1 xsd:string

Implementation

@prefix cacontology-sextortion: <https://cacontology.projectvic.org/sextortion#> .
@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-sextortion:ViolenceThreatShape a sh:NodeShape ;
    rdfs:label "Violence Threat Shape"@en ;
    rdfs:comment "Validation shape for violence threat mechanisms."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:hasValue "violence" ;
            sh:maxCount 1 ;
            sh:message "ViolenceThreat must have threatType 'violence'."@en ;
            sh:minCount 1 ;
            sh:path cacontology-sextortion:threatType ] ;
    sh:targetClass cacontology-sextortion:ViolenceThreat .