Ontology Version: 2.2.0

cacontology-athletic:ExhaustionBasedCoercionShape leaf node


URI

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

Label

Exhaustion Based Coercion Shape

Description

Enhanced validation shape for exhaustion-based coercion with gUFO Event validation.

Shape Properties

Instances of cacontology-athletic:ExhaustionBasedCoercion 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 rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-athletic:ExhaustionBasedCoercionShape a sh:NodeShape ;
    rdfs:label "Exhaustion Based Coercion Shape"@en ;
    rdfs:comment "Enhanced validation shape for exhaustion-based coercion with gUFO Event validation."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:in ( "mild" "moderate" "severe" "extreme" ) ;
            sh:maxCount 1 ;
            sh:message "Exhaustion level must be one of: mild, moderate, severe, extreme."@en ;
            sh:minCount 1 ;
            sh:path cacontology-athletic:exhaustionLevel ] ;
    sh:targetClass cacontology-athletic:ExhaustionBasedCoercion .