Ontology Version: 3.1.0

cacontology:PhasePrecedesShape leaf node


URI

https://cacontology.projectvic.org#PhasePrecedesShape

Label

Phase Precedes Shape

Description

Validates cac-core:precedes links between phase instances in offense trajectory graphs.

Target Classes (1)

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#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology:PhasePrecedesShape a sh:NodeShape ;
    rdfs:label "Phase Precedes Shape"@en ;
    rdfs:comment "Validates cac-core:precedes links between phase instances in offense trajectory graphs."@en ;
    sh:property [ sh:class cac-core:Phase ;
            sh:message "Each cac-core:precedes object must be typed as a Phase instance (or subclass)."@en ;
            sh:minCount 0 ;
            sh:path cac-core:precedes ] ;
    sh:targetClass cac-core:Phase .