Ontology Version: 2.2.0

cacontology-athletic:InstitutionalOversightValidationShape leaf node


URI

https://cacontology.projectvic.org/athletic#InstitutionalOversightValidationShape

Label

Institutional Oversight Validation Shape

Description

Validation of institutional oversight for school-based athletic exploitation.

Shape Properties

Instances of cacontology-athletic:SchoolAthleticExploitation can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-athletic:AthleticCoachingExploitation
cacontology-athletic:currentPhase 0 1 gufo:Phase
cacontology-athletic:holdsCoachingRole 1 cacontology-athletic:AthleticCoachRole
cacontology-athletic:sportType 1 1 xsd:string
1 1 xsd:nonNegativeInteger
cacontology-athletic:teamType 1 1 xsd:string
cacontology-gufo:exploitationBeginTime 1 1 xsd:dateTime
cacontology-gufo:exploitationEndTime 0 1 xsd:dateTime

Implementation

@prefix cacontology-athletic: <https://cacontology.projectvic.org/athletic#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
cacontology-athletic:InstitutionalOversightValidationShape a sh:NodeShape ;
    rdfs:label "Institutional Oversight Validation Shape"@en ;
    rdfs:comment "Validation of institutional oversight for school-based athletic exploitation."@en ;
    sh:sparql [ sh:message "School athletic exploitation must involve appropriate institutional oversight evaluation"@en ;
            sh:select """
            SELECT $this
            WHERE {
                $this a cacontology-athletic:SchoolAthleticExploitation .
                FILTER NOT EXISTS {
                    $this cacontology-athletic:hasInstitutionalReview ?review .
                    ?review cacontology-athletic:reviewType "oversight_evaluation" .
                }
            }
        """ ] ;
    sh:targetClass cacontology-athletic:SchoolAthleticExploitation .