Created
March 10, 2015 12:25
-
-
Save ocorcho/879b1cfd3892ec28e878 to your computer and use it in GitHub Desktop.
SPARQL queries para obtener la lista de contratos por servicio gestor en el SPARQL endpoint de Zaragoza
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 pproc: <http://contsem.unizar.es/def/sector-publico/pproc#> | |
PREFIX dcterms: <http://purl.org/dc/terms/> | |
SELECT DISTINCT ?uri ?titulo ?servicioGestor WHERE | |
{ | |
?uri a <http://contsem.unizar.es/def/sector-publico/pproc#Contract>; | |
dcterms:title ?titul; | |
pproc:managingDepartment ?managingDepartment. | |
?managingDepartment dcterms:title ?servicioGestor | |
} ORDER BY ?titulo |
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 pproc: <http://contsem.unizar.es/def/sector-publico/pproc#> | |
PREFIX dcterms: <http://purl.org/dc/terms/> | |
SELECT DISTINCT ?uri ?titulo ?servicioGestor WHERE | |
{ | |
?uri a <http://contsem.unizar.es/def/sector-publico/pproc#Contract>; | |
dcterms:title ?titul; | |
pproc:managingDepartment ?managingDepartment. | |
?managingDepartment dcterms:title ?servicioGestor | |
} ORDER BY ?titulo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment