Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- PREFIX osr: <http://dati.senato.it/osr/>
- PREFIX foaf: <http://xmlns.com/foaf/0.1/>
- SELECT DISTINCT ?nome ?cognome ?ddl ?titoloDdl ?dataSeduta ?commissione ?titoloCommissione
- WHERE {
- ?senatore a osr:Senatore.
- ?senatore foaf:firstName ?nome.
- ?senatore foaf:lastName ?cognome.
- ?senatore osr:interviene ?intervento.
- ?intervento osr:seduta ?seduta.
- ?intervento osr:oggetto ?oggTratt.
- ?oggTratt osr:relativoA ?ddl.
- ?ddl osr:titolo ?titoloDdl.
- ?seduta osr:dataSeduta ?dataSeduta.
- OPTIONAL { ?seduta osr:commissione ?commissione. ?commissione osr:titolo ?titoloCommissione}.
- FILTER (?ddl = <http://dati.senato.it/ddl/36997>)
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement