Ontology Version: 2.2.0

cacontology-multi:MultiJurisdictionalEventTemporalShape leaf node


URI

https://cacontology.projectvic.org/multi-jurisdiction#MultiJurisdictionalEventTemporalShape

Label

Multi-Jurisdictional Event Temporal Shape

Description

Validates gUFO temporal constraints for multi-jurisdictional events.

Shape Properties

Instances of cacontology-multi:MultiJurisdictionalInvestigation can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

Implementation

@prefix cacontology-multi: <https://cacontology.projectvic.org/multi-jurisdiction#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
cacontology-multi:MultiJurisdictionalEventTemporalShape a sh:NodeShape ;
    rdfs:label "Multi-Jurisdictional Event Temporal Shape"@en ;
    rdfs:comment "Validates gUFO temporal constraints for multi-jurisdictional events."@en ;
    sh:sparql [ sh:message "gUFO Events must have consistent temporal boundaries with end after start."@en ;
            sh:select """
            SELECT $this
            WHERE {
                $this gufo:hasBeginPointInXSDDateTimeStamp ?start ;
                      gufo:hasEndPointInXSDDateTimeStamp ?end .
                FILTER (?end <= ?start)
            }
        """ ] ;
    sh:targetClass cacontology-multi:MultiJurisdictionalInvestigation .