Skip to content

Commit

Permalink
Extend mapping queries for op consumer
Browse files Browse the repository at this point in the history
  • Loading branch information
claire-lovisa committed Oct 17, 2024
1 parent 2bc9644 commit 6197ed4
Show file tree
Hide file tree
Showing 11 changed files with 40 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ CONSTRUCT {
skos:inScheme <http://lblod.data.gift/concept-schemes/7e2b965e-c824-474f-b5d5-b1c115740083> .
} WHERE {
?s a ere:BestuurVanDeEredienst.
}
}
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.
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ CONSTRUCT {
skos:prefLabel ?bestuurseenheidLabel.

BIND(CONCAT(str(?classificatieLabel), " ", str(?bestuurseenheidLabel)) as ?bestuursorgaanLabel)
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ CONSTRUCT {
skos:inScheme <http://lblod.data.gift/concept-schemes/7e2b965e-c824-474f-b5d5-b1c115740083> .
} WHERE {
?s a ere:CentraalBestuurVanDeEredienst
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ CONSTRUCT {
?s besluit:classificatie ?o .
} WHERE {
?s org:classification ?o .
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ CONSTRUCT {
?s foaf:name ?o
} WHERE {
?s persoon:gebruikteVoornaam ?o
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ CONSTRUCT {
?s persoon_loket:gebruikteVoornaam ?o
} WHERE {
?s foaf:givenName ?o
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ CONSTRUCT {
?s mandaat:isTijdspecialisatieVan ?o.
} WHERE {
?s generiek:isTijdspecialisatieVan ?o.
}
}
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> .
}
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.
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ CONSTRUCT {
besluit:classificatie <http://data.vlaanderen.be/id/concept/BestuurseenheidClassificatieCode/36372fad-0358-499c-a4e3-f412d2eae213>;
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 <http://www.w3.org/ns/org#classification> <http://data.vlaanderen.be/id/concept/RepresentatiefOrgaanClassificatieCode/89a00b5a-024f-4630-a722-65a5e68967e5>.
}
}

0 comments on commit 6197ed4

Please sign in to comment.