-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdataflow.xml
3208 lines (3208 loc) · 248 KB
/
dataflow.xml
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<!--NSI Web Service v6.16.0-->
<message:Structure xmlns:message="http://www.sdmx.org/resources/sdmxml/schemas/v2_1/message" xmlns:structure="http://www.sdmx.org/resources/sdmxml/schemas/v2_1/structure" xmlns:common="http://www.sdmx.org/resources/sdmxml/schemas/v2_1/common">
<message:Header>
<message:ID>IDREF508</message:ID>
<message:Test>false</message:Test>
<message:Prepared>2020-05-03T14:30:56.7239925+02:00</message:Prepared>
<message:Sender id="Unknown" />
<message:Receiver id="Unknown" />
</message:Header>
<message:Structures>
<structure:Dataflows>
<structure:Dataflow id="101_1015" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:101_1015(1.2)" agencyID="IT1" version="1.2" isFinal="false">
<common:Name xml:lang="it">Coltivazioni</common:Name>
<common:Name xml:lang="en">Crops</common:Name>
<structure:Structure>
<Ref id="DCSP_COLTIVAZIONI" version="1.2" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="101_1030" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:101_1030(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Prodotti agroalimentari di qualità DOP/IGP e STG</common:Name>
<common:Name xml:lang="en">PDO, PGI and TSG quality products</common:Name>
<structure:Structure>
<Ref id="DCSP_DOPIGP" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="101_1033" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:101_1033(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Macellazioni</common:Name>
<common:Name xml:lang="en">slaughtering</common:Name>
<structure:Structure>
<Ref id="DCSP_MACELLAZIONI" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="101_1039" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:101_1039(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Agriturismo - comuni</common:Name>
<common:Name xml:lang="en">Agritourism - municipalities</common:Name>
<structure:Structure>
<Ref id="DCSP_AGRITURISMO_COM" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="101_1077" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:101_1077(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="en">PDO, PGI and TSG products: operators - municipalities data</common:Name>
<common:Name xml:lang="it">Prodotti di qualità DOP/IGP e STG: operatori - dati comunali</common:Name>
<structure:Structure>
<Ref id="DCSP_DOPIGP_COM" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="101_12" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:101_12(1.1)" agencyID="IT1" version="1.1" isFinal="false">
<common:Name xml:lang="it">Prezzi dei prodotti agricoli</common:Name>
<common:Name xml:lang="en">Agricoltural prices</common:Name>
<structure:Structure>
<Ref id="DCSP_PREZZIAGR" version="1.1" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="101_148" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:101_148(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Risultati economici delle aziende agricole</common:Name>
<common:Name xml:lang="en">Economic results of farms</common:Name>
<structure:Structure>
<Ref id="DCSP_RICAREA" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="101_22" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:101_22(1.2)" agencyID="IT1" version="1.2" isFinal="false">
<common:Name xml:lang="it">Fitosanitari</common:Name>
<common:Name xml:lang="en">Plant protection products</common:Name>
<structure:Structure>
<Ref id="DCSP_FITOSANITARI" version="1.2" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="101_959" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:101_959(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Latte e prodotti lattiero caseari</common:Name>
<common:Name xml:lang="en">Milk and dairy products</common:Name>
<structure:Structure>
<Ref id="DCSP_LATTE" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="101_961" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:101_961(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Consistenze degli allevamenti</common:Name>
<common:Name xml:lang="en">Livestock</common:Name>
<structure:Structure>
<Ref id="DCSP_CONSISTENZE" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="101_962" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:101_962(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Import export di bestiame</common:Name>
<common:Name xml:lang="en">Livestock import export</common:Name>
<structure:Structure>
<Ref id="DCSP_LIVESTIMPEXP" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="101_965" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:101_965(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Agriturismo</common:Name>
<common:Name xml:lang="en">Agritourism</common:Name>
<structure:Structure>
<Ref id="DCSP_AGRITURISMO" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="102_974" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:102_974(1.1)" agencyID="IT1" version="1.1" isFinal="false">
<common:Name xml:lang="it">Struttura delle aziende agricole</common:Name>
<common:Name xml:lang="en">Farm structure</common:Name>
<structure:Structure>
<Ref id="DCSP_SPA" version="1.1" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="104_466" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:104_466(1.2)" agencyID="IT1" version="1.2" isFinal="false">
<common:Name xml:lang="it">Fertilizzanti</common:Name>
<common:Name xml:lang="en">Fertilizars</common:Name>
<structure:Structure>
<Ref id="DCSP_FERTILIZZANTI" version="1.2" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="111_111" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:111_111(1.1)" agencyID="IT1" version="1.1" isFinal="false">
<common:Name xml:lang="it">Indicatori permessi di costruire</common:Name>
<common:Name xml:lang="en">Building permits indicators</common:Name>
<structure:Structure>
<Ref id="DCSC_PERM_RAP1" version="1.1" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="111_263" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:111_263(1.4)" agencyID="IT1" version="1.4" isFinal="false">
<common:Name xml:lang="it">Fiducia delle imprese manifatturiere</common:Name>
<common:Name xml:lang="en">Business confidence in the manufacturing sector</common:Name>
<structure:Structure>
<Ref id="DCSC_FIDIMPRMAN" version="1.4" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="111_40" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:111_40(1.1)" agencyID="IT1" version="1.1" isFinal="false">
<common:Name xml:lang="it">Fiducia delle imprese costruzioni</common:Name>
<common:Name xml:lang="en">Business confidence in the construction sector</common:Name>
<structure:Structure>
<Ref id="DCSC_FIDIMPRCOSTR" version="1.1" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="114_191" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:114_191(1.2)" agencyID="IT1" version="1.2" isFinal="false">
<common:Name xml:lang="it">Indice dei nuovi ordinativi e del fatturato dei prodotti industriali</common:Name>
<common:Name xml:lang="en">Industrial new orders and turnover index</common:Name>
<structure:Structure>
<Ref id="DCSC_ORDFATT" version="1.2" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="115_168" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:115_168(1.7)" agencyID="IT1" version="1.7" isFinal="false">
<common:Name xml:lang="it">Produzione industriale in quantità e valore</common:Name>
<common:Name xml:lang="en">Industrial production volume</common:Name>
<structure:Structure>
<Ref id="DCSP_PRODCOM" version="1.7" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="115_333" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:115_333(1.2)" agencyID="IT1" version="1.2" isFinal="false">
<common:Name xml:lang="it">Indice della produzione industriale</common:Name>
<common:Name xml:lang="en">Industrial production index</common:Name>
<structure:Structure>
<Ref id="DCSC_INDXPRODIND_1" version="1.1" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="115_362" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:115_362(1.2)" agencyID="IT1" version="1.2" isFinal="false">
<common:Name xml:lang="it">Indice della produzione nelle costruzioni</common:Name>
<common:Name xml:lang="en">Index of production in construction</common:Name>
<structure:Structure>
<Ref id="DCSC_INDXPRODCOSTR_1" version="1.3" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="117_1035" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:117_1035(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Servizi bancari - dati comunali</common:Name>
<common:Name xml:lang="en">Bank services - municipalities data</common:Name>
<structure:Structure>
<Ref id="DCAT_SERVBANC_COM" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="117_1057" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:117_1057(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Trasporto ferroviario</common:Name>
<common:Name xml:lang="en">Rail transport</common:Name>
<structure:Structure>
<Ref id="DCSC_TRAFERR" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="117_262" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:117_262(1.2)" agencyID="IT1" version="1.2" isFinal="false">
<common:Name xml:lang="it">Fiducia delle imprese servizi</common:Name>
<common:Name xml:lang="en">Business confidence in the market services sector</common:Name>
<structure:Structure>
<Ref id="DCSC_FIDIMPRSERV" version="1.2" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="117_266" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:117_266(1.3)" agencyID="IT1" version="1.3" isFinal="false">
<common:Name xml:lang="it">Fiducia delle imprese del commercio</common:Name>
<common:Name xml:lang="en">Business confidence in the retail trade Sector</common:Name>
<structure:Structure>
<Ref id="DCSC_FIDCOMM" version="1.3" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="119_367" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:119_367(1.3)" agencyID="IT1" version="1.3" isFinal="false">
<common:Name xml:lang="it">Indice del fatturato dei servizi</common:Name>
<common:Name xml:lang="en">Indexes of turnover in other services</common:Name>
<structure:Structure>
<Ref id="DCSC_FATTSERVIZ_1" version="1.3" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="120_337" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:120_337(1.2)" agencyID="IT1" version="1.2" isFinal="false">
<common:Name xml:lang="it">Indice delle vendite del commercio al dettaglio</common:Name>
<common:Name xml:lang="en">Index of retail trade sales</common:Name>
<structure:Structure>
<Ref id="DCSC_COMMDET_1" version="1.1" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="121_329" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:121_329(1.0)" agencyID="IT1" version="1.0" isFinal="true">
<common:Name xml:lang="it">Trasporto merci su strada per tipo di trasporto</common:Name>
<common:Name xml:lang="en">Road freight carriage by category of transport</common:Name>
<structure:Structure>
<Ref id="SEP_SERVICE_TRASP_TRAMERCIS2" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="121_330" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:121_330(1.1)" agencyID="IT1" version="1.1" isFinal="false">
<common:Name xml:lang="it">Trasporto merci su strada</common:Name>
<common:Name xml:lang="en">Road freight transport</common:Name>
<structure:Structure>
<Ref id="DCSC_TRAMERCIS1" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="121_331" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:121_331(1.2)" agencyID="IT1" version="1.2" isFinal="false">
<common:Name xml:lang="it">Trasporto aereo</common:Name>
<common:Name xml:lang="en">Air transport</common:Name>
<structure:Structure>
<Ref id="DCSC_INDTRAEREO" version="1.2" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="121_393" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:121_393(1.1)" agencyID="IT1" version="1.1" isFinal="false">
<common:Name xml:lang="it">Trasporto marittimo</common:Name>
<common:Name xml:lang="en">Maritime transport</common:Name>
<structure:Structure>
<Ref id="DCSC_TRAMAR" version="1.1" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="122_54" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:122_54(1.7)" agencyID="IT1" version="1.7" isFinal="false">
<common:Name xml:lang="it">Capacità degli esercizi ricettivi e Movimento dei clienti negli esercizi ricettivi</common:Name>
<common:Name xml:lang="en">Capacity of collective accommodation establishments and Occupancy in collective accommodation establishments</common:Name>
<structure:Structure>
<Ref id="DCSC_TUR" version="1.6" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="123_712" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:123_712(1.7)" agencyID="IT1" version="1.7" isFinal="false">
<common:Name xml:lang="it">Indicatori di bilancio e dati sul personale delle unità istituzionali</common:Name>
<common:Name xml:lang="en">Accounts indicators and institutional units personnel indicators</common:Name>
<structure:Structure>
<Ref id="DCAR_INDBILPER" version="1.9" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="123_713" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:123_713(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Numero e tipo di unità istituzionali</common:Name>
<common:Name xml:lang="en">Number and type of institutional units</common:Name>
<structure:Structure>
<Ref id="DCAR_UI" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="123_840" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:123_840(1.2)" agencyID="IT1" version="1.2" isFinal="false">
<common:Name xml:lang="it">Attività e organizzazione delle unità istituzionali</common:Name>
<common:Name xml:lang="en">Institutional units activities and organization</common:Name>
<structure:Structure>
<Ref id="DCAR_INDCENS_PA" version="1.2" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="124_229" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:124_229(1.0)" agencyID="IT1" version="1.0" isFinal="true">
<common:Name xml:lang="it">Stato patrimoniale delle camere di commercio - euro</common:Name>
<common:Name xml:lang="en">Chamber of commerce balance sheet - euros</common:Name>
<structure:Structure>
<Ref id="SEP_PA_CONTI_STATOPATR" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="124_231" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:124_231(1.2)" agencyID="IT1" version="1.2" isFinal="false">
<common:Name xml:lang="it">Entrate delle unità istituzionali locali (euro)</common:Name>
<common:Name xml:lang="en">Revenue of institutional local unities (euros)</common:Name>
<structure:Structure>
<Ref id="DCAR_ENTIST" version="1.1" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="124_232" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:124_232(1.1)" agencyID="IT1" version="1.1" isFinal="false">
<common:Name xml:lang="it">Spese delle unità istituzionali locali (euro)</common:Name>
<common:Name xml:lang="en">Expenditures of institutional local unities (euros)</common:Name>
<structure:Structure>
<Ref id="DCAR_SPEIST" version="1.1" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="124_322" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:124_322(1.1)" agencyID="IT1" version="1.1" isFinal="false">
<common:Name xml:lang="it">Conto economico delle camere di commercio - euro</common:Name>
<common:Name xml:lang="en">Chambers of commerce profit and loss account - euros</common:Name>
<structure:Structure>
<Ref id="DCAR_CONTECON_CC" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="124_722" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:124_722(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Conto economico delle Asl, aziende ospedaliere, aziende ospedaliere universitarie, policlinici e IRCCS (migliaia di euro)</common:Name>
<common:Name xml:lang="en">Local health units, hospital companies, university hospitals, general hospitals and hospitals with a scientific character profit and loss account ( thousands of euro)</common:Name>
<structure:Structure>
<Ref id="DCAR_CONTECON_ASLAO" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="124_730" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:124_730(1.3)" agencyID="IT1" version="1.3" isFinal="false">
<common:Name xml:lang="it">Entrate delle unità istituzionali centrali e locali</common:Name>
<common:Name xml:lang="en">Revenue of institutional central and local units</common:Name>
<structure:Structure>
<Ref id="DCAR_ENTIST_PA" version="1.3" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="124_732" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:124_732(1.2)" agencyID="IT1" version="1.2" isFinal="false">
<common:Name xml:lang="it">Spese delle unità istituzionali centrali e locali</common:Name>
<common:Name xml:lang="en">Expenditures of central and local institutional units</common:Name>
<structure:Structure>
<Ref id="DCAR_SPEIST_PA" version="1.2" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="12_323" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:12_323(1.2)" agencyID="IT1" version="1.2" isFinal="false">
<common:Name xml:lang="it">Impianti di depurazione delle acque reflue urbane</common:Name>
<common:Name xml:lang="en">Urban wastewater treatment plants</common:Name>
<structure:Structure>
<Ref id="DCCV_IMPDEP" version="1.1" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="12_340" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:12_340(1.1)" agencyID="IT1" version="1.1" isFinal="false">
<common:Name xml:lang="it">Prelievo di acqua per uso potabile</common:Name>
<common:Name xml:lang="en">Water abstraction for drinkable use</common:Name>
<structure:Structure>
<Ref id="DCCV_PRELACQ" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="12_60" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:12_60(1.1)" agencyID="IT1" version="1.1" isFinal="false">
<common:Name xml:lang="it">Distribuzione di acqua potabile</common:Name>
<common:Name xml:lang="en">Public water supply use</common:Name>
<structure:Structure>
<Ref id="DCCV_CONSACQUA" version="1.1" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="139_176" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:139_176(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Importazioni ed esportazioni per paese e merce Ateco 2007</common:Name>
<common:Name xml:lang="en">Import and export by country and commodity Nace 2007</common:Name>
<structure:Structure>
<Ref id="DCSP_COEIMPEX1" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="143_1043" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:143_1043(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Indici dei prezzi alla produzione delle costruzioni</common:Name>
<common:Name xml:lang="en">Construction producer prices indeces</common:Name>
<structure:Structure>
<Ref id="DCSC_INDPREPROCOSTR" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="143_222" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:143_222(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Indice dei prezzi all'importazione - dati mensili</common:Name>
<common:Name xml:lang="en">Import price index - monthly data</common:Name>
<structure:Structure>
<Ref id="DCSC_PREIMPIND" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="143_497" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:143_497(1.2)" agencyID="IT1" version="1.2" isFinal="false">
<common:Name xml:lang="it">Prezzi delle abitazioni (Ipab)</common:Name>
<common:Name xml:lang="en">House prices (Ipab)</common:Name>
<structure:Structure>
<Ref id="DCSP_IPAB" version="1.3" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="144_107" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:144_107(1.0)" agencyID="IT1" version="1.0" isFinal="true">
<common:Name xml:lang="en">Foi – weights until 2010</common:Name>
<common:Name xml:lang="it">Foi - pesi sino al 2010</common:Name>
<structure:Structure>
<Ref id="SEP_PREZZI_NIC_FOI_WEIGHT_2010" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="144_110" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:144_110(1.1)" agencyID="IT1" version="1.1" isFinal="false">
<common:Name xml:lang="it">Foi - mensili sino al 2010 (base 1995)</common:Name>
<common:Name xml:lang="en">Foi - monthly data until 2010 (base 1995)</common:Name>
<structure:Structure>
<Ref id="DCSP_FOI1" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="144_118" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:144_118(1.1)" agencyID="IT1" version="1.1" isFinal="false">
<common:Name xml:lang="it">Foi - medie annue sino al 2010 (base 1995)</common:Name>
<common:Name xml:lang="en">Foi - annual data until 2010 (base 1995)</common:Name>
<structure:Structure>
<Ref id="DCSP_FOI2" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="144_125" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:144_125(1.1)" agencyID="IT1" version="1.1" isFinal="false">
<common:Name xml:lang="it">Nic - annuali sino al 2010</common:Name>
<common:Name xml:lang="en">Nic - annual data until 2010</common:Name>
<structure:Structure>
<Ref id="DCSP_NICDUE" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="144_126" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:144_126(1.0)" agencyID="IT1" version="1.0" isFinal="true">
<common:Name xml:lang="en">Nic - weights until 2010</common:Name>
<common:Name xml:lang="it">Nic - pesi sino al 2010</common:Name>
<structure:Structure>
<Ref id="SEP_PREZZI_NIC_FOI_WEIGHT_2010" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="144_180" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:144_180(1.1)" agencyID="IT1" version="1.1" isFinal="false">
<common:Name xml:lang="it">Nic - mensili sino al 2010</common:Name>
<common:Name xml:lang="en">Nic - monthly data until 2010</common:Name>
<structure:Structure>
<Ref id="DCSP_NICUNOB" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="145_360" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:145_360(1.2)" agencyID="IT1" version="1.2" isFinal="false">
<common:Name xml:lang="it">Prezzi alla produzione dell'industria</common:Name>
<common:Name xml:lang="en">Industrial producer prices</common:Name>
<structure:Structure>
<Ref id="DCSC_PREZZPIND_1" version="1.2" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="145_361" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:145_361(1.3)" agencyID="IT1" version="1.3" isFinal="false">
<common:Name xml:lang="it">Costi di costruzione</common:Name>
<common:Name xml:lang="en">Construction costs</common:Name>
<structure:Structure>
<Ref id="DCSC_FABBRESID_1" version="1.3" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="145_376" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:145_376(1.2)" agencyID="IT1" version="1.2" isFinal="false">
<common:Name xml:lang="it">Prezzi alla produzione dei servizi</common:Name>
<common:Name xml:lang="en">Services producer prices</common:Name>
<structure:Structure>
<Ref id="DCSC_PREZPRODSERV_1" version="1.3" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="149_319" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:149_319(1.1)" agencyID="IT1" version="1.1" isFinal="false">
<common:Name xml:lang="it">Tensione contrattuale</common:Name>
<common:Name xml:lang="en">Bargaining tension</common:Name>
<structure:Structure>
<Ref id="DCSC_RETRCONTR1T" version="1.1" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="149_327" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:149_327(1.2)" agencyID="IT1" version="1.2" isFinal="false">
<common:Name xml:lang="it">Orario contrattuale, ferie e altre riduzioni orarie - dipendenti a tempo pieno</common:Name>
<common:Name xml:lang="en">Annual gross hours, net hours, holidays and other hours reduction - full-time employees</common:Name>
<structure:Structure>
<Ref id="DCSC_RETRCONTR1O" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="149_368" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:149_368(1.1)" agencyID="IT1" version="1.1" isFinal="false">
<common:Name xml:lang="it">Ore lavorate - Imprese con almeno 10 dipendenti</common:Name>
<common:Name xml:lang="en">Hours worked - Enterprises with at least 10 employees</common:Name>
<structure:Structure>
<Ref id="DCSC_ORE10_1" version="1.1" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="149_577" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:149_577(1.2)" agencyID="IT1" version="1.2" isFinal="false">
<common:Name xml:lang="it">Posizioni lavorative alle dipendenze</common:Name>
<common:Name xml:lang="en">Number of payroll jobs</common:Name>
<structure:Structure>
<Ref id="DCSC_OROS_1" version="1.2" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="14_121" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:14_121(1.0)" agencyID="IT1" version="1.0" isFinal="true">
<common:Name xml:lang="it">Trasporto pubblico</common:Name>
<common:Name xml:lang="en">Public transport</common:Name>
<structure:Structure>
<Ref id="SEP_AMBIENTE_ENER_INDAMB" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="14_122" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:14_122(1.0)" agencyID="IT1" version="1.0" isFinal="true">
<common:Name xml:lang="it">Verde urbano - dati fino al 2009</common:Name>
<common:Name xml:lang="en">Public green areas - data until 2009</common:Name>
<structure:Structure>
<Ref id="SEP_AMBIENTE_ENER_INDAMB" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="14_166" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:14_166(1.0)" agencyID="IT1" version="1.0" isFinal="true">
<common:Name xml:lang="it">Interventi di bonifica del rumore</common:Name>
<common:Name xml:lang="en">Remediation of noise</common:Name>
<structure:Structure>
<Ref id="SEP_AMBIENTE_ACQ_ENER_INDAMB" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="14_167" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:14_167(1.0)" agencyID="IT1" version="1.0" isFinal="true">
<common:Name xml:lang="it">Inquinamento acustico</common:Name>
<common:Name xml:lang="en">Acoustic pollution</common:Name>
<structure:Structure>
<Ref id="SEP_AMBIENTE_INDAMB_MONINQAC" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="150_105" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:150_105(1.1)" agencyID="IT1" version="1.1" isFinal="false">
<common:Name xml:lang="it">Occupati per ore settimanali lavorate e numero di ore settimanali lavorate procapite</common:Name>
<common:Name xml:lang="en">Employment by number of actual weekly hours and average number of actual weekly hours</common:Name>
<structure:Structure>
<Ref id="DCCV_ORELAVMED" version="1.1" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="150_872" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:150_872(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Tasso di occupazione - dati mensili</common:Name>
<common:Name xml:lang="en">Employment rate - monthly data</common:Name>
<structure:Structure>
<Ref id="DCCV_TAXOCCUMENS1" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="150_873" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:150_873(1.1)" agencyID="IT1" version="1.1" isFinal="false">
<common:Name xml:lang="it">Forze lavoro - dati mensili</common:Name>
<common:Name xml:lang="en">Labour force - monthly data</common:Name>
<structure:Structure>
<Ref id="DCCV_FORZLVMENS1" version="1.1" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="150_875" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:150_875(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Occupati - dati mensili</common:Name>
<common:Name xml:lang="en">Employed - monthly data</common:Name>
<structure:Structure>
<Ref id="DCCV_OCCUPATIMENS1" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="150_876" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:150_876(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Tasso di attività - dati mensili</common:Name>
<common:Name xml:lang="en">Activity rate - monthly data</common:Name>
<structure:Structure>
<Ref id="DCCV_TAXATVTMENS1" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="150_880" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:150_880(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Tasso di attività - dati trimestrali destagionalizzati</common:Name>
<common:Name xml:lang="en">Activity rate - quarterly seasonally adjusted data</common:Name>
<structure:Structure>
<Ref id="DCCV_TAXATVTDE1" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="150_881" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:150_881(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Forze di lavoro - dati trimestrali destagionalizzati</common:Name>
<common:Name xml:lang="en">Labour force - quarterly seasonally adjusted data</common:Name>
<structure:Structure>
<Ref id="DCCV_FORZLVDE1" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="150_882" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:150_882(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Occupati - dati trimestrali destagionalizzati</common:Name>
<common:Name xml:lang="en">Employed - quarterly seasonally adjusted data</common:Name>
<structure:Structure>
<Ref id="DCCV_OCCUPATITDE1" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="150_883" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:150_883(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Tasso di occupazione - dati trimestrali destagionalizzati</common:Name>
<common:Name xml:lang="en">Employment rate - quarterly seasonally adjusted data</common:Name>
<structure:Structure>
<Ref id="DCCV_TAXOCCUDE1" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="150_908" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:150_908(1.1)" agencyID="IT1" version="1.1" isFinal="false">
<common:Name xml:lang="it">Forze di lavoro</common:Name>
<common:Name xml:lang="en">Labour force</common:Name>
<structure:Structure>
<Ref id="DCCV_FORZLV1" version="1.1" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="150_915" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:150_915(1.1)" agencyID="IT1" version="1.1" isFinal="false">
<common:Name xml:lang="it">Tasso di occupazione</common:Name>
<common:Name xml:lang="en">Employment rate</common:Name>
<structure:Structure>
<Ref id="DCCV_TAXOCCU1" version="1.1" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="150_916" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:150_916(1.1)" agencyID="IT1" version="1.1" isFinal="false">
<common:Name xml:lang="it">Tasso di attività</common:Name>
<common:Name xml:lang="en">Activity rate</common:Name>
<structure:Structure>
<Ref id="DCCV_TAXATVT1" version="1.1" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="150_938" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:150_938(1.1)" agencyID="IT1" version="1.1" isFinal="false">
<common:Name xml:lang="it">Occupati (migliaia)</common:Name>
<common:Name xml:lang="en">Employment (thousands)</common:Name>
<structure:Structure>
<Ref id="DCCV_OCCUPATIT1" version="1.1" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="151_874" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:151_874(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Tasso di disoccupazione - dati mensili</common:Name>
<common:Name xml:lang="en">Unemployment rate - monthly data</common:Name>
<structure:Structure>
<Ref id="DCCV_TAXDISOCCUMENS1" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="151_877" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:151_877(1.1)" agencyID="IT1" version="1.1" isFinal="false">
<common:Name xml:lang="it">Disoccupati - dati mensili</common:Name>
<common:Name xml:lang="en">Unemployed - monthly data</common:Name>
<structure:Structure>
<Ref id="DCCV_DISOCCUPTMENS1" version="1.1" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="151_884" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:151_884(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Tasso di disoccupazione - dati trimestrali destagionalizzati</common:Name>
<common:Name xml:lang="en">Unemployment rate - quarterly seasonally adjusted data</common:Name>
<structure:Structure>
<Ref id="DCCV_TAXDISOCCUDE1" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="151_885" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:151_885(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Disoccupati - dati trimestrali destagionalizzati</common:Name>
<common:Name xml:lang="en">Unemployed - quarterly seasonally adjusted data</common:Name>
<structure:Structure>
<Ref id="DCCV_DISOCCUPTDE1" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="151_914" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:151_914(1.1)" agencyID="IT1" version="1.1" isFinal="false">
<common:Name xml:lang="it">Tasso di disoccupazione</common:Name>
<common:Name xml:lang="en">Unemployment rate</common:Name>
<structure:Structure>
<Ref id="DCCV_TAXDISOCCU1" version="1.1" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="151_929" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:151_929(1.1)" agencyID="IT1" version="1.1" isFinal="false">
<common:Name xml:lang="it">Disoccupati</common:Name>
<common:Name xml:lang="en">Unemployment</common:Name>
<structure:Structure>
<Ref id="DCCV_DISOCCUPT1" version="1.1" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="152_878" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:152_878(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Tasso di inattività - dati mensili</common:Name>
<common:Name xml:lang="en">Inactivity rate - monthly data</common:Name>
<structure:Structure>
<Ref id="DCCV_TAXINATTMENS1" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="152_879" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:152_879(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Inattivi - dati mensili</common:Name>
<common:Name xml:lang="en">Inactive population - monthly data</common:Name>
<structure:Structure>
<Ref id="DCCV_INATTIVMENS1" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="152_886" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:152_886(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Tasso di inattività - dati trimestrali destagionalizzati</common:Name>
<common:Name xml:lang="en">Inactivity rate - quarterly seasonally adjusted data</common:Name>
<structure:Structure>
<Ref id="DCCV_TAXINATTDE1" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="152_887" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:152_887(1.1)" agencyID="IT1" version="1.1" isFinal="false">
<common:Name xml:lang="it">Inattivi - dati trimestrali destagionalizzati</common:Name>
<common:Name xml:lang="en">Inactive population - quarterly seasonally adjusted data</common:Name>
<structure:Structure>
<Ref id="DCCV_INATTIVDE1" version="1.1" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="152_913" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:152_913(1.1)" agencyID="IT1" version="1.1" isFinal="false">
<common:Name xml:lang="it">Tasso di inattività</common:Name>
<common:Name xml:lang="en">Inactivity rate</common:Name>
<structure:Structure>
<Ref id="DCCV_TAXINATT1" version="1.1" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="152_928" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:152_928(1.1)" agencyID="IT1" version="1.1" isFinal="false">
<common:Name xml:lang="it">Inattivi</common:Name>
<common:Name xml:lang="en">Inactive population</common:Name>
<structure:Structure>
<Ref id="DCCV_INATTIV1" version="1.1" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="153_369" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:153_369(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Posti vacanti - Imprese con almeno 10 dipendenti</common:Name>
<common:Name xml:lang="en">Job vacancies - Enterprises with at least 10 employees</common:Name>
<structure:Structure>
<Ref id="DCSC_POSTIVAC_1" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="154_278" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:154_278(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Imprese ed enti pubblici con almeno 10 dipendenti</common:Name>
<common:Name xml:lang="en">Enterprises and public administrations with at least 10 employees</common:Name>
<structure:Structure>
<Ref id="DCSC_COSTLAVSTRUT_1" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="154_373" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:154_373(1.2)" agencyID="IT1" version="1.2" isFinal="false">
<common:Name xml:lang="it">Indicatori - Imprese con dipendenti</common:Name>
<common:Name xml:lang="en">Indicators - Enterprises with employee</common:Name>
<structure:Structure>
<Ref id="DCSC_COSTLAVULAOROS_1" version="1.2" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="155_274" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:155_274(1.1)" agencyID="IT1" version="1.1" isFinal="false">
<common:Name xml:lang="it">Retribuzioni contrattuali nella Pubblica amministrazione</common:Name>
<common:Name xml:lang="en">Wages according to collective labour agreements in Public administration</common:Name>
<structure:Structure>
<Ref id="DCSC_RETRCASSCOMPPA" version="1.1" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="155_318" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:155_318(1.1)" agencyID="IT1" version="1.1" isFinal="false">
<common:Name xml:lang="it">Retribuzioni contrattuali per tipo di contratto</common:Name>
<common:Name xml:lang="en">Wages according to collective labour agreements by agreement</common:Name>
<structure:Structure>
<Ref id="DCSC_RETRCONTR1C" version="1.1" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="155_358" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:155_358(1.1)" agencyID="IT1" version="1.1" isFinal="false">
<common:Name xml:lang="it">Retribuzioni contrattuali per settore economico (Ateco)</common:Name>
<common:Name xml:lang="en">Wages according to collective labour agreements by economic sector (Nace rev.2)</common:Name>
<structure:Structure>
<Ref id="DCSC_RETRATECO1" version="1.1" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="155_374" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:155_374(1.2)" agencyID="IT1" version="1.2" isFinal="false">
<common:Name xml:lang="it">Retribuzioni lorde - Imprese con dipendenti</common:Name>
<common:Name xml:lang="en">Gross earnings - Enterprises with employees</common:Name>
<structure:Structure>
<Ref id="DCSC_RETRULAOROS_1" version="1.2" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="158_149" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:158_149(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Scuola dell'infanzia</common:Name>
<common:Name xml:lang="en">Pre-primary school</common:Name>
<structure:Structure>
<Ref id="DCIS_INFANZIA" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="158_150" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:158_150(1.0)" agencyID="IT1" version="1.0" isFinal="true">
<common:Name xml:lang="it">Scuola primaria</common:Name>
<common:Name xml:lang="en">Primary school</common:Name>
<structure:Structure>
<Ref id="SEP_ISTFORM_SCUOLA_INFAN_PRIM_SEC" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="158_151" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:158_151(1.0)" agencyID="IT1" version="1.0" isFinal="true">
<common:Name xml:lang="it">Scuola secondaria di primo grado</common:Name>
<common:Name xml:lang="en">Lower secondary school</common:Name>
<structure:Structure>
<Ref id="SEP_ISTFORM_SCUOLA_INFAN_PRIM_SEC" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="158_260" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:158_260(1.0)" agencyID="IT1" version="1.0" isFinal="true">
<common:Name xml:lang="it">Scuola secondaria di secondo grado</common:Name>
<common:Name xml:lang="en">Upper secondary school</common:Name>
<structure:Structure>
<Ref id="SEP_ISTFORM_SCUOLA_SEC_II" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="159_17" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:159_17(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Alunni con disabilità</common:Name>
<common:Name xml:lang="en">Disabled pupils</common:Name>
<structure:Structure>
<Ref id="DCIS_ALUNNIDIS" version="1.1" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="159_18" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:159_18(1.1)" agencyID="IT1" version="1.1" isFinal="false">
<common:Name xml:lang="it">Scuole con alunni con disabilità e figure per l'integrazione</common:Name>
<common:Name xml:lang="en">Schools with pupils with disabilities and figures for integration</common:Name>
<structure:Structure>
<Ref id="DCIS_SCUOLEDIS" version="1.1" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="159_19" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:159_19(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Scuole con alunni con sordità e presenza comunicatori</common:Name>
<common:Name xml:lang="en">Schools with pupils with deafness and presence of communicators</common:Name>
<structure:Structure>
<Ref id="DCIS_SCUOLESORDI" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="160_233" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:160_233(1.1)" agencyID="IT1" version="1.1" isFinal="false">
<common:Name xml:lang="it">Enti previdenziali - numero di dipendenti</common:Name>
<common:Name xml:lang="en">Social security funds - number of employees</common:Name>
<structure:Structure>
<Ref id="DCAR_ENTPREVDIP" version="1.1" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="160_234" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:160_234(1.0)" agencyID="IT1" version="1.0" isFinal="true">
<common:Name xml:lang="it">Enti previdenziali - spese (migliaia di euro)</common:Name>
<common:Name xml:lang="en">Social security funds - expenditures (thousands of euro)</common:Name>
<structure:Structure>
<Ref id="SEP_PA_ENTIPREV_ENTRATE" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="160_235" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:160_235(1.1)" agencyID="IT1" version="1.1" isFinal="false">
<common:Name xml:lang="it">Enti previdenziali - entrate (migliaia di euro)</common:Name>
<common:Name xml:lang="en">Social security funds - revenue (thousands of euro)</common:Name>
<structure:Structure>
<Ref id="DCAR_ENTPREVENT_PA" version="1.1" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="160_753" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:160_753(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Enti nazionali di previdenza e assistenza sociale S13 - numero di dipendenti</common:Name>
<common:Name xml:lang="en">Social security funds S13 - number of employees</common:Name>
<structure:Structure>
<Ref id="DCAR_ENTPREVDIP_PA" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="160_754" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:160_754(1.1)" agencyID="IT1" version="1.1" isFinal="false">
<common:Name xml:lang="it">Enti nazionali di previdenza e assistenza sociale S13 - entrate (migliaia di euro)</common:Name>
<common:Name xml:lang="en">Social security funds S13 - revenue (thousands of euro)</common:Name>
<structure:Structure>
<Ref id="DCAR_ENTPREVENT_PA" version="1.1" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="160_755" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:160_755(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Enti nazionali di previdenza e assistenza sociale S13 - spese (migliaia di euro)</common:Name>
<common:Name xml:lang="en">Social security funds S13 - expenditures (thousands of euro)</common:Name>
<structure:Structure>
<Ref id="DCAR_ENTPREVSPE_PA" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="161_267" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:161_267(1.3)" agencyID="IT1" version="1.3" isFinal="false">
<common:Name xml:lang="it">Risultati economici delle imprese</common:Name>
<common:Name xml:lang="en">Enterprises economic indicators</common:Name>
<structure:Structure>
<Ref id="DCSP_SBSNAZ" version="1.2" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="161_268" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:161_268(1.2)" agencyID="IT1" version="1.2" isFinal="false">
<common:Name xml:lang="it">Risultati economici delle imprese - reg.</common:Name>
<common:Name xml:lang="en">Enterprises economic indicators - reg.</common:Name>
<structure:Structure>
<Ref id="DCSP_SBSREG" version="1.1" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="161_297" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:161_297(1.1)" agencyID="IT1" version="1.1" isFinal="true">
<common:Name xml:lang="it">Statistiche nazionali sulla struttura delle imprese (dati sino al 2007)</common:Name>
<common:Name xml:lang="en">National Structural Business Statistics (data until 2007)</common:Name>
<structure:Structure>
<Ref id="SEP_SISTIMPR_RE_STRIMPR_2002" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="161_81" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:161_81(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Statistiche regionali sulla struttura delle imprese (dati sino al 2007)</common:Name>
<common:Name xml:lang="en">Regional Structural Business Statistics (data until 2007)</common:Name>
<common:Description xml:lang="it">Imprese - Serie interrotte - Statistiche regionali sulla struttura delle imprese (dati sino al 2007)</common:Description>
<common:Description xml:lang="en">Enterprises - Broken time series - Regional Structural Business Statistics (data until 2007)</common:Description>
<structure:Structure>
<Ref id="DCSP_SBSREG2002" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="162_1058" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:162_1058(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Sequenza dei conti trimestrali per settore istituzionale - Conti versione 2014</common:Name>
<common:Name xml:lang="en">Sequence of quarterly accounts by institutional sector - Accounts in the 2014 version</common:Name>
<structure:Structure>
<Ref id="DCCN_ISTITUZ_QNA_B14" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="162_1064" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:162_1064(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Sequenza dei conti trimestrali per settore istituzionale</common:Name>
<common:Name xml:lang="en">Sequence of quarterly accounts by institutional sector</common:Name>
<structure:Structure>
<Ref id="DCCN_ISTITUZ_QNA1" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="163_144" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:163_144(1.0)" agencyID="IT1" version="1.0" isFinal="true">
<common:Name xml:lang="en">Accounts aggregates by industry (NACE Rev.1.1) - edition September 2011</common:Name>
<common:Name xml:lang="it">Aggregati dei conti per branca di attività (NACE Rev.1.1) - edizione settembre 2011</common:Name>
<structure:Structure>
<Ref id="SEP_CONTINAZ_ANN_QUA_TER_AGGREG" version="1.1" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="163_156" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:163_156(1.3)" agencyID="IT1" version="1.3" isFinal="false">
<common:Name xml:lang="it">Conto economico delle risorse e degli impieghi e contributi alla crescita del Pil</common:Name>
<common:Name xml:lang="en">Gross domestic product, expenditure components and contribution to GDP growth</common:Name>
<structure:Structure>
<Ref id="DCCN_SQCQ" version="1.3" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="163_184" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:163_184(1.1)" agencyID="IT1" version="1.1" isFinal="false">
<common:Name xml:lang="it">Prodotto interno lordo e principali componenti</common:Name>
<common:Name xml:lang="en">Gross Domestic Product and main components</common:Name>
<structure:Structure>
<Ref id="DCCN_PILQ" version="1.1" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="163_24" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:163_24(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Principali aggregati trimestrali di Contabilità Nazionale</common:Name>
<common:Name xml:lang="en">National Accounts quarterly main aggregates</common:Name>
<structure:Structure>
<Ref id="DCCN_QNA" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="163_241" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:163_241(1.1)" agencyID="IT1" version="1.1" isFinal="false">
<common:Name xml:lang="it">Spesa per consumi finali delle famiglie - edizioni fino ad agosto 2014</common:Name>
<common:Name xml:lang="en">Final consumption expenditure of households - editions until August 2014</common:Name>
<structure:Structure>
<Ref id="DCCN_CONSFAMQ" version="1.1" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="163_246" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:163_246(1.0)" agencyID="IT1" version="1.0" isFinal="true">
<common:Name xml:lang="en">Costs and margins breakdown by industry (NACE Rev.1.1) - edition September 2011</common:Name>
<common:Name xml:lang="it">Costi e margini per branca di attività (NACE Rev.1.1) - edizione settembre 2011</common:Name>
<structure:Structure>
<Ref id="SEP_CONTINAZ_QUA_COSTIMARGINI" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="163_247" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:163_247(1.3)" agencyID="IT1" version="1.3" isFinal="false">
<common:Name xml:lang="it">Prodotto interno lordo lato produzione - edizioni fino ad agosto 2014</common:Name>
<common:Name xml:lang="en">Gross domestic product supply side - editions until August 2014</common:Name>
<structure:Structure>
<Ref id="DCCN_PILPRODQ" version="1.1" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="163_250" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:163_250(1.2)" agencyID="IT1" version="1.2" isFinal="false">
<common:Name xml:lang="it">Investimenti fissi lordi - edizioni fino ad agosto 2014</common:Name>
<common:Name xml:lang="en">Gross fixed capital formation - editions until August 2014</common:Name>
<structure:Structure>
<Ref id="DCCN_INVESTIQ" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="163_253" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:163_253(1.3)" agencyID="IT1" version="1.3" isFinal="false">
<common:Name xml:lang="it">Conto economico delle risorse e degli impieghi - edizioni fino ad agosto 2014</common:Name>
<common:Name xml:lang="en">Gross domestic product and expenditure components - editions until August 2014</common:Name>
<structure:Structure>
<Ref id="DCCN_SEQZCONTIQ" version="1.1" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="163_257" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:163_257(1.0)" agencyID="IT1" version="1.0" isFinal="true">
<common:Name xml:lang="en">Employment breakdown by industry (NACE Rev.1.1) - edition September 2011</common:Name>
<common:Name xml:lang="it">Occupazione per branca di attività (NACE Rev.1.1) - edizione settembre 2011</common:Name>
<structure:Structure>
<Ref id="SEP_CONTINAZ_QUA_TER_OCCXBRANCA" version="1.1" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="163_296" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:163_296(1.2)" agencyID="IT1" version="1.2" isFinal="false">
<common:Name xml:lang="it">Aggregati dei conti per branca di attività (NACE Rev.2) - edizioni dicembre 2011 - agosto 2014</common:Name>
<common:Name xml:lang="en">Accounts aggregates by industry (NACE Rev.2) - editions from December 2011 to August 2014</common:Name>
<structure:Structure>
<Ref id="DCCN_AGGREGBRANCAQREV2" version="1.1" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="163_299" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:163_299(1.2)" agencyID="IT1" version="1.2" isFinal="true">
<common:Name xml:lang="it">Costi e margini per branca di attività (NACE Rev.2) - edizioni dicembre 2011 - giugno 2014</common:Name>
<common:Name xml:lang="en">Costs and margins breakdown by industry (NACE Rev.2) - editions from December 2011 to June 2014</common:Name>
<structure:Structure>
<Ref id="DCCN_COSTMARGQREV2" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="163_300" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:163_300(1.4)" agencyID="IT1" version="1.4" isFinal="false">
<common:Name xml:lang="it">Occupazione per branca di attività (NACE Rev.2) - edizioni dicembre 2011 - giugno 2014</common:Name>
<common:Name xml:lang="en">Employment breakdown by industry (NACE Rev.2) - editions from December 2011 to June 2014</common:Name>
<structure:Structure>
<Ref id="DCCN_OCCUPQREV2" version="1.1" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="163_88" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:163_88(1.2)" agencyID="IT1" version="1.2" isFinal="false">
<common:Name xml:lang="it">Occupazione per branca di attività</common:Name>
<common:Name xml:lang="en">Employment breakdown by industry</common:Name>
<structure:Structure>
<Ref id="DCCN_OCCQSEC2010" version="1.3" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="164_164" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:164_164(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Popolazione residente ricostruita - Anni 2001-2011</common:Name>
<common:Name xml:lang="en">Estimated resident population - Years 2001-2011</common:Name>
<structure:Structure>
<Ref id="DCIS_RICPOPRES2011" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="164_279" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:164_279(1.1)" agencyID="IT1" version="1.1" isFinal="false">
<common:Name xml:lang="it">Popolazione residente ricostruita - Anni 1982-1991</common:Name>
<common:Name xml:lang="en">Estimated resident population - Years 1982-1991</common:Name>
<structure:Structure>
<Ref id="DCIS_RICPOPRES1991" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="164_305" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:164_305(1.1)" agencyID="IT1" version="1.1" isFinal="false">
<common:Name xml:lang="it">Popolazione residente ricostruita - Anni 1991-2001</common:Name>
<common:Name xml:lang="en">Estimated resident population - Years 1991-2001</common:Name>
<structure:Structure>
<Ref id="DCIS_RICPOPRES2001" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="164_346" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:164_346(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Popolazione residente ricostruita - Anni 1952-1971</common:Name>
<common:Name xml:lang="en">Estimated resident population - Years 1952-1971</common:Name>
<structure:Structure>
<Ref id="DCIS_RICPOPRES1971" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="164_347" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:164_347(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Popolazione residente ricostruita - Anni 1972-1981</common:Name>
<common:Name xml:lang="en">Estimated resident population - Years 1972-1981</common:Name>
<structure:Structure>
<Ref id="DCIS_RICPOPRES1981" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="164_496" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:164_496(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Popolazione residente ai confini dell'epoca ricostruita - Anni 2001-2011</common:Name>
<common:Name xml:lang="en">Estimated resident population within the borders of the time - Years 2001-2011</common:Name>
<structure:Structure>
<Ref id="DCIS_RPOP_C2011" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="165_889" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:165_889(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Previsioni della popolazione - Anni 2018-2065</common:Name>
<common:Name xml:lang="en">Demographic projections - Years 2018-2065</common:Name>
<structure:Structure>
<Ref id="DCIS_PREVDEM1" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="167_33" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:167_33(1.4)" agencyID="IT1" version="1.4" isFinal="false">
<common:Name xml:lang="it">Nic - mensili dal 2011 al 2015 (base 2010)</common:Name>
<common:Name xml:lang="en">Nic - monthly data from 2011 until 2015 (base 2010)</common:Name>
<structure:Structure>
<Ref id="DCSP_NICUNOBB2010" version="1.5" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="167_34" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:167_34(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Nic - medie annue dal 2011 al 2015 (base 2010)</common:Name>
<common:Name xml:lang="en">Nic - annual average from 2011 until 2015 (base 2010)</common:Name>
<structure:Structure>
<Ref id="DCSP_NICDUEB2010" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>
</structure:Dataflow>
<structure:Dataflow id="167_35" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dataflow=IT1:167_35(1.0)" agencyID="IT1" version="1.0" isFinal="false">
<common:Name xml:lang="it">Nic - pesi dal 2011 al 2015</common:Name>
<common:Name xml:lang="en">Nic – weights from 2011 until 2015</common:Name>
<structure:Structure>
<Ref id="DCSP_NICTREB2010" version="1.0" agencyID="IT1" package="datastructure" class="DataStructure" />
</structure:Structure>