-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Extend mapping queries for op consumer
- Loading branch information
1 parent
2bc9644
commit 6197ed4
Showing
11 changed files
with
40 additions
and
9 deletions.
There are no files selected for viewing
This file contains 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
10 changes: 10 additions & 0 deletions
10
config/op-consumer/mapping/queries/op2dl/mapping/bestuurseenheid.sparql
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
PREFIX besluit: <http://data.vlaanderen.be/ns/besluit#> | ||
PREFIX ere: <http://data.lblod.info/vocabularies/erediensten/> | ||
PREFIX skos: <http://www.w3.org/2004/02/skos/core#> | ||
|
||
CONSTRUCT { | ||
?s skos:topConceptOf <http://lblod.data.gift/concept-schemes/7e2b965e-c824-474f-b5d5-b1c115740083> ; | ||
skos:inScheme <http://lblod.data.gift/concept-schemes/7e2b965e-c824-474f-b5d5-b1c115740083> . | ||
} WHERE { | ||
?s a besluit:Bestuurseenheid. | ||
} |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,4 @@ CONSTRUCT { | |
?s besluit:classificatie ?o . | ||
} WHERE { | ||
?s org:classification ?o . | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,4 @@ CONSTRUCT { | |
?s foaf:name ?o | ||
} WHERE { | ||
?s persoon:gebruikteVoornaam ?o | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,4 @@ CONSTRUCT { | |
?s persoon_loket:gebruikteVoornaam ?o | ||
} WHERE { | ||
?s foaf:givenName ?o | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,4 @@ CONSTRUCT { | |
?s mandaat:isTijdspecialisatieVan ?o. | ||
} WHERE { | ||
?s generiek:isTijdspecialisatieVan ?o. | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
config/op-consumer/mapping/queries/op2dl/mapping/municipality.sparql
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
PREFIX besluit: <http://data.vlaanderen.be/ns/besluit#> | ||
PREFIX ere: <http://data.lblod.info/vocabularies/erediensten/> | ||
PREFIX skos: <http://www.w3.org/2004/02/skos/core#> | ||
PREFIX org: <http://www.w3.org/ns/org#> | ||
|
||
CONSTRUCT { | ||
?s skos:inScheme <http://lblod.data.gift/concept-schemes/dcfb437e-1219-4d1e-891d-057f262da9d6> . | ||
} WHERE { | ||
?s a besluit:Bestuurseenheid ; | ||
org:classification <http://data.vlaanderen.be/id/concept/BestuurseenheidClassificatieCode/5ab0e9b8a3b2ca7c5e000001> . | ||
} |
11 changes: 11 additions & 0 deletions
11
config/op-consumer/mapping/queries/op2dl/mapping/registeredOrganization.sparql
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
PREFIX besluit: <http://data.vlaanderen.be/ns/besluit#> | ||
PREFIX skos: <http://www.w3.org/2004/02/skos/core#> | ||
PREFIX regorg: <http://www.w3.org/ns/regorg#> | ||
|
||
CONSTRUCT { | ||
?s a besluit:Bestuurseenheid, regorg:RegisteredOrganization ; | ||
skos:topConceptOf <http://lblod.data.gift/concept-schemes/7e2b965e-c824-474f-b5d5-b1c115740083> ; | ||
skos:inScheme <http://lblod.data.gift/concept-schemes/7e2b965e-c824-474f-b5d5-b1c115740083> . | ||
} WHERE { | ||
?s a regorg:RegisteredOrganization. | ||
} |
This file contains 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