Ontology Version: 2.2.0

cacontology-educational:shapes/EliteEducationalInstitutionGUFOShape leaf node


URI

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

Label

gUFO Elite Educational Institution Shape

Description

Validation shape for elite educational institutions with enhanced reputation and selectivity requirements.

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:EliteEducationalInstitutionGUFOShape a sh:NodeShape ;
    rdfs:label "gUFO Elite Educational Institution Shape"@en ;
    rdfs:comment "Validation shape for elite educational institutions with enhanced reputation and selectivity requirements."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:in ( "excellent" "high" "prestigious" "elite" ) ;
            sh:message "Elite institution must have high reputation status"@en ;
            sh:path cacontology-educational:institutionReputation ],
        [ sh:datatype xsd:decimal ;
            sh:maxInclusive 1.0 ;
            sh:message "Elite institution must have selectivity rating between 0.8 and 1.0"@en ;
            sh:minInclusive 0.8 ;
            sh:path cacontology-educational:selectivityRating ],
        [ sh:hasValue gufo:Organization ;
            sh:message "Elite educational institution must be typed as gUFO Organization"@en ;
            sh:minCount 1 ;
            sh:path rdf:type ] ;
    sh:targetClass cacontology-educational:EliteEducationalInstitution .