-
Notifications
You must be signed in to change notification settings - Fork 3
/
query_camera
53 lines (38 loc) · 1.51 KB
/
query_camera
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
REFIX ocd: <http://dati.camera.it/ocd/>
SELECT DISTINCT ?property
WHERE
{
?atto a ocd:intervento;
?property ?o.
}
select distinct ?t where {?s a ocd:statoIter; dc:type ?t} LIMIT 100
select distinct ?id ?iniziativa ?rif_leg ?date ?title ?type where {
?atto a ocd:atto.
?atto dc:identifier ?id.
?atto dc:date ?date.
?atto dc:type ?type.
?atto dc:title ?title.
?atto ocd:iniziativa ?iniziativa.
?atto ocd:rif_leg ?rif_leg.
FILTER(?rif_leg = <http://dati.camera.it/ocd/legislatura.rdf/repubblica_17> || ?rif_leg = <http://dati.camera.it/ocd/legislatura.rdf/repubblica_16>)
}
######################## ASSORBIMENTO CAMERA XVI ######################
select distinct ?id_atto ?id_atto_portante where {
#?atto a ocd:atto; ocd:rif_abbinamento ?abb.
?abb a ocd:abbinamento; ocd:attoPortante ?atto_portante.
?abb ocd:rif_attoCamera ?atto.
?atto dc:identifier ?id_atto.
?atto_portante dc:identifier ?id_atto_portante; ocd:rif_leg <http://dati.camera.it/ocd/legislatura.rdf/repubblica_16>.
FILTER(?id_atto != ?id_atto_portante).
}
ORDER BY ?id_atto_portante
######################## ASSORBIMENTO CAMERA XVII ######################
select distinct ?id_atto ?id_atto_portante where {
#?atto a ocd:atto; ocd:rif_abbinamento ?abb.
?abb a ocd:abbinamento; ocd:attoPortante ?atto_portante.
?abb ocd:rif_attoCamera ?atto.
?atto dc:identifier ?id_atto.
?atto_portante dc:identifier ?id_atto_portante; ocd:rif_leg <http://dati.camera.it/ocd/legislatura.rdf/repubblica_17>.
FILTER(?id_atto != ?id_atto_portante).
}
ORDER BY ?id_atto_portante