https://cacontology.projectvic.org/athletic#TravelTeamCoachRoleShape
Enhanced validation shape for travel team coach roles with specialized gUFO Role validation.
Instances of cacontology-athletic:TravelTeamCoachRole 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:TravelTeamCoachRoleShape a sh:NodeShape ;
rdfs:label "Travel Team Coach Role Shape"@en ;
rdfs:comment "Enhanced validation shape for travel team coach roles with specialized gUFO Role validation."@en ;
sh:rule [ a sh:SPARQLRule ;
sh:construct """
INSERT { $this a cacontology-athletic:TravelExperienceRecommendation . }
WHERE {
$this a cacontology-athletic:TravelTeamCoachRole .
$this cacontology-athletic:coachingExperience ?experience .
FILTER(?experience < 2.0)
FILTER NOT EXISTS {
$this cacontology-athletic:hasTravelTeamExperience ?travelExp ;
?travelExp cacontology-athletic:experienceLevel "sufficient" .
}
}
""" ;
sh:message "Travel team coaches should have appropriate travel team experience"@en ;
sh:prefixes cacontology-athletic: ;
sh:severity sh:Warning ] ;
sh:targetClass cacontology-athletic:TravelTeamCoachRole .