Ontology Version: 2.2.0

cacontology-coord:MultiAgencyCoordinationComplexityBusinessRule leaf node


URI

https://cacontology.projectvic.org/investigation-coordination#MultiAgencyCoordinationComplexityBusinessRule

Label

MultiAgencyCoordinationComplexityBusinessRule

Shape Properties

Instances of cacontology-coord:MultiAgencyCoordination can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-coord:InvestigationCoordination
cacontology-coord:coordinationLevel 1 1 xsd:string
cacontology-coord:coordinationStatus 1 1 xsd:string
cacontology-coord:coordinationType 1 1 xsd:string
cacontology-coord:hasComplexityLevel 1 xsd:string
cacontology-coord:hasCoordinationEffectiveness 1 xsd:string
cacontology-coord:hasDataCompleteness 1 xsd:double
cacontology-coord:hasDataConsistency 1 xsd:double
cacontology-coord:hasDataQuality 1 xsd:string
cacontology-coord:hasSuccessRate 1 xsd:double
cacontology-coord:hasValidationLevel 1 xsd:string
cacontology-coord:leadAgency 1 1 xsd:string
cacontology-coord:participatingAgencies 1 1 xsd:nonNegativeInteger
1 xsd:dateTime
1 xsd:dateTime
0 1 xsd:string
0 1 xsd:string
0 1 xsd:dateTime
0 1 xsd:dateTime
0 1 xsd:dateTime
0 1 xsd:dateTime

Implementation

@prefix cacontology-coord: <https://cacontology.projectvic.org/investigation-coordination#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-coord:MultiAgencyCoordinationComplexityBusinessRule a sh:NodeShape ;
    sh:sparql [ sh:message "Complex multi-agency coordination must have adequate liaison support and high effectiveness"@en ;
            sh:prefixes [ sh:declare [ sh:namespace "https://cacontology.projectvic.org/investigation-coordination#"^^xsd:anyURI ;
                            sh:prefix "cacontology-coord" ] ] ;
            sh:select """
            SELECT $this
            WHERE {
                $this cacontology-coord:hasComplexityLevel ?complexity ;
                      cacontology-coord:participatingAgencies ?agencies .
                FILTER (?complexity IN ("highly_complex", "extremely_complex") && ?agencies > 10)
                FILTER NOT EXISTS {
                    $this cacontology-coord:assignsLiaison ?liaison .
                    ?liaison cacontology-coord:hasLiaisonEffectiveness ?effectiveness .
                    FILTER (?effectiveness IN ("good", "excellent", "exceptional"))
                }
            }
        """ ] ;
    sh:targetClass cacontology-coord:MultiAgencyCoordination .