https://cacontology.projectvic.org/athletic#ExploitationPhaseShape
SHACL shape for exploitation phases with anti-rigid gUFO Phase validation.
Instances of cacontology-athletic:ExploitationPhase 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:ExploitationPhaseShape a sh:NodeShape ;
rdfs:label "Exploitation Phase Shape"@en ;
rdfs:comment "SHACL shape for exploitation phases with anti-rigid gUFO Phase validation."@en ;
sh:rule [ a sh:SPARQLRule ;
sh:construct """
INSERT { $this a cacontology-athletic:ExploitationReadinessError . }
WHERE {
$this a cacontology-athletic:ExploitationPhase ;
?exploitation cacontology-athletic:currentPhase $this .
FILTER NOT EXISTS {
?exploitation cacontology-athletic:previousPhase ?authPhase ;
?authPhase a cacontology-athletic:AuthorityEstablishmentPhase ;
?authPhase cacontology-athletic:phaseStatus "completed" .
}
}
""" ;
sh:message "Exploitation phase must have established authority and coercion mechanisms"@en ;
sh:prefixes cacontology-athletic: ;
sh:severity sh:Violation ] ;
sh:targetClass cacontology-athletic:ExploitationPhase .