Ontology Version: 2.11.0

cacontology-usa-leg-shapes:OrganizationHierarchyConsistencyShape leaf node


URI

https://cacontology.projectvic.org/usa-legislative/shapes#OrganizationHierarchyConsistencyShape

Label

Organization Hierarchy Consistency Shape

Description

Validates that organization hierarchy is consistent.

Implementation

@prefix cacontology-usa-leg: <https://cacontology.projectvic.org/usa-legislative#> .
@prefix cacontology-usa-leg-shapes: <https://cacontology.projectvic.org/usa-legislative/shapes#> .
@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-usa-leg-shapes:OrganizationHierarchyConsistencyShape a sh:NodeShape ;
    rdfs:label "Organization Hierarchy Consistency Shape"@en ;
    rdfs:comment "Validates that organization hierarchy is consistent."@en ;
    sh:sparql [ sh:message "Organization cannot be its own parent"@en ;
            sh:prefixes [ sh:declare [ sh:namespace "https://cacontology.projectvic.org/usa-legislative#"^^xsd:anyURI ;
                            sh:prefix "cacontology-usa-leg" ] ] ;
            sh:select """
            SELECT $this
            WHERE {
                $this cacontology-usa-leg:parentAgency $this .
            }
        """ ;
            sh:severity sh:Violation ] ;
    sh:targetSubjectsOf cacontology-usa-leg:parentAgency .