Ontology Version: 2.2.0

cacontology-educational:shapes/MathTeacherRoleGUFOShape leaf node


URI

https://ontology.caseontology.org/icac/educational-exploitation/shapes/MathTeacherRoleGUFOShape

Label

gUFO Math Teacher Role Shape

Description

Validation shape for math teacher roles with gUFO anti-rigidity and role specialization constraints.

Implementation

@prefix cacontology-educational: <https://ontology.caseontology.org/icac/educational-exploitation/> .
@prefix cacontology-educational-shapes: <https://ontology.caseontology.org/icac/educational-exploitation/shapes/> .
@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-educational-shapes:MathTeacherRoleGUFOShape a sh:NodeShape ;
    rdfs:label "gUFO Math Teacher Role Shape"@en ;
    rdfs:comment "Validation shape for math teacher roles with gUFO anti-rigidity and role specialization constraints."@en ;
    sh:property [ sh:hasValue gufo:Role ;
            sh:message "Math teacher role must be typed as gUFO Role (anti-rigid)"@en ;
            sh:minCount 1 ;
            sh:path rdf:type ],
        [ sh:datatype xsd:string ;
            sh:in ( "Mathematics" "Math" "Algebra" "Geometry" "Calculus" "Statistics" ) ;
            sh:message "Subject taught must be a valid mathematics subject"@en ;
            sh:path cacontology-educational:subjectTaught ],
        [ sh:datatype xsd:string ;
            sh:message "Math teacher must have valid teaching certification"@en ;
            sh:minLength 1 ;
            sh:path cacontology-educational:teachingCertification ] ;
    sh:targetClass cacontology-educational:MathTeacherRole .