Ontology Version: 2.2.0

cacontology-institutional:CharitableOrganizationShape leaf node


URI

https://cacontology.projectvic.org/institutional-exploitation#CharitableOrganizationShape

Label

Charitable Organization Shape

Description

Validation shape for charitable organization instances with gUFO integration.

Shape Properties

Instances of cacontology-institutional:CharitableOrganization can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-institutional:CharitableOrganization
cacontology-institutional:childrenServed 0 1 xsd:nonNegativeInteger
cacontology-institutional:foundingYear 0 1 xsd:gYear
cacontology-institutional:hasInstitutionFoundingDate 1 xsd:dateTime
cacontology-institutional:hasInstitutionalReputationLevel 1 xsd:string
cacontology-institutional:hasOperationEndDate 1 xsd:dateTime
cacontology-institutional:hasOversightLevel 1 xsd:string

Implementation

@prefix cacontology-institutional: <https://cacontology.projectvic.org/institutional-exploitation#> .
@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-institutional:CharitableOrganizationShape a sh:NodeShape ;
    rdfs:label "Charitable Organization Shape"@en ;
    rdfs:comment "Validation shape for charitable organization instances with gUFO integration."@en ;
    sh:property [ sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:message "Organization may have founding date (gUFO temporal boundary)"@en ;
            sh:path cacontology-institutional:hasInstitutionFoundingDate ],
        [ sh:datatype xsd:string ;
            sh:in ( "excellent" "good" "fair" "poor" "terrible" "unknown" ) ;
            sh:maxCount 1 ;
            sh:message "Institutional reputation level must be from allowed list (gUFO quality aspect)"@en ;
            sh:path cacontology-institutional:hasInstitutionalReputationLevel ],
        [ sh:datatype xsd:string ;
            sh:in ( "high" "moderate" "low" "minimal" "none" "self_regulated" ) ;
            sh:maxCount 1 ;
            sh:message "Oversight level must be from allowed list (gUFO quality aspect)"@en ;
            sh:path cacontology-institutional:hasOversightLevel ],
        [ sh:datatype xsd:gYear ;
            sh:maxCount 1 ;
            sh:message "Organization may have founding year specified."@en ;
            sh:minCount 0 ;
            sh:path cacontology-institutional:foundingYear ],
        [ sh:datatype xsd:nonNegativeInteger ;
            sh:maxCount 1 ;
            sh:maxInclusive 10000 ;
            sh:message "Children served must be between 0 and 10,000."@en ;
            sh:minCount 0 ;
            sh:minInclusive 0 ;
            sh:path cacontology-institutional:childrenServed ] ;
    sh:targetClass cacontology-institutional:CharitableOrganization .