Last active
November 21, 2023 09:19
-
-
Save bertvannuffelen/22b6c57105e9eff1e0bebd9a8d6b78b7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | |
@prefix shacl: <http://www.w3.org/ns/shacl#> . | |
@prefix skos: <http://www.w3.org/2004/02/skos/core#> . | |
<https://data.vlaanderen.be/doc/applicatieprofiel/fietsinfrastructuur/ontwerpstandaard/2021-12-17> <https://data.vlaanderen.be/doc/applicatieprofiel/fietsinfrastructuur/ontwerpstandaard/2021-12-17shapes> | |
<https://data.vlaanderen.be/doc/applicatieprofiel/fietsinfrastructuur/ontwerpstandaard/2021-12-17#IdentificatorShape>. | |
<https://data.vlaanderen.be/doc/applicatieprofiel/fietsinfrastructuur/ontwerpstandaard/2021-12-17#IdentificatorShape> a shacl:NodeShape; | |
shacl:closed false ; | |
shacl:property [ | |
shacl:nodeKind shacl:Literal ; | |
shacl:description "String gebruikt om het object uniek te identificeren."@nl; | |
shacl:maxCount 1; | |
shacl:name "identificator"@nl; | |
shacl:path skos:notation | |
]; | |
shacl:targetClass <http://www.w3.org/ns/adms#Identifier> . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment