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 |
|
|---|---|---|---|---|
| cacontology-athletic:AthleticCoachingExploitation | ||||
| cacontology-athletic:currentPhase | 0 | 1 |
gufo:Phase
|
|
| cacontology-athletic:holdsCoachingRole | 1 |
cacontology-athletic:AthleticCoachRole
|
||
| cacontology-athletic:sportType | 1 | 1 |
xsd:string
|
|
| 1 | 1 |
xsd:nonNegativeInteger
|
||
| cacontology-athletic:teamType | 1 | 1 |
xsd:string
|
|
| cacontology-gufo:exploitationBeginTime | 1 | 1 |
xsd:dateTime
|
|
| cacontology-gufo:exploitationEndTime | 0 | 1 |
xsd:dateTime
|
|
@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 .