Newer
Older
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
[
{
"children":[
{
"children":[
{
"children":[
{
"children":[
{
"children":[
{
"code":"ei_bsco_m",
"name":"Consumers - monthly data"
},
{
"code":"ei_bsco_q",
"name":"Consumers - quarterly data"
}
],
"code":"ei_bcs_cs",
"name":"Consumer surveys (source: DG ECFIN)"
},
{
"children":[
{
"code":"ei_bsin_m_r2",
"name":"Industry - monthly data"
},
{
"code":"ei_bsin_q_r2",
"name":"Industry - quarterly data"
},
{
"code":"ei_bsbu_m_r2",
"name":"Construction - monthly data"
},
{
"code":"ei_bsbu_q_r2",
"name":"Construction - quarterly data"
},
{
"code":"ei_bsrt_m_r2",
"name":"Retail sale - monthly data"
},
{
"code":"ei_bssi_m_r2",
"name":"Sentiment indicators - monthly data"
},
{
"code":"ei_bsse_m_r2",
"name":"Services - monthly data"
},
{
"code":"ei_bsse_q_r2",
"name":"Services - quarterly data"
},
{
"code":"ei_bsci_m_r2",
"name":"Euro-zone Business Climate Indicator - monthly data"
},
{
"code":"ei_bsfs_m",
"name":"Financial services - monthly data"
},
{
"code":"ei_bsfs_q",
"name":"Financial services - quarterly data"
}
],
"code":"ei_bcs_bs",
"name":"Business surveys - NACE Rev. 2 activity (source: DG ECFIN)"
}
],
"code":"ei_bcs",
"name":"Business and consumer surveys (source: DG ECFIN)"
},
{
"children":[
{
"children":[
{
"code":"ei_bpm6ca_q",
"name":"Current account - quarterly data"
},
{
"code":"ei_bpm6fa_q",
"name":"Financial account - quarterly data"
},
{
"code":"ei_bpm6ca_m",
"name":"Current account - monthly data"
},
{
"code":"ei_bpm6fa_m",
"name":"Financial account - monthly data"
},
{
"code":"ei_bpm6iip_q",
"name":"International investment position - quarterly data"
}
],
"code":"ei_bp_6",
"name":"Balance of payments - BPM6"
}
],
"code":"ei_bp",
"name":"Balance of payments"
},
{
"children":[
{
"code":"ei_cphi_m",
"name":"Harmonised indices - monthly data"
}
],
"code":"ei_cp",
"name":"Consumer prices"
},
{
"children":[
{
"code":"ei_eteu28_m",
"name":"EU28 international trade - monthly data"
},
{
"code":"ei_etea19_m",
"name":"Euro area 19 international trade - monthly data"
}
],
"code":"ei_et",
"name":"International trade"
},
{
"children":[
{
"code":"ei_isin_m",
"name":"Industry - monthly data - index (2015 = 100) (NACE Rev. 2)"
},
{
"code":"ei_isir_m",
"name":"Industry - monthly data - growth rates (NACE Rev. 2)"
},
{
"code":"ei_isind_q",
"name":"Industry - quarterly data - index (2015 = 100) (NACE Rev. 2)"
"name":"Construction - monthly data - index (2015 = 100) (NACE Rev. 2)"
},
{
"code":"ei_isbr_m",
"name":"Construction - monthly data - growth rates (NACE Rev. 2)"
},
{
"code":"ei_isbu_q",
"name":"Construction - quarterly data - index (2015 = 100) (NACE Rev. 2)"
},
"name":"Retail trade - monthly data - index (2015 = 100) (NACE Rev. 2)"
},
{
"code":"ei_isrr_m",
"name":"Retail trade - monthly data - growth rates (NACE Rev. 2)"
},
{
"code":"ei_isrt_q",
"name":"Retail trade - quarterly data (NACE Rev. 2)"
},
{
"code":"ei_isset_q",
"name":"Turnover in services - quarterly data - index (2015 = 100)"
"code":"ei_isse_q",
"name":"Turnover in services - quarterly data - growth rates (NACE Rev.2)"
"name":"Service producer prices - quarterly data - index (2015 = 100)"
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
},
{
"code":"ei_isppe_q",
"name":"Service producer prices - quarterly data - growth rates"
},
{
"code":"ei_isen_m",
"name":"Energy - monthly data"
}
],
"code":"ei_is",
"name":"Industry, trade and services"
},
{
"children":[
{
"code":"ei_lmhu_m",
"name":"Harmonised unemployment (1 000) - monthly data"
},
{
"code":"ei_lmhr_m",
"name":"Harmonised unemployment rates (%) - monthly data"
},
{
"code":"ei_lmlc_q",
"name":"Labour cost index, nominal value - quarterly data"
},
{
"code":"ei_lmjv_q_r2",
"name":"Job vacancy rate"
}
],
"code":"ei_lm",
"name":"Labour market"
},
{
"children":[
{
"code":"ei_mfir_m",
"name":"Interest rates - monthly data"
},
{
"code":"ei_mfrt_m",
"name":"Euro\/Ecu exchange rates - monthly data"
},
{
"code":"ei_mfef_m",
"name":"Effective exchange rates indices - monthly data"
}
],
"code":"ei_mf",
"name":"Monetary and financial indicators"
},
{
"children":[
{
"children":[
{
"code":"nama_10_gdp",
"name":"GDP and main components (output, expenditure and income)"
},
{
"children":[
{
"code":"namq_10_gdp",
"name":"GDP and main components (output, expenditure and income)"
},
{
"code":"namq_10_fcs",
"name":"Final consumption aggregates"
},
{
"code":"namq_10_exi",
"name":"Exports and imports by Member States of the EU\/third countries"
}
],
"code":"ei_namq_10_ma",
"name":"Main GDP aggregates"
},
{
"children":[
{
"code":"namq_10_a10",
"name":"Gross value added and income A*10 industry breakdowns"
},
{
"code":"namq_10_an6",
"name":"Gross fixed capital formation with AN_F6 asset breakdowns"
},
{
"code":"namq_10_a10_e",
"name":"Employment A*10 industry breakdowns"
}
],
"code":"ei_namq_10_bbr",
"name":"Basic breakdowns of main GDP aggregates and employment (by industry and assets)"
},
{
"children":[
{
"code":"nasq_10_ki",
"name":"Key indicators"
},
{
"code":"nasq_10_nf_tr",
"name":"Non-financial transactions"
}
],
"code":"ei_nasq_10",
"name":"Quarterly sector accounts (ESA 2010)"
}
],
"code":"ei_qna_e10",
"name":"National accounts - ESA 2010"
}
],
"code":"ei_qna",
"name":"National accounts"
},
{
"children":[
{
"code":"ei_hppi_q",
"name":"House price index (2015 = 100) - quarterly data"
}
],
"code":"ei_hp",
"name":"Housing price statistics"
}
],
"code":"euroind",
"name":"European and national indicators for short-term analysis"
},
{
"children":[
{
"code":"reg_area3",
"name":"Area by NUTS 3 region"
},
{
"children":[
{
"children":[
{
"code":"aei_pr_soiler",
"name":"Estimated soil erosion by water, by NUTS 3 regions (source: JRC)"
},
{
"code":"aei_fm_ms",
"name":"Manure storage facilities by NUTS 3 regions"
}
],
"code":"reg_aei",
"name":"Agri-environmental indicators"
},
{
"children":[
{
"children":[
{
"children":[
{
"code":"ef_kvaareg",
"name":"Key farm variables: area, livestock (LSU), labour force and standard output (SO) by agricultural size of farm (UAA), legal status of holding and NUTS 2 regions"
},
{
"code":"ef_kvecsleg",
"name":"Key variables: area, livestock (LSU), labour force and standard output (SO) by economic size of farm (SO in Euro), legal status of holding and NUTS 2 regions"
},
{
"code":"ef_kvftreg",
"name":"Key variables: area, livestock (LSU), labour force and standard output (SO) by type of farming (2-digit) and NUTS 2 regions"
}
],
"code":"reg_ef_kv",
"name":"Key farm variables"
},
{
"children":[
{
"code":"ef_oluaareg",
"name":"Land use: number of farms and areas of different crops by agricultural size of farm (UAA) and NUTS 2 regions"
},
{
"code":"ef_oluecsreg",
"name":"Land use: number of farms and areas of different crops by economic size of farm (SO in Euro) and NUTS 2 regions"
},
{
"code":"ef_popermreg",
"name":"Permanent crops: number of farms and areas by size of permanent crop area and NUTS 2 regions"
},
{
"code":"ef_poirrig",
"name":"Irrigation: number of farms, areas and equipment by size of irrigated area and NUTS 2 regions"
}
],
"code":"reg_ef_po",
"name":"Farm land use - Permanent crops, other farmland, irrigation"
},
{
"children":[
{
"code":"ef_olsaareg",
"name":"Livestock: number of farms and heads of animals of different types by agricultural size of farm (UAA) and NUTS 2 regions"
},
{
"code":"ef_olslsureg",
"name":"Livestock: number of farms and heads of animals by livestock units (LSU) of farm and NUTS 2 regions"
},
{
"code":"ef_olsecsreg",
"name":"Livestock: number of farms and heads of animals by economic size of farm (SO in Euro) and NUTS 2 regions"
}
],
"code":"reg_ef_ols",
"name":"Overview - farm livestock"
},
{
"children":[
{
"code":"ef_olfreg",
"name":"Labour force: number of persons and farm work (AWU) by sex of workers and NUTS 2 regions"
},
{
"code":"ef_mporganic",
"name":"Organic farming: number of farms, areas with different crops and heads of different types of animals by agricultural size of farm (UAA) and NUTS 2 regions"
},
{
"code":"ef_mptenure",
"name":"Type of tenure: number of farms and areas by agricultural size of farm (UAA) and NUTS 2 regions"
},
{
"code":"ef_mptenurecs",
"name":"Type of tenure: number of farms and areas by economic size of farm (SO in Euro) and NUTS 2 regions"
}
],
"code":"reg_ef_molf",
"name":"Farm labour force and management"
}
],
"code":"reg_ef_2010",
"name":"Structure of agricultural holdings 2010"
},
{
"children":[
{
"children":[
{
"code":"ef_ov_kvaa",
"name":"Key variables by legal status of holding, size of farm (UAA) and NUTS 2 regions"
},
{
"code":"ef_ov_kvftreg",
"name":"Key variables by type of farming (2-digit) and NUTS 2 regions"
}
],
"code":"reg_ef_ov",
"name":"Overview of agricultural holdings"
},
{
"children":[
{
"code":"ef_lu_ovcropaa",
"name":"Farmland: number of farms and areas by size of farm (UAA) and NUTS 2 regions"
},
{
"code":"ef_lu_ovcropesu",
"name":"Farmland: number of farms and areas by economic size of farm (ESU) and NUTS 2 regions"
},
{
"code":"ef_lu_pcreg",
"name":"Permanent crops: number of farms and areas by size of farm (UAA), size of permanent crop area and NUTS 2 regions"
},
{
"code":"ef_lu_ofirrig",
"name":"Irrigation: number of farms, areas and equipment by size of farm (UAA) and NUTS 2 regions"
}
],
"code":"reg_ef_lu",
"name":"Land use"
},
{
"children":[
{
"code":"ef_ls_ovaareg",
"name":"Livestock: number of farms and heads by size of farm (UAA) and NUTS 2 regions"
},
{
"code":"ef_ls_ovlsureg",
"name":"Livestock: number of farms and heads by livestock units (LSU) of farm and NUTS 2 regions"
},
{
"code":"ef_ls_ovesu",
"name":"Livestock: number of farms and heads by economic size of farm (ESU) and NUTS 2 regions"
}
],
"code":"reg_ef_ls",
"name":"Livestock"
},
{
"children":[
{
"code":"ef_so_mporg",
"name":"Organic farming: selected variables by size of farm (UAA) and NUTS 2 regions"
},
{
"code":"ef_so_mptenure",
"name":"Type of tenure: number of farms and areas by size of farm (UAA) and NUTS 2 regions"
},
{
"code":"ef_so_lfaa",
"name":"Labour force: number of persons and farm work (AWU) by sex of worker, category of worker, legal status of holding, size of farm (UAA) and NUTS 2 regions"
},
{
"code":"ef_so_lfesu",
"name":"Labour force: number of persons and farm work (AWU) by sex of worker, category of worker, legal status of holding, economic size of farm (ESU) and NUTS 2 regions"
}
],
"code":"reg_ef_so",
"name":"Special interest topics"
},
{
"children":[
{
"code":"ef_r_nuts",
"name":"Structure of agricultural holdings by NUTS 3 regions - main indicators"
}
],
"code":"reg_ef_r_main",
"name":"Structure of agricultural holdings by region, main indicators"
}
],
"code":"reg_ef_h",
"name":"Structure of agricultural holdings - historical data (1990-2007)"
}
],
"code":"reg_ef",
"name":"Structure of agricultural holdings"
},
{
"children":[
{
"code":"agr_r_animal",
"name":"Animal populations by NUTS 2 regions"
},
{
"code":"agr_r_milkpr",
"name":"Production of cow's milk on farms by NUTS 2 regions"
}
],
"code":"reg_apro",
"name":"Agricultural production"
},
{
"code":"agr_r_accts",
"name":"Economic accounts for agriculture by NUTS 2 regions"
}
],
"code":"reg_agr",
"name":"Regional agriculture statistics"
},
{
"children":[
{
"children":[
{
"code":"demo_r_d2jan",
"name":"Population on 1 January by age, sex and NUTS 2 region"
},
{
"code":"demo_r_d3area",
"name":"Area by NUTS 3 region"
},
{
"code":"demo_r_d3dens",
"name":"Population density by NUTS 3 region"
},
{
"code":"demo_r_pjangroup",
"name":"Population on 1 January by age group, sex and NUTS 2 region"
},
{
"code":"demo_r_pjangrp3",
"name":"Population on 1 January by age group, sex and NUTS 3 region"
},
{
"code":"demo_r_pjanaggr3",
"name":"Population on 1 January by broad age group, sex and NUTS 3 region"
},
{
"code":"demo_r_pjanind2",
"name":"Population: Structure indicators by NUTS 2 region"
},
{
"code":"demo_r_pjanind3",
"name":"Population: Structure indicators by NUTS 3 region"
},
{
"code":"demo_r_gind3",
"name":"Population change - Demographic balance and crude rates at regional level (NUTS 3) "
}
],
"code":"reg_dempoar",
"name":"Population and area"
},
{
"children":[
{
"code":"demo_r_births",
"name":"Live births (total) by NUTS 3 region"
},
{
"code":"demo_r_fagec3",
"name":"Live births by age group of the mothers and NUTS 3 region"
},
{
"code":"demo_r_fagec",
"name":"Live births by mother's age and NUTS 2 region"
},
{
"code":"demo_r_frate2",
"name":"Fertility rates by age and NUTS 2 region"
},
{
"code":"demo_r_find2",
"name":"Fertility indicators by NUTS 2 region"
},
{
"code":"demo_r_find3",
"name":"Fertility indicators by NUTS 3 region"
}
],
"code":"reg_demfer",
"name":"Fertility"
},
{
"children":[
{
"code":"demo_r_deaths",
"name":"Deaths (total) by NUTS 3 region"
},
{
"code":"demo_r_magec3",
"name":"Deaths by age group, sex and NUTS 3 region"
},
{
"code":"demo_r_magec",
"name":"Deaths by age, sex and NUTS 2 region"
},
{
"code":"demo_r_minf",
"name":"Infant mortality by NUTS 2 region"
},
{
"code":"demo_r_minfind",
"name":"Infant mortality rates by NUTS 2 region"
},
{
"code":"demo_r_mlife",
"name":"Life table by NUTS 2 region"
},
{
"code":"demo_r_mlifexp",
"name":"Life expectancy by age, sex and NUTS 2 region"
}
],
"code":"reg_demmor",
"name":"Mortality"
},
{
"children":[
{
"children":[
{
"children":[
{
"code":"cens_11ag_r3",
"name":"Population by single year of age and NUTS 3 region"
}
],
"code":"cens_11rstr",
"name":"Population structure"
},
{
"children":[
{
"code":"cens_11ms_r3",
"name":"Population by marital status and NUTS 3 region"
},
{
"code":"cens_11fs_r3",
"name":"Population by family status and NUTS 3 region"
}
],
"code":"cens_11rfc",
"name":"Population by family characteristics"
},
{
"children":[
{
"code":"cens_11aed_r2",
"name":"Population by current activity status, educational attainment level and NUTS 2 region"
},
{
"code":"cens_11ao_r2",
"name":"Population by current activity status, occupation and NUTS 2 region"
},
{
"code":"cens_11an_r2",
"name":"Population by current activity status, NACE Rev. 2 activity and NUTS 2 region"
},
{
"code":"cens_11empo_r2",
"name":"Population by status in employment, occupation and NUTS 2 region"
},
{
"code":"cens_11empn_r2",
"name":"Population by status in employment, NACE Rev. 2 activity and NUTS 2 region"
}
],
"code":"cens_11rec",
"name":"Population by employment characteristics"
},
{
"children":[
{
"code":"cens_11ctzo_r2",
"name":"Population by group of citizenship, occupation and NUTS 2 region"
},
{
"code":"cens_11cobe_r2",
"name":"Population by group of country of birth, educational attainment level and NUTS 2 region"
},
{
"code":"cens_11coba_r2",
"name":"Population by group of country of birth, current activity status and NUTS 2 region"
},
{
"code":"cens_11cobo_r2",
"name":"Population by group of country of birth, occupation and NUTS 2 region"
},
{
"code":"cens_11arco_r2",
"name":"Population by period of arrival in the country, country of birth and NUTS 2 region"
}
],
"code":"cens_11rmc2",
"name":"Population by migration characteristics"
}
],
"code":"cens_11rdp2",
"name":"Data on persons"
},
{
"children":[
{
"code":"cens_11fts_r3",
"name":"Families by type, size and NUTS 3 region"
},
{
"code":"cens_11htts_r2",
"name":"Private households by type, tenure status and NUTS 2 region"
}
],
"code":"cens_11rdf",
"name":"Data on families and households"
},
{
"children":[
{
"code":"cens_11hou_r2",
"name":"Population by housing arrangement and NUTS 2 region"
},
{
"code":"cens_11dwob_r3",
"name":"Conventional dwellings by occupancy status, type of building and NUTS 3 region"
}
],
"code":"cens_11rdd",
"name":"Data on dwellings and housing arrangements"
}
],
"code":"reg_cens_11r",
"name":"Census 2011 round"
},
{
"children":[
{
"children":[
{
"code":"cens_01rsctz",
"name":"Population by sex, citizenship and NUTS 3 regions"
}
],
"code":"cens_01rstr",
"name":"Population structure"
},
{
"children":[
{
"code":"cens_01rapop",
"name":"Population by sex, age group, current activity status and NUTS 3 regions"
},
{
"code":"cens_01ramigr",
"name":"Total and active population by sex, age, employment status, residence one year prior to the census and NUTS 3 regions"
},
{
"code":"cens_01ractz",
"name":"Employed persons aged 15 and over by sex, citizenship, economic activity (NACE Rev. 1), status in employment and NUTS 3 regions"
}
],
"code":"cens_01ract",
"name":"Active population"
},
{
"children":[
{
"code":"cens_01reisco",
"name":"Employed persons by sex, age group, educational attainment level, occupation (ISCO-88) and NUTS 3 regions"
},
{
"code":"cens_01rews",
"name":"Population by sex, age group, educational attainment level, current activity status and NUTS 3 regions"
}
],
"code":"cens_01redu",
"name":"Educational attainment level"
},
{
"children":[
{
"code":"cens_01rhtype",
"name":"Population by sex, age group, household status and NUTS 3 regions"
},
{
"code":"cens_01rhsize",
"name":"Population by sex, age group, size of household and NUTS 3 regions"
},
{
"code":"cens_01rheco",
"name":"Private households by composition, size and NUTS 3 regions"
},
{
"code":"cens_01rhagchi",
"name":"Private households by composition, age group of children and NUTS 3 regions"
}
],
"code":"cens_01rhou",
"name":"Households"
},
{
"children":[
{
"code":"cens_01rdhh",
"name":"Dwellings by type of housing, building and NUTS 3 regions"
},
{
"code":"cens_01rdbuild",
"name":"Persons by type of building and NUTS 3 regions"
}
],
"code":"cens_01rdws",
"name":"Dwellings"
}
],
"code":"reg_cens_01r",
"name":"Census 2001 round"
}
],
"code":"reg_dem",
"name":"Regional demographic statistics"
},
{
"children":[
{
"children":[
{
"code":"nama_10r_2gdp",
"name":"Gross domestic product (GDP) at current market prices by NUTS 2 regions"
},
{
"code":"nama_10r_3popgdp",
"name":"Average annual population to calculate regional GDP data (thousand persons) by NUTS 3 regions"
},
{
"code":"nama_10r_3gdp",
"name":"Gross domestic product (GDP) at current market prices by NUTS 3 regions"
},
{
"code":"nama_10r_2gvagr",
"name":"Real growth rate of regional gross value added (GVA) at basic prices by NUTS 2 regions - percentage change on previous year"
}
],
"code":"reg_eco10gdp",
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
},
{
"children":[
{
"code":"nama_10r_3gva",
"name":"Gross value added at basic prices by NUTS 3 regions"
},
{
"code":"nama_10r_2gfcf",
"name":"Gross fixed capital formation by NUTS 2 regions"
},
{
"code":"nama_10r_2coe",
"name":"Compensation of employees by NUTS 2 regions"
},
{
"code":"nama_10r_3empers",
"name":"Employment (thousand persons) by NUTS 3 regions"
},
{
"code":"nama_10r_2emhrw",
"name":"Employment (thousand hours worked) by NUTS 2 regions"
},
{
"code":"nama_10r_2hhinc",
"name":"Income of households by NUTS 2 regions"
}
],
"code":"reg_eco10brch",
"name":"Branch and household accounts"
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
},
{
"children":[
{
"children":[
{
"code":"educ_uoe_enrp03",
"name":"Pupils enrolled in early childhood education by sex and NUTS2 regions"
},
{
"code":"educ_uoe_enrp06",
"name":"Pupils enrolled in primary education by sex and NUTS2 regions"
},
{
"code":"educ_uoe_enrs03",
"name":"Pupils enrolled in lower-secondary education by programme orientation, sex and NUTS2 regions"
},
{
"code":"educ_uoe_enrs06",
"name":"Pupils enrolled in upper secondary education by programme orientation, sex and NUTS2 regions"
},
{
"code":"educ_uoe_enrs09",
"name":"Pupils enrolled in post-secondary non-tertiary education by programme orientation, sex and NUTS2 regions"
},
{
"code":"educ_uoe_enrt05",
"name":"Ratio of the proportion of tertiary students over the propotion of the population by NUTS1 and NUTS2 regions"
},
{
"code":"educ_uoe_enrt06",
"name":"Students enrolled in tertiary education by education level, programme orientation, sex and NUTS2 regions"
},
{
"code":"educ_uoe_enra11",
"name":"Pupils and students enrolled by education level, sex and NUTS2 regions"
},
{
"code":"educ_uoe_enra12",
"name":"Pupils and students enrolled by sex, age and NUTS2 regions"
},
{
"code":"educ_uoe_enra13",
"name":"Distribution of pupils and students enrolled in general and vocational programmes by education level and NUTS2 regions"
},
{
"code":"educ_uoe_enra14",
"name":"Participation rates of selected age groups in education at regional level"
},
{
"code":"educ_uoe_enra15",
"name":"Participation rates in selected education levels at regional level"
}
],
"code":"reg_educ_11",
"name":"Regional education statistics - ISCED 2011"
},
{
"children":[
{
"code":"educ_renrlrg1",
"name":"Students by level of education, orientation, sex and NUTS 2 regions"
},
{
"code":"educ_renrlrg3",
"name":"Students by age, sex and NUTS 2 regions"
},
{
"code":"educ_regind",
"name":"Education indicators by NUTS 2 regions"
}
],
"code":"reg_educ_97",
"name":"Regional education statistics - ISCED 1997"
},
{
"code":"trng_lfse_04",
"name":"Participation rate in education and training (last 4 weeks) by NUTS 2 regions"
},
{
"code":"edat_lfse_04",
"name":"Population aged 25-64 by educational attainment level, sex and NUTS 2 regions (%)"
},
{
"code":"edat_lfse_12",
"name":"Population aged 30-34 by educational attainment level, sex and NUTS 2 regions (%)"
},
{