Submissions for Camera dei Deputati, Italy
Description
SPARQL endpoint describing the activities of the the Italian Chamber of Deputies
1 of 1 submissions
#86
Natural Language Question
Deputies presently in charge in the Italian Chamber of Deputies
Source
SPARQL Query
PREFIX ocd:<http://dati.camera.it/ocd/>
#### deputati in carica: cognome, nome, info biografiche
SELECT DISTINCT ?persona ?cognome ?nome
?dataNascita ?nato ?luogoNascita ?genere
WHERE {
?persona ocd:rif_mandatoCamera ?mandato; a foaf:Person.
?d a ocd:deputato; ocd:aderisce ?aderisce;
ocd:rif_leg <http://dati.camera.it/ocd/legislatura.rdf/repubblica_19>;
ocd:rif_mandatoCamera ?mandato.
?d foaf:surname ?cognome; foaf:gender ?genere;foaf:firstName ?nome.
OPTIONAL{
?persona <http://purl.org/vocab/bio/0.1/Birth> ?nascita.
?nascita <http://purl.org/vocab/bio/0.1/date> ?dataNascita;
rdfs:label ?nato; ocd:rif_luogo ?luogoNascitaUri.
?luogoNascitaUri dc:title ?luogoNascita.
}
}