Ontology Version: 3.1.0

cacontology:PrecedesSubjectShape leaf node


URI

https://cacontology.projectvic.org#PrecedesSubjectShape

Label

Precedes Subject Shape

Description

Validates that the subject of cac-core:precedes is a Phase instance.

Implementation

@prefix cac-core: <https://cacontology.projectvic.org/core#> .
@prefix cacontology: <https://cacontology.projectvic.org#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
cacontology:PrecedesSubjectShape a sh:NodeShape ;
    rdfs:label "Precedes Subject Shape"@en ;
    rdfs:comment "Validates that the subject of cac-core:precedes is a Phase instance."@en ;
    sh:class cac-core:Phase ;
    sh:message "The subject of cac-core:precedes must be typed as a Phase instance (or subclass)."@en ;
    sh:targetSubjectsOf cac-core:precedes .