Ontology Version: 2.2.0

cacontology-multi:HighComplexityCoordinationRule leaf node


URI

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

Label

High Complexity Coordination Rule

Description

gUFO business rule: Highly complex operations require enhanced coordination mechanisms.

Shape Properties

Instances of cacontology-multi:MultiJurisdictionalInvestigation can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

Implementation

@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:HighComplexityCoordinationRule a sh:NodeShape ;
    rdfs:label "High Complexity Coordination Rule"@en ;
    rdfs:comment "gUFO business rule: Highly complex operations require enhanced coordination mechanisms."@en ;
    sh:sparql [ sh:message "Highly complex multi-jurisdictional operations must have enhanced or comprehensive coordination level (gUFO business rule)."@en ;
            sh:select """
            SELECT $this
            WHERE {
                $this cacontology-multi:hasComplexityLevel ?complexity .
                $this cacontology-multi:coordinationLevel ?coordination .
                FILTER (?complexity IN ("highly_complex", "extremely_complex"))
                FILTER (?coordination IN ("minimal", "basic", "standard"))
            }
        """ ] ;
    sh:targetClass cacontology-multi:MultiJurisdictionalInvestigation .