https://cacontology.projectvic.org/athletic#GUFOTemporalValidationShape
Enhanced temporal consistency validation for athletic exploitation gUFO Events using gUFO temporal framework.
Instances of cacontology-athletic:PhysicalTrainingCoercion can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|
|---|---|---|---|---|
| cacontology-athletic:PhysicalTrainingCoercion | ||||
| cacontology-gufo:coercionBeginTime | 1 | 1 |
xsd:dateTime
|
|
| cacontology-gufo:coercionEndTime | 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:GUFOTemporalValidationShape a sh:NodeShape ;
rdfs:label "gUFO Temporal Validation Shape"@en ;
rdfs:comment "Enhanced temporal consistency validation for athletic exploitation gUFO Events using gUFO temporal framework."@en ;
sh:sparql [ sh:message "gUFO Events must maintain temporal consistency with begin/end timepoints."@en ;
sh:select """
SELECT $this
WHERE {
$this a gufo:Event .
{
{ $this cacontology-gufo:exploitationBeginTime ?begin . $this cacontology-gufo:exploitationEndTime ?end . } UNION
{ $this cacontology-gufo:coercionBeginTime ?begin . $this cacontology-gufo:coercionEndTime ?end . } UNION
{ $this cacontology-gufo:escalationBeginTime ?begin . $this cacontology-gufo:escalationPeakTime ?end . } UNION
{ $this cacontology-gufo:discoveryBeginTime ?begin . $this cacontology-gufo:reportingTime ?end . }
}
FILTER (?begin >= ?end)
}
""" ] ;
sh:targetClass cacontology-athletic:AthleticCoachingExploitation,
cacontology-athletic:AthleticExploitationDiscovery,
cacontology-athletic:PhysicalContactEscalation,
cacontology-athletic:PhysicalTrainingCoercion .