Ontology Version: 2.2.0

cacontology-street:SameDayProgressionValidationShape leaf node


URI

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

Label

Same Day Progression Validation Shape

Description

Validates same-day progression logic.

Shape Properties

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

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-street:SameDayProgression
cacontology-street:sameDayProgression 0 1 xsd:boolean
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:SameDayProgressionValidationShape a sh:NodeShape ;
    rdfs:label "Same Day Progression Validation Shape"@en ;
    rdfs:comment "Validates same-day progression logic."@en ;
    sh:sparql [ sh:message "Same day progression should have escalation timeframe less than 24 hours."@en ;
            sh:select """
            SELECT $this
            WHERE {
                $this a cacontology-street:SameDayProgression .
                ?recruitment a cacontology-street:RapidEscalationRecruitment ;
                             cacontology-street:escalationTimeframe ?timeframe .
                FILTER (?timeframe >= 24.0)
            }
        """ ] ;
    sh:targetClass cacontology-street:SameDayProgression .