Ontology Version: 2.2.0

cacontology-athletic:GUFOTemporalValidationShape leaf node


URI

https://cacontology.projectvic.org/athletic#GUFOTemporalValidationShape

Label

gUFO Temporal Validation Shape

Description

Enhanced temporal consistency validation for athletic exploitation gUFO Events using gUFO temporal framework.

Shape Properties

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

Implementation

@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 .