Ontology Version: 2.2.0

cacontology-educational:shapes/EducationalInstitutionGUFOShape leaf node


URI

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

Label

gUFO Educational Institution Shape

Description

Validates educational institution instances with gUFO foundational constraints as Organizations.

Implementation

@prefix cacontology-educational: <https://ontology.caseontology.org/icac/educational-exploitation/> .
@prefix cacontology-educational-shapes: <https://ontology.caseontology.org/icac/educational-exploitation/shapes/> .
@prefix cacontology-gufo: <https://cacontology.projectvic.org/gufo#> .
@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:EducationalInstitutionGUFOShape a sh:NodeShape ;
    rdfs:label "gUFO Educational Institution Shape"@en ;
    rdfs:comment "Validates educational institution instances with gUFO foundational constraints as Organizations."@en ;
    sh:property [ sh:hasValue gufo:Organization ;
            sh:message "Educational institution must be typed as gUFO Organization"@en ;
            sh:minCount 1 ;
            sh:path rdf:type ],
        [ sh:hasValue gufo:Object ;
            sh:message "Educational institution must be typed as gUFO Object"@en ;
            sh:minCount 1 ;
            sh:path rdf:type ],
        [ sh:datatype xsd:dateTimeStamp ;
            sh:maxCount 1 ;
            sh:message "Educational institution can have at most one establishment time point"@en ;
            sh:path cacontology-gufo:establishmentTimePoint ],
        [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:maxLength 200 ;
            sh:message "Institution name must be between 2 and 200 characters"@en ;
            sh:minCount 1 ;
            sh:minLength 2 ;
            sh:path cacontology-educational:institutionName ],
        [ sh:datatype xsd:nonNegativeInteger ;
            sh:maxInclusive 50000 ;
            sh:message "Student population must be between 10 and 50,000"@en ;
            sh:minInclusive 10 ;
            sh:path cacontology-educational:studentPopulation ] ;
    sh:targetClass cacontology-educational:EducationalInstitution .