https://cacontology.projectvic.org/athletic#GroomingPhaseShape
SHACL shape for grooming phases with anti-rigid gUFO Phase validation.
Instances of cacontology-athletic:GroomingPhase can have the following properties:
@prefix cacontology-athletic: <https://cacontology.projectvic.org/athletic#> .
@prefix cacontology-gufo: <https://cacontology.projectvic.org/gufo#> .
@prefix gufo: <http://purl.org/nemo/gufo#> .
@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-athletic:GroomingPhaseShape a sh:NodeShape ;
rdfs:label "Grooming Phase Shape"@en ;
rdfs:comment "SHACL shape for grooming phases with anti-rigid gUFO Phase validation."@en ;
sh:property [ sh:hasValue gufo:Phase ;
sh:message "Grooming phases must be instances of anti-rigid gUFO Phase"@en ;
sh:path rdf:type ],
[ sh:datatype xsd:dateTime ;
sh:message "Phase may specify transition times"@en ;
sh:minCount 0 ;
sh:path cacontology-gufo:phaseTransitionTime ] ;
sh:rule [ a sh:SPARQLRule ;
sh:construct """
INSERT { $this a cacontology-athletic:AntiRigidityError . }
WHERE {
$this a cacontology-athletic:GroomingPhase .
FILTER NOT EXISTS {
$this cacontology-gufo:hasAntiRigidityConstraint ?constraint .
}
}
""" ;
sh:message "Grooming phases must demonstrate anti-rigidity (duration varies based on team dynamics)"@en ;
sh:prefixes cacontology-athletic: ;
sh:severity sh:Violation ] ;
sh:targetClass cacontology-athletic:GroomingPhase .