Ontology Version: 2.2.0

cacontology-multi:TaskForceShape leaf node


URI

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

Label

Task Force Shape

Description

Enhanced validation shape for task force instances with gUFO quality aspects.

Target Classes (1)

Shape Properties

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

PROPERTY

MIN COUNT

MAX COUNT

TYPE

Implementation

@prefix cacontology-multi: <https://cacontology.projectvic.org/multi-jurisdiction#> .
@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-multi:TaskForceShape a sh:NodeShape ;
    rdfs:label "Task Force Shape"@en ;
    rdfs:comment "Enhanced validation shape for task force instances with gUFO quality aspects."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:in ( "not_ready" "preparing" "ready" "fully_ready" "deployed" ) ;
            sh:maxCount 1 ;
            sh:message "Operational readiness must be from allowed values (gUFO quality aspect)."@en ;
            sh:path cacontology-multi:hasOperationalReadiness ],
        [ sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:maxInclusive 1.0 ;
            sh:message "Cohesion level must be between 0.0 and 1.0 (gUFO quality aspect)."@en ;
            sh:minInclusive 0.0 ;
            sh:path cacontology-multi:hasCohesionLevel ],
        [ sh:datatype xsd:string ;
            sh:in ( "basic" "intermediate" "advanced" "expert" "specialized" ) ;
            sh:maxCount 1 ;
            sh:message "Expertise level must be from allowed values (gUFO quality aspect)."@en ;
            sh:path cacontology-multi:hasExpertiseLevel ] ;
    sh:targetClass cacontology-multi:TaskForce .