Ontology Version: 2.2.0

cacontology-training:CompetencyAssessmentShape leaf node


URI

https://cacontology.projectvic.org/training#CompetencyAssessmentShape

Label

Competency Assessment Shape

Description

Validation shape for competency assessment instances.

Shape Properties

Instances of cacontology-training:CompetencyAssessment can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-training:CompetencyAssessment
cacontology-training:competencyLevel 1 1 xsd:string

Implementation

@prefix cacontology-training: <https://cacontology.projectvic.org/training#> .
@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-training:CompetencyAssessmentShape a sh:NodeShape ;
    rdfs:label "Competency Assessment Shape"@en ;
    rdfs:comment "Validation shape for competency assessment instances."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:in ( "novice" "competent" "proficient" "expert" ) ;
            sh:maxCount 1 ;
            sh:message "Competency level must be from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-training:competencyLevel ] ;
    sh:targetClass cacontology-training:CompetencyAssessment .