Ontology Version: 3.0.0

cacontology-educational-shapes:EliteEducationalInstitutionGUFOShape leaf node


URI

https://cacontology.projectvic.org/educational/shapes#EliteEducationalInstitutionGUFOShape

Label

gUFO Elite Educational Institution Shape

Description

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

Shape Properties

Instances of cacontology-educational:EliteEducationalInstitution can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-educational:EliteEducationalInstitution
cacontology-educational:institutionReputation xsd:string
xsd:decimal
cacontology-educational:EducationalInstitution
1 1 xsd:string
cacontology-educational:studentPopulation xsd:nonNegativeInteger
1 xsd:dateTimeStamp

Implementation

@prefix cacontology-educational: <https://cacontology.projectvic.org/educational#> .
@prefix cacontology-educational-shapes: <https://cacontology.projectvic.org/educational/shapes#> .
@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: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: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:targetClass cacontology-educational:EliteEducationalInstitution .