Ontology Version: 2.2.0

cacontology-temporal-shapes:PhasePerformanceMetricsShape leaf node


URI

https://cacontology.projectvic.org/temporal/shapes#PhasePerformanceMetricsShape

Label

Phase Performance Metrics Shape

Description

Validates phase performance metrics such as efficiency and completion rate.

Target Classes (1)

Implementation

@prefix cacontology-temporal: <https://cacontology.projectvic.org/temporal#> .
@prefix cacontology-temporal-shapes: <https://cacontology.projectvic.org/temporal/shapes#> .
@prefix gufo: <http://purl.org/nemo/gufo#> .
@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-temporal-shapes:PhasePerformanceMetricsShape a sh:NodeShape ;
    rdfs:label "Phase Performance Metrics Shape"@en ;
    rdfs:comment "Validates phase performance metrics such as efficiency and completion rate."@en ;
    sh:property [ sh:datatype xsd:decimal ;
            sh:maxCount 1 ;
            sh:message "phaseEfficiency, when provided, must be a non-negative xsd:decimal value."@en ;
            sh:minInclusive 0.0 ;
            sh:path cacontology-temporal:phaseEfficiency ],
        [ sh:datatype xsd:decimal ;
            sh:maxCount 1 ;
            sh:maxInclusive 1.0 ;
            sh:message "phaseCompletionRate, when provided, must be an xsd:decimal between 0.0 and 1.0."@en ;
            sh:minInclusive 0.0 ;
            sh:path cacontology-temporal:phaseCompletionRate ] ;
    sh:targetClass gufo:Phase .