https://cacontology.projectvic.org/taskforce#EstablishmentDateValidationShape
Validates task force establishment date.
@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 .