https://cacontology.projectvic.org/core/shapes#PhaseShape
Minimal interoperability shape for phases.
Instances of cac-core:Phase can have the following properties:
@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:PhaseShape a sh:NodeShape ;
rdfs:label "Phase Shape"@en ;
rdfs:comment "Minimal interoperability shape for phases."@en ;
sh:property [ sh:datatype xsd:string ;
sh:minCount 1 ;
sh:name "label"@en ;
sh:path rdfs:label ],
[ sh:datatype xsd:dateTimeStamp ;
sh:description "Optional temporal begin point for the phase."@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 phase."@en ;
sh:maxCount 1 ;
sh:name "end time"@en ;
sh:path gufo:hasEndPointInXSDDateTimeStamp ] ;
sh:targetClass cac-core:Phase .