Ontology Version: 2.2.0

cacontology-multi:CoordinationRoleShape leaf node


URI

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

Label

Coordination Role Shape

Description

Enhanced validation shape for coordination roles with gUFO quality aspects.

Target Classes (1)

Shape Properties

Instances of gufo:Role can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

gufo:Role
cacontology-infrastructure:hasRoleBeginPoint 1 xsd:dateTimeStamp
cacontology-infrastructure:hasRoleEndPoint 1 xsd:dateTimeStamp
cacontology-multi:hasRoleBeginPoint 1 xsd:dateTimeStamp
cacontology-multi:hasRoleEndPoint 1 xsd:dateTimeStamp
cacontology-partnerships:hasRoleBeginPoint 1 xsd:dateTimeStamp
cacontology-partnerships:hasRoleEndPoint 1 xsd:dateTimeStamp
cacontology-production:hasRoleBeginPoint 0 1 xsd:dateTimeStamp
cacontology-production:hasRoleEndPoint 0 1 xsd:dateTimeStamp

Implementation

@prefix cacontology-multi: <https://cacontology.projectvic.org/multi-jurisdiction#> .
@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-multi:CoordinationRoleShape a sh:NodeShape ;
    rdfs:label "Coordination Role Shape"@en ;
    rdfs:comment "Enhanced validation shape for coordination roles with gUFO quality aspects."@en ;
    sh:property [ sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:maxInclusive 1.0 ;
            sh:message "Role effectiveness must be between 0.0 and 1.0 (gUFO quality aspect)."@en ;
            sh:minInclusive 0.0 ;
            sh:path cacontology-multi:hasRoleEffectiveness ],
        [ sh:datatype xsd:string ;
            sh:in ( "minimal" "limited" "moderate" "high" "complete" ) ;
            sh:maxCount 1 ;
            sh:message "Authority level must be from allowed values (gUFO quality aspect)."@en ;
            sh:path cacontology-multi:hasAuthorityLevel ],
        [ sh:datatype xsd:string ;
            sh:in ( "poor" "slow" "adequate" "good" "excellent" ) ;
            sh:maxCount 1 ;
            sh:message "Responsiveness must be from allowed values (gUFO quality aspect)."@en ;
            sh:path cacontology-multi:hasResponsiveness ] ;
    sh:targetClass gufo:Role .