Ontology Version: 2.2.0

cacontology-multi:CoordinationPhaseTypeValidationShape leaf node


URI

https://cacontology.projectvic.org/multi-jurisdiction#CoordinationPhaseTypeValidationShape

Label

Coordination Phase Type Validation Shape

Description

Validates gUFO Phase type consistency for coordination phases.

Target Classes (1)

Implementation

@prefix cacontology-multi: <https://cacontology.projectvic.org/multi-jurisdiction#> .
@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#> .
cacontology-multi:CoordinationPhaseTypeValidationShape a sh:NodeShape ;
    rdfs:label "Coordination Phase Type Validation Shape"@en ;
    rdfs:comment "Validates gUFO Phase type consistency for coordination phases."@en ;
    sh:sparql [ sh:message "Coordination phases must be properly typed as gUFO Phase and extend appropriate investigation classes."@en ;
            sh:select """
            SELECT $this
            WHERE {
                $this rdf:type gufo:Phase .
                FILTER NOT EXISTS {
                    $this rdf:type ?phaseClass .
                    ?phaseClass rdfs:subClassOf cacontology-multi:MultiJurisdictionalInvestigation .
                }
            }
        """ ] ;
    sh:targetClass gufo:Phase .