Ontology Version: 2.2.0

cacontology-coord:CoordinationMetricsShape leaf node


URI

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

Label

Coordination Metrics Shape

Description

Validation shape for coordination metrics instances with gUFO integration.

Shape Properties

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

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-coord:CoordinationMetrics
cacontology-coord:benchmarkComparison 0 1 xsd:string
cacontology-coord:hasAccuracy 1 xsd:double
cacontology-coord:hasReliability 1 xsd:double
cacontology-coord:measurementPeriod 1 1 xsd:string
cacontology-coord:metricType 1 1 xsd:string
cacontology-coord:metricValue 1 1 xsd:decimal
1 xsd:dateTime

Implementation

@prefix cacontology-coord: <https://cacontology.projectvic.org/investigation-coordination#> .
@prefix gufo: <http://purl.org/nemo/gufo#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@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-coord:CoordinationMetricsShape a sh:NodeShape ;
    rdfs:label "Coordination Metrics Shape"@en ;
    rdfs:comment "Validation shape for coordination metrics instances with gUFO integration."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:in ( "response_time" "information_sharing_rate" "resource_utilization" "case_resolution_time" "coordination_effectiveness" "cost_efficiency" ) ;
            sh:maxCount 1 ;
            sh:message "Coordination metrics must specify metric type from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-coord:metricType ],
        [ sh:datatype xsd:decimal ;
            sh:maxCount 1 ;
            sh:maxInclusive 100.0 ;
            sh:message "Metric value must be between 0.0 and 100.0."@en ;
            sh:minCount 1 ;
            sh:minInclusive 0.0 ;
            sh:path cacontology-coord:metricValue ],
        [ sh:datatype xsd:string ;
            sh:in ( "daily" "weekly" "monthly" "quarterly" "annually" "case_based" ) ;
            sh:maxCount 1 ;
            sh:message "Coordination metrics must specify measurement period from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-coord:measurementPeriod ],
        [ sh:datatype xsd:string ;
            sh:in ( "above_benchmark" "meets_benchmark" "below_benchmark" "no_benchmark" "exceeds_target" ) ;
            sh:maxCount 1 ;
            sh:message "Benchmark comparison must be from the allowed list."@en ;
            sh:minCount 0 ;
            sh:path cacontology-coord:benchmarkComparison ],
        [ sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:message "Metrics measurement may have start time (gUFO temporal boundary)"@en ;
            sh:path gufo:hasBeginPointInXSDDateTimeStamp ],
        [ sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:maxInclusive 1.0 ;
            sh:message "Metrics reliability must be between 0.0 and 1.0 (gUFO quality aspect)"@en ;
            sh:minInclusive 0.0 ;
            sh:path cacontology-coord:hasReliability ],
        [ sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:maxInclusive 1.0 ;
            sh:message "Metrics accuracy must be between 0.0 and 1.0 (gUFO quality aspect)"@en ;
            sh:minInclusive 0.0 ;
            sh:path cacontology-coord:hasAccuracy ] ;
    sh:targetClass cacontology-coord:CoordinationMetrics .