https://cacontology.projectvic.org/multi-jurisdiction#MultiJurisdictionalEventTemporalShape
Validates gUFO temporal constraints for multi-jurisdictional events.
Instances of cacontology-multi:MultiJurisdictionalInvestigation can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|---|
@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 .