-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #525 from OP-TED/feature-TED5-171
SPARQL queries for resources
- Loading branch information
Showing
29 changed files
with
264 additions
and
21 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
PREFIX dc: <http://purl.org/dc/elements/1.1/> | ||
|
||
select ?code ?conceptURI | ||
where | ||
{ | ||
graph <http://publications.europa.eu/resource/authority/eu-programme> | ||
{ | ||
?conceptURI dc:identifier ?code . | ||
} | ||
} |
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 dc: <http://purl.org/dc/elements/1.1/> | ||
|
||
select ?code ?conceptURI | ||
where | ||
{ | ||
graph <http://publications.europa.eu/resource/authority/accessibility> | ||
{ | ||
?conceptURI dc:identifier ?code . | ||
} | ||
} |
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 dc: <http://purl.org/dc/elements/1.1/> | ||
|
||
select ?code ?conceptURI | ||
where | ||
{ | ||
graph <http://publications.europa.eu/resource/authority/applicability> | ||
{ | ||
?conceptURI dc:identifier ?code . | ||
} | ||
} |
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 dc: <http://purl.org/dc/elements/1.1/> | ||
|
||
select ?code ?conceptURI | ||
where | ||
{ | ||
graph <http://publications.europa.eu/resource/authority/change-corrig-justification> | ||
{ | ||
?conceptURI dc:identifier ?code . | ||
} | ||
} |
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 dc: <http://purl.org/dc/elements/1.1/> | ||
|
||
select ?code ?conceptURI | ||
where | ||
{ | ||
graph <http://publications.europa.eu/resource/authority/communication-justification> | ||
{ | ||
?conceptURI dc:identifier ?code . | ||
} | ||
} |
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
Empty file.
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 dc: <http://purl.org/dc/elements/1.1/> | ||
|
||
select ?code ?conceptURI | ||
where | ||
{ | ||
graph <http://publications.europa.eu/resource/authority/dps-usage> | ||
{ | ||
?conceptURI dc:identifier ?code . | ||
} | ||
} |
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 dc: <http://purl.org/dc/elements/1.1/> | ||
|
||
select ?code ?conceptURI | ||
where | ||
{ | ||
graph <http://publications.europa.eu/resource/authority/environmental-impact> | ||
{ | ||
?conceptURI dc:identifier ?code . | ||
} | ||
} |
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 dc: <http://purl.org/dc/elements/1.1/> | ||
|
||
select ?code ?conceptURI | ||
where | ||
{ | ||
graph <http://publications.europa.eu/resource/authority/framework-agreement> | ||
{ | ||
?conceptURI dc:identifier ?code . | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
ted_sws/resources/queries/green-public-procurement-criteria.rq
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 dc: <http://purl.org/dc/elements/1.1/> | ||
|
||
select ?code ?conceptURI | ||
where | ||
{ | ||
graph <http://publications.europa.eu/resource/authority/gpp-criteria> | ||
{ | ||
?conceptURI dc:identifier ?code . | ||
} | ||
} |
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 dc: <http://purl.org/dc/elements/1.1/> | ||
|
||
select ?code ?conceptURI | ||
where | ||
{ | ||
graph <http://publications.europa.eu/resource/authority/innovative-acquisition> | ||
{ | ||
?conceptURI dc:identifier ?code . | ||
} | ||
} |
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 |
---|---|---|
@@ -1,16 +1,13 @@ | ||
PREFIX skos: <http://www.w3.org/2004/02/skos/core#> | ||
PREFIX euvoc: <http://publications.europa.eu/ontology/euvoc#> | ||
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> | ||
|
||
|
||
select ?code ?conceptURI | ||
where | ||
SELECT DISTINCT ?code ?conceptURI | ||
WHERE | ||
{ | ||
graph <http://publications.europa.eu/resource/authority/language> | ||
{ | ||
|
||
GRAPH <http://publications.europa.eu/resource/authority/language> | ||
{ | ||
?conceptURI skos:notation ?code . | ||
|
||
filter (datatype(?code)=euvoc:TED_SCHEMA) | ||
|
||
FILTER (datatype(?code) IN (rdf:resource="http://publications.europa.eu/resource/authority/notation-type/ISO_639_3", euvoc:TED_SCHEMA)) | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -1,10 +0,0 @@ | ||
PREFIX dc: <http://purl.org/dc/elements/1.1/> | ||
|
||
select ?code ?conceptURI | ||
where | ||
{ | ||
graph <http://publications.europa.eu/resource/authority/main-activity> | ||
{ | ||
?conceptURI dc:identifier ?code . | ||
} | ||
} | ||
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,12 @@ | ||
PREFIX dc: <http://purl.org/dc/elements/1.1/> | ||
|
||
|
||
select ?code ?conceptURI | ||
where | ||
{ | ||
graph <http://publications.europa.eu/resource/authority/measurement-unit> | ||
{ | ||
|
||
?conceptURI dc:identifier ?code . | ||
} | ||
} |
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,14 @@ | ||
PREFIX dc: <http://purl.org/dc/elements/1.1/> | ||
|
||
|
||
select ?code ?conceptURI | ||
where | ||
{ | ||
graph <http://publications.europa.eu/resource/authority/missing-info-submission> | ||
{ | ||
|
||
?conceptURI dc:identifier ?code . | ||
|
||
|
||
} | ||
} |
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 dc: <http://purl.org/dc/elements/1.1/> | ||
|
||
select ?code ?conceptURI | ||
where | ||
{ | ||
graph <http://publications.europa.eu/resource/authority/number-fixed> | ||
{ | ||
?conceptURI dc:identifier ?code . | ||
} | ||
} |
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 dc: <http://purl.org/dc/elements/1.1/> | ||
|
||
select ?code ?conceptURI | ||
where | ||
{ | ||
graph <http://publications.europa.eu/resource/authority/number-threshold> | ||
{ | ||
?conceptURI dc:identifier ?code . | ||
} | ||
} |
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 dc: <http://purl.org/dc/elements/1.1/> | ||
|
||
select ?code ?conceptURI | ||
where | ||
{ | ||
graph <http://publications.europa.eu/resource/authority/number-weight> | ||
{ | ||
?conceptURI dc:identifier ?code . | ||
} | ||
} |
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 dc: <http://purl.org/dc/elements/1.1/> | ||
|
||
select ?code ?conceptURI | ||
where | ||
{ | ||
graph <http://publications.europa.eu/resource/authority/other-place-service> | ||
{ | ||
?conceptURI dc:identifier ?code . | ||
} | ||
} |
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 dc: <http://purl.org/dc/elements/1.1/> | ||
|
||
select ?code ?conceptURI | ||
where | ||
{ | ||
graph <http://publications.europa.eu/resource/authority/permission> | ||
{ | ||
?conceptURI dc:identifier ?code . | ||
} | ||
} |
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 dc: <http://purl.org/dc/elements/1.1/> | ||
|
||
select ?code ?conceptURI | ||
where | ||
{ | ||
graph <http://publications.europa.eu/resource/authority/requirement-stage> | ||
{ | ||
?conceptURI dc:identifier ?code . | ||
} | ||
} |
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 dc: <http://purl.org/dc/elements/1.1/> | ||
|
||
select ?code ?conceptURI | ||
where | ||
{ | ||
graph <http://publications.europa.eu/resource/authority/reserved-procurement> | ||
{ | ||
?conceptURI dc:identifier ?code . | ||
} | ||
} |
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 dc: <http://purl.org/dc/elements/1.1/> | ||
|
||
select ?code ?conceptURI | ||
where | ||
{ | ||
graph <http://publications.europa.eu/resource/authority/selection-criterion> | ||
{ | ||
?conceptURI dc:identifier ?code . | ||
} | ||
} |
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 dc: <http://purl.org/dc/elements/1.1/> | ||
|
||
select ?code ?conceptURI | ||
where | ||
{ | ||
graph <http://publications.europa.eu/resource/authority/social-objective> | ||
{ | ||
?conceptURI dc:identifier ?code . | ||
} | ||
} |
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 dc: <http://purl.org/dc/elements/1.1/> | ||
|
||
select ?code ?conceptURI | ||
where | ||
{ | ||
graph <http://publications.europa.eu/resource/authority/subcontracting-indication> | ||
{ | ||
?conceptURI dc:identifier ?code . | ||
} | ||
} |
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 dc: <http://purl.org/dc/elements/1.1/> | ||
|
||
select ?code ?conceptURI | ||
where | ||
{ | ||
graph <http://publications.europa.eu/resource/authority/subcontracting-obligation> | ||
{ | ||
?conceptURI dc:identifier ?code . | ||
} | ||
} |
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 dc: <http://purl.org/dc/elements/1.1/> | ||
|
||
select ?code ?conceptURI | ||
where | ||
{ | ||
graph <http://publications.europa.eu/resource/authority/timeperiod> | ||
{ | ||
?conceptURI dc:identifier ?code . | ||
} | ||
} |
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 dc: <http://purl.org/dc/elements/1.1/> | ||
|
||
select ?code ?conceptURI | ||
where | ||
{ | ||
graph <http://publications.europa.eu/resource/authority/usage> | ||
{ | ||
?conceptURI dc:identifier ?code . | ||
} | ||
} |