Ontology Version: 2.2.0

cacontology-street:EscalationTimelineValidationShape leaf node


URI

https://cacontology.projectvic.org/street#EscalationTimelineValidationShape

Label

Escalation Timeline Validation Shape

Description

Validates temporal consistency in rapid escalation recruitment.

Shape Properties

Instances of cacontology-street:RapidEscalationRecruitment can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-street:RapidEscalationRecruitment
cacontology-street:escalationTimeframe 0 1 xsd:decimal

Implementation

@prefix cacontology-street: <https://cacontology.projectvic.org/street#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
cacontology-street:EscalationTimelineValidationShape a sh:NodeShape ;
    rdfs:label "Escalation Timeline Validation Shape"@en ;
    rdfs:comment "Validates temporal consistency in rapid escalation recruitment."@en ;
    sh:sparql [ sh:message "Rapid escalation recruitment should have escalation timeframe less than 24 hours."@en ;
            sh:select """
            SELECT $this
            WHERE {
                $this a cacontology-street:RapidEscalationRecruitment ;
                      cacontology-street:escalationTimeframe ?timeframe .
                FILTER (?timeframe >= 24.0)
            }
        """ ] ;
    sh:targetClass cacontology-street:RapidEscalationRecruitment .