https://cacontology.projectvic.org/multi-jurisdiction#CoordinationStructureCompositionShape
Validates gUFO part-whole relationships for coordination structures.
Instances of cacontology-multi:MultiJurisdictionalInvestigation can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|---|
@prefix cacontology-multi: <https://cacontology.projectvic.org/multi-jurisdiction#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
cacontology-multi:CoordinationStructureCompositionShape a sh:NodeShape ;
rdfs:label "Coordination Structure Composition Shape"@en ;
rdfs:comment "Validates gUFO part-whole relationships for coordination structures."@en ;
sh:sparql [ sh:message "Complex coordination must include designated lead agency and coordination roles (gUFO part-whole constraint)."@en ;
sh:select """
SELECT $this
WHERE {
$this rdf:type cacontology-multi:MultiJurisdictionalInvestigation .
$this cacontology-multi:coordinationLevel ?level .
FILTER (?level IN ("enhanced", "comprehensive", "full_integration"))
FILTER NOT EXISTS { $this cacontology-multi:leadBy ?leadAgency }
}
""" ] ;
sh:targetClass cacontology-multi:MultiJurisdictionalInvestigation .