https://cacontology.projectvic.org/training#DataQualityShape
Validates data quality for training entities.
Instances of cacontology-training:TrainingMetrics can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|---|
@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 uco-core: <https://ontology.unifiedcyberontology.org/uco/core/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-training:DataQualityShape a sh:NodeShape ;
rdfs:label "Data Quality Shape"@en ;
rdfs:comment "Validates data quality for training entities."@en ;
sh:property [ sh:datatype xsd:dateTime ;
sh:maxCount 1 ;
sh:message "Creation time should be specified when available."@en ;
sh:minCount 0 ;
sh:path uco-core:createdTime ],
[ sh:datatype xsd:dateTime ;
sh:maxCount 1 ;
sh:message "Modification time should be specified when available."@en ;
sh:minCount 0 ;
sh:path uco-core:modifiedTime ] ;
sh:targetClass cacontology-training:CapacityBuildingProgram,
cacontology-training:InternationalTraining,
cacontology-training:ProfessionalCertification,
cacontology-training:TrainingMetrics .