Ontology Version: 2.2.0

cacontology-multi:CoordinationEffectivenessRule leaf node


URI

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

Label

Coordination Effectiveness Rule

Description

gUFO business rule: Effective coordination should correlate with high success rates.

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:CoordinationEffectivenessRule a sh:NodeShape ;
    rdfs:label "Coordination Effectiveness Rule"@en ;
    rdfs:comment "gUFO business rule: Effective coordination should correlate with high success rates."@en ;
    sh:sparql [ sh:message "Highly effective coordination should achieve success rates above 0.7 (gUFO business rule)."@en ;
            sh:select """
            SELECT $this
            WHERE {
                $this cacontology-multi:hasCoordinationEffectiveness "highly_effective" .
                $this cacontology-multi:hasSuccessRate ?rate .
                FILTER (?rate <= 0.7)
            }
        """ ] ;
    sh:targetClass cacontology-multi:MultiJurisdictionalInvestigation .