Ontology Version: 2.2.0

cacontology-sextortion:ProgressiveEscalationShape leaf node


URI

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

Label

Progressive Escalation Shape

Description

Validation shape for progressive escalation instances.

Shape Properties

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

PROPERTY

MIN COUNT

MAX COUNT

TYPE

Implementation

@prefix cacontology-sextortion: <https://cacontology.projectvic.org/sextortion#> .
@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-sextortion:ProgressiveEscalationShape a sh:NodeShape ;
    rdfs:label "Progressive Escalation Shape"@en ;
    rdfs:comment "Validation shape for progressive escalation instances."@en ;
    sh:property [ sh:datatype xsd:nonNegativeInteger ;
            sh:maxCount 1 ;
            sh:maxInclusive 10 ;
            sh:message "Progressive escalation must have between 2 and 10 escalation stages."@en ;
            sh:minCount 1 ;
            sh:minInclusive 2 ;
            sh:path cacontology-sextortion:escalationStages ],
        [ sh:datatype xsd:string ;
            sh:in ( "linear" "exponential" "irregular" "cyclical" "stepped" ) ;
            sh:maxCount 1 ;
            sh:message "Progressive escalation must specify stage progression from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-sextortion:stageProgression ] ;
    sh:targetClass cacontology-sextortion:ProgressiveEscalation .