Ontology Version: 3.0.0

cac-core-shapes:EventShape leaf node


URI

https://cacontology.projectvic.org/core/shapes#EventShape

Label

Event Shape

Description

Minimal interoperability shape for events.

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 cac-core-shapes: <https://cacontology.projectvic.org/core/shapes#> .
@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#> .
cac-core-shapes:EventShape a sh:NodeShape ;
    rdfs:label "Event Shape"@en ;
    rdfs:comment "Minimal interoperability shape for events."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:description "Every event should have at least one human-readable label."@en ;
            sh:minCount 1 ;
            sh:name "label"@en ;
            sh:path rdfs:label ],
        [ sh:datatype xsd:dateTimeStamp ;
            sh:description "Optional temporal begin point for the event."@en ;
            sh:maxCount 1 ;
            sh:name "begin time"@en ;
            sh:path gufo:hasBeginPointInXSDDateTimeStamp ],
        [ sh:datatype xsd:dateTimeStamp ;
            sh:description "Optional temporal end point for the event."@en ;
            sh:maxCount 1 ;
            sh:name "end time"@en ;
            sh:path gufo:hasEndPointInXSDDateTimeStamp ] ;
    sh:targetClass cac-core:Event .