Ontology Version: 3.0.0

cacontology:EventShape leaf node


URI

https://cacontology.projectvic.org#EventShape

Label

gUFO Event Shape

Target Classes (1)

Shape Properties

Instances of cac-core:Event can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

Implementation

@prefix cac-core: <https://cacontology.projectvic.org/core#> .
@prefix cacontology: <https://cacontology.projectvic.org#> .
@prefix gufo: <http://purl.org/nemo/gufo#> .
@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:EventShape a sh:NodeShape ;
    rdfs:label "gUFO Event Shape"@en ;
    sh:property [ sh:datatype xsd:dateTimeStamp ;
            sh:maxCount 1 ;
            sh:message "Event can have at most one begin point"@en ;
            sh:path gufo:hasBeginPointInXSDDateTimeStamp ],
        [ sh:datatype xsd:dateTimeStamp ;
            sh:maxCount 1 ;
            sh:message "Event can have at most one end point"@en ;
            sh:path gufo:hasEndPointInXSDDateTimeStamp ] ;
    sh:targetClass cac-core:Event .