https://cacontology.projectvic.org/athletic#TeamDynamicsValidationShape
Enhanced validation that team-based exploitation involves appropriate gUFO Situation coordination.
Instances of cacontology-athletic:TeamBasedExploitation can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|---|
@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:TeamDynamicsValidationShape a sh:NodeShape ;
rdfs:label "Team Dynamics Validation Shape"@en ;
rdfs:comment "Enhanced validation that team-based exploitation involves appropriate gUFO Situation coordination."@en ;
sh:sparql [ sh:message "Team based exploitation must involve gUFO Situation coordination with multiple participants."@en ;
sh:select """
SELECT $this
WHERE {
$this a cacontology-athletic:TeamBasedExploitation .
$this a gufo:Situation .
{
SELECT $this (COUNT(?participant) AS ?participantCount)
WHERE {
$this cacontology-athletic:participatesInSituation ?participant .
}
GROUP BY $this
}
FILTER (?participantCount < 2)
}
""" ] ;
sh:targetClass cacontology-athletic:TeamBasedExploitation .