Ontology Version: 2.2.0

cacontology-taskforce:EstablishmentDateValidationShape leaf node


URI

https://cacontology.projectvic.org/taskforce#EstablishmentDateValidationShape

Label

Establishment Date Validation Shape

Description

Validates task force establishment date.

Implementation

@prefix cacontology-taskforce: <https://cacontology.projectvic.org/taskforce#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
cacontology-taskforce:EstablishmentDateValidationShape a sh:NodeShape ;
    rdfs:label "Establishment Date Validation Shape"@en ;
    rdfs:comment "Validates task force establishment date."@en ;
    sh:sparql [ sh:message "Task force establishment date should not be in the future."@en ;
            sh:select """
            SELECT $this
            WHERE {
                $this cacontology-taskforce:establishmentDate ?date .
                FILTER (?date > NOW())
            }
        """ ] ;
    sh:targetClass cacontology-taskforce:TaskForce .