Ontology Version: 2.2.0

cacontology-training:TrainingEffectivenessShape leaf node


URI

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

Label

Training Effectiveness Shape

Description

Validation shape for training effectiveness instances.

Shape Properties

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

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-training:TrainingEffectiveness
cacontology-training:trainingEffectiveness 0 1 xsd:decimal

Implementation

@prefix cacontology-training: <https://cacontology.projectvic.org/training#> .
@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:TrainingEffectivenessShape a sh:NodeShape ;
    rdfs:label "Training Effectiveness Shape"@en ;
    rdfs:comment "Validation shape for training effectiveness instances."@en ;
    sh:property [ sh:datatype xsd:decimal ;
            sh:maxCount 1 ;
            sh:maxInclusive 1.0 ;
            sh:message "Training effectiveness must be between 0.0 and 1.0."@en ;
            sh:minCount 0 ;
            sh:minInclusive 0.0 ;
            sh:path cacontology-training:trainingEffectiveness ] ;
    sh:targetClass cacontology-training:TrainingEffectiveness .