Ontology Version: 2.2.0

cacontology-recruitment-shapes:EducationalReportingDataQualityShape leaf node


URI

https://cacontology.projectvic.org/recruitment-networks/shapes#EducationalReportingDataQualityShape

Label

Educational Reporting Data Quality Shape

Description

Data quality constraints for educational reporting instances.

Shape Properties

Instances of cacontology-recruitment:SchoolBasedReporting can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-recruitment:SchoolBasedReporting
cacontology-recruitment:mandatoryReportingTrigger 1 1 xsd:boolean
cacontology-recruitment:reportingDelay 0 1 xsd:decimal
cacontology-recruitment:reportingStaffRole 1 1 xsd:string
1 1 xsd:dateTime

Implementation

@prefix cacontology-recruitment: <https://cacontology.projectvic.org/recruitment-networks#> .
@prefix cacontology-recruitment-shapes: <https://cacontology.projectvic.org/recruitment-networks/shapes#> .
@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-recruitment-shapes:EducationalReportingDataQualityShape a sh:NodeShape ;
    rdfs:label "Educational Reporting Data Quality Shape"@en ;
    rdfs:comment "Data quality constraints for educational reporting instances."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:message "School-based reporting must specify staff role making report."@en ;
            sh:minCount 1 ;
            sh:path cacontology-recruitment:reportingStaffRole ],
        [ sh:datatype xsd:dateTime ;
            sh:message "School-based reporting must have reporting timestamp."@en ;
            sh:minCount 1 ;
            sh:path uco-core:startTime ] ;
    sh:targetClass cacontology-recruitment:SchoolBasedReporting .