Ontology Version: 2.2.0

cacontology-athletic:AthleticExploitationDiscoveryShape leaf node


URI

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

Label

Athletic Exploitation Discovery Shape

Description

Enhanced validation shape for athletic exploitation discovery with gUFO Event validation.

Shape Properties

Instances of cacontology-athletic:AthleticExploitationDiscovery can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-athletic:AthleticExploitationDiscovery
cacontology-gufo:discoveryBeginTime 1 1 xsd:dateTime
cacontology-gufo:reportingTime 0 1 xsd:dateTime

Implementation

@prefix cacontology-athletic: <https://cacontology.projectvic.org/athletic#> .
@prefix cacontology-gufo: <https://cacontology.projectvic.org/gufo#> .
@prefix gufo: <http://purl.org/nemo/gufo#> .
@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:AthleticExploitationDiscoveryShape a sh:NodeShape ;
    rdfs:label "Athletic Exploitation Discovery Shape"@en ;
    rdfs:comment "Enhanced validation shape for athletic exploitation discovery with gUFO Event validation."@en ;
    sh:property [ sh:hasValue gufo:Event ;
            sh:message "Athletic exploitation discovery must be instances of gUFO Event"@en ;
            sh:path rdf:type ],
        [ sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:message "Athletic exploitation discovery must specify begin time"@en ;
            sh:minCount 1 ;
            sh:path cacontology-gufo:discoveryBeginTime ],
        [ sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:message "Athletic exploitation discovery may specify reporting time"@en ;
            sh:minCount 0 ;
            sh:path cacontology-gufo:reportingTime ] ;
    sh:targetClass cacontology-athletic:AthleticExploitationDiscovery .