https://cacontology.projectvic.org/athletic#HeadCoachRoleShape
Enhanced validation shape for head coach roles with leadership gUFO Role validation.
Instances of cacontology-athletic:HeadCoachRole can have the following properties:
@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:HeadCoachRoleShape a sh:NodeShape ;
rdfs:label "Head Coach Role Shape"@en ;
rdfs:comment "Enhanced validation shape for head coach roles with leadership gUFO Role validation."@en ;
sh:rule [ a sh:SPARQLRule ;
sh:construct """
INSERT { $this a cacontology-athletic:LeadershipCompetencyError . }
WHERE {
$this a cacontology-athletic:HeadCoachRole .
FILTER NOT EXISTS {
$this cacontology-athletic:hasCompetency ?competency ;
?competency cacontology-athletic:competencyType "team_leadership" .
}
}
""" ;
sh:message "Head coach roles must demonstrate leadership competency"@en ;
sh:prefixes cacontology-athletic: ;
sh:severity sh:Violation ] ;
sh:targetClass cacontology-athletic:HeadCoachRole .