Ontology Version: 2.2.0

cacontology-athletic:CoachingIntegrityValidationShape leaf node


URI

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

Label

Coaching Integrity Validation Shape

Description

Validation of coaching integrity for athletic exploitation cases.

Shape Properties

Instances of cacontology-athletic:AthleticCoachingExploitation 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:CoachingIntegrityValidationShape a sh:NodeShape ;
    rdfs:label "Coaching Integrity Validation Shape"@en ;
    rdfs:comment "Validation of coaching integrity for athletic exploitation cases."@en ;
    sh:sparql [ sh:message "Athletic coaching exploitation involving multiple athletes must have enhanced documentation"@en ;
            sh:select """
            SELECT $this
            WHERE {
                $this a cacontology-athletic:AthleticCoachingExploitation .
                $this cacontology-athletic:teamSize ?size .
                FILTER(?size > 10)
                FILTER NOT EXISTS {
                    $this cacontology-athletic:hasEnhancedDocumentation ?documentation .
                    ?documentation cacontology-athletic:documentationType "multi_victim_analysis" .
                }
            }
        """ ] ;
    sh:targetClass cacontology-athletic:AthleticCoachingExploitation .