Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct predicate for admin unit classification #79

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/grumpy-glasses-roll.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"app-reglementaire-bijlage": patch
---

Fix classification predicate for administrative units and update classification code types
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
http://mu.semte.ch/graphs/public
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix ns4: <http://data.vlaanderen.be/id/concept/BestuurseenheidClassificatieCode/> .
@prefix ext: <http://mu.semte.ch/vocabularies/ext/> .

<http://data.vlaanderen.be/id/concept/BestuurseenheidClassificatieCode/36a82ba0-7ff1-4697-a9dd-2e94df73b721>
rdf:type ext:BestuurseenheidClassificatieCode .
<http://data.vlaanderen.be/id/concept/BestuurseenheidClassificatieCode/80310756-ce0a-4a1b-9b8e-7c01b6cc7a2d>
rdf:type ext:BestuurseenheidClassificatieCode .
ns4:a3922c6d-425b-474f-9a02-ffb71a436bfc
rdf:type ext:BestuurseenheidClassificatieCode .
ns4:cc4e2d67-603b-4784-9b61-e50bac1ec089
rdf:type ext:BestuurseenheidClassificatieCode .
ns4:ea446861-2c51-45fa-afd3-4e4a37b71562
rdf:type ext:BestuurseenheidClassificatieCode .
<http://data.vlaanderen.be/id/concept/BestuurseenheidClassificatieCode/5ab0e9b8a3b2ca7c5e000000>
rdf:type ext:BestuurseenheidClassificatieCode .
<http://data.vlaanderen.be/id/concept/BestuurseenheidClassificatieCode/5ab0e9b8a3b2ca7c5e000003>
rdf:type ext:BestuurseenheidClassificatieCode .
<http://data.vlaanderen.be/id/concept/BestuurseenheidClassificatieCode/5ab0e9b8a3b2ca7c5e000001>
rdf:type ext:BestuurseenheidClassificatieCode .
<http://data.vlaanderen.be/id/concept/BestuurseenheidClassificatieCode/5ab0e9b8a3b2ca7c5e000002>
rdf:type ext:BestuurseenheidClassificatieCode .
<http://data.vlaanderen.be/id/concept/BestuurseenheidClassificatieCode/293e5f58-9544-496e-88e0-734a137f6ebc>
rdf:type ext:BestuurseenheidClassificatieCode .
ns4:e8294b73-87c9-4fa2-9441-1937350763c9
rdf:type ext:BestuurseenheidClassificatieCode .
<http://data.vlaanderen.be/id/concept/BestuurseenheidClassificatieCode/66ec74fd-8cfc-4e16-99c6-350b35012e86>
rdf:type ext:BestuurseenheidClassificatieCode .
ns4:b156b67f-c5f4-4584-9b30-4c090be02fdc
rdf:type ext:BestuurseenheidClassificatieCode .
ns4:cd93f147-3ece-4308-acab-5c5ada3ec63d
rdf:type ext:BestuurseenheidClassificatieCode .
ns4:d312c541-a263-4004-bca2-63eb991458c3
rdf:type ext:BestuurseenheidClassificatieCode .
ns4:d01bb1f6-2439-4e33-9c25-1fc295de2e71
rdf:type ext:BestuurseenheidClassificatieCode .
ns4:f9cac08a-13c1-49da-9bcb-f650b0604054
rdf:type ext:BestuurseenheidClassificatieCode .
ns4:d90c511e-f827-488c-84ba-432c8f69561c
rdf:type ext:BestuurseenheidClassificatieCode .
6 changes: 5 additions & 1 deletion config/resources/goverment.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"class": "besluit:Bestuurseenheid",
"relationships": {
"classification": {
"predicate": "org:classification",
"predicate": "besluit:classificatie",
"target": "administrative-unit-classification-code",
"cardinality": "one"
},
Expand All @@ -37,6 +37,10 @@
"label": {
"type": "string",
"predicate": "skos:prefLabel"
},
"scope-note": {
"type": "string",
"predicate": "skos:scopeNote"
}
},
"features": ["include-uri"],
Expand Down