-
Notifications
You must be signed in to change notification settings - Fork 12
/
indicators.json
4377 lines (4377 loc) · 200 KB
/
indicators.json
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
{
"indicators": [
{
"goal": 1,
"targets": {
"primary-target": "1.1",
"other-targets": "2.3, 1.2, 8.5"
},
"indicator": "1.1.1",
"title": "Proportion of population below international poverty line disaggregated by sex and age group and employment status (or: Proportion of employed people living below the international poverty line)",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "modified-Aug2015, Nov2015-green",
"leads": "World Bank and ILO",
"data-sources": "Household surveys (LFS, HIES, LSMS, Integrated HH surveys, etc.)",
"available": "Tier I",
"category": ""
},
{
"goal": 1,
"targets": {
"primary-target": "1.2",
"other-targets": "1.1, 8.5"
},
"indicator": "1.2.1",
"title": "Proportion of population living below national poverty line, disaggregated by sex and age group",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Aug2015, Nov2015-green",
"leads": "World Bank; Data availability: Unisex: Data available for all countries that have household income or consumption surveys. SPC: data are widely available and used by Pacific Island countries, most of which have by now two data points; ILO: working poverty available by employment status for 44 countries;",
"data-sources": "Household surveys",
"available": "Tier I",
"category": ""
},
{
"goal": 1,
"targets": {
"primary-target": "1.2",
"other-targets": ""
},
"indicator": "1.2.2",
"title": "Proportion of men, women and children of all ages living in poverty in all its dimensions according to national definitions",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Nov2015-green",
"leads": "",
"data-sources": "",
"available": "",
"category": ""
},
{
"goal": 1,
"targets": {
"primary-target": "1.3",
"other-targets": "5.4, 8.5, 8.8, 10.4"
},
"indicator": "1.3.1",
"title": "Percentage of the population covered by social protection floors/systems, disaggregated by sex, and distinguishing children, unemployed, old age, people with disabilities, pregnant women/new-borns, work injury victims, poor and vulnerable",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "modified-Aug2015, Nov2015-green",
"leads": "Responsible entity: ILO. Availability: Information on old age coverage for 175 countries; on jobless support for 79 countries; on disability for 171 countries; on maternity for 139 countries; on child benefits for 109 countries; on occupational injury coverage for 172 countries. Also responsible: OECD.",
"data-sources": "Social Security administrative data consolidated by the ILO Social Security Inquiry.",
"available": "Tier II",
"category": ""
},
{
"goal": 1,
"targets": {
"primary-target": "1.4",
"other-targets": "1.2, 3.1, 3.2, 3.7, 3.8, 4.1, 4.2, 4.5, 4.6, 5.6, 6.1, 6.2, 7.1, 11.1"
},
"indicator": "1.4.1",
"title": "Proportion of the population living in households with access to basic services.",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Aug2015, Dec2015-grey",
"leads": "World Bank, UNDP, UNICEF",
"data-sources": "MICS and DHS; household surveys",
"available": "Tier II",
"category": ""
},
{
"goal": 1,
"targets": {
"primary-target": "1.5",
"other-targets": "11.5, 13.1, 14.2, 15.3"
},
"indicator": "1.5.1",
"title": "Number of deaths, missing people, injured, relocated or evacuated due to disasters per 100,000 people.",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Aug2015, Dec2015-grey",
"leads": "UNISDR",
"data-sources": "National Disaster Loss Databases, 85 (will be more than 115 by 2016)",
"available": "Tier II",
"category": ""
},
{
"goal": 1,
"targets": {
"primary-target": "1.a",
"other-targets": "3.1, 3.2, 3.3, 3.4, 3.7, 3.8, 4.1, 4.2, 4.3, 4.6, 5.6"
},
"indicator": "1.a.1",
"title": "Percentage of resources allocated by the government directly to poverty reduction programmes",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "modified-Aug2015, Nov2015-green",
"leads": "World Bank",
"data-sources": "",
"available": "Tier III",
"category": ""
},
{
"goal": 1,
"targets": {
"primary-target": "1.a",
"other-targets": ""
},
"indicator": "1.a.2",
"title": "Spending on essential services (education, health and social protection) as % of total government spending",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Nov2015-green",
"leads": "",
"data-sources": "",
"available": "",
"category": ""
},
{
"goal": 1,
"targets": {
"primary-target": "1.b",
"other-targets": "1.b, 13.2, 15.9"
},
"indicator": "1.b.1",
"title": "Number of national action plans related to multi-lateral environmental agreements that support accelerated investment in actions that eradicate poverty and sustainably use natural resources.",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Aug2015, Dec2015-grey",
"leads": "INFORMEA (www.informea.org). Information currently available for more than 160 countries",
"data-sources": "Data on all national action plans for MEAs can be found in INFORMEA, which in turn draws upon the data from individual MEAs such as the National Biodiversity Strategy and Action Plans (http://www.bipindicators.net/statusofNBSAPs and http://www.cbd.int/nbsap/)",
"available": "Tier I",
"category": ""
},
{
"goal": 2,
"targets": {
"primary-target": "2.1",
"other-targets": ""
},
"indicator": "2.1.1",
"title": "Prevalence of undernourishment",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Aug2015, Nov2015-green",
"leads": "FAO - Consistent time series for the indicator exist from 1990-92 for about 140 countries. The indicator is regularly reported in the annual State of Food Insecurity in the World Report published by FAO, IFAD and WFP since 1999 and in the Millennium Development Goal Report of the UN Statistics Division. Data on the indicators are published on the FAO Statistics website, at http://www.fao.org/economic/ess/ess-fs/ess-fadata/it/#.VM89cGjF-VM and updated every year.",
"data-sources": "The FAO methodology combines available micro-data on food consumption derived from surveys with macro-data from food balance sheets. The ability of the indicator to approximate access to food depends upon the extent to which existing data allow characterizing effectively the probability distribution of habitual food consumption in the reference population.",
"available": "Tier I",
"category": ""
},
{
"goal": 2,
"targets": {
"primary-target": "2.1",
"other-targets": "2.2, 3.1, 3.2."
},
"indicator": "2.1.2",
"title": "Prevalence of population with moderate or severe food insecurity, based on the Food Insecurity Experience Scale (FIES)",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Aug2015, Nov2015-green",
"leads": "FAO can ensure global coverage (about 150 countries every year covering more than 95% of the world population) annually. For countries that regularly use similar scales, national data will be used to inform the indicators for global monitoring. FAO provides the methodology for calibrating all measures against the common, global reference. Indicators values will be disseminated annually by FAO.",
"data-sources": "For the FIES: FAO and National Data. Data are collected annually by FAO for about 150 countries through the Food Insecurity Experience Scale module included in the Gallup World Poll, starting from 2014. A number of countries already use similar tools for national food insecurity assessment (e.g., HFSSM in the US and Canada; EMSA in Mexico; EBIA in Brazil; ELCSA in Guatemala.) Data collected through these tools may be used to inform an assessment that would be comparable with the ones obtained by FAO using the FIES in other countries. Over time, ownership of the FIES indicators will be transferred to countries that may start producing their own data. FCS data is collected around the world by WFP, NGOs, and government partners are often collected within the context of larger/broader food security monitoring systems (FSMS). FSMS surveys and associated household questionnaires typically include a number of core modules; household demographics, income sources, expenditures, food consumption and food sources, coping strategies and shocks. A typical completed FSMS household questionnaire, if collected using a conventional 'face-to-face' (i.e. on site enumerator and respondent) approach, costs approximately $30. For the purpose of providing a rough estimate of the cost and feasibility of collecting only the FCS data together with the standard household demographic data, we estimate the cost at approximately $15 to $20 per household using the conventional face-to-face approach for data collection. See attached metadata for a more complete explanation.",
"available": "Tier II",
"category": ""
},
{
"goal": 2,
"targets": {
"primary-target": "2.2",
"other-targets": ""
},
"indicator": "2.2.1",
"title": "Prevalence of stunting (height for age <-2 SD from the median of the WHO Child Growth Standards) among children under five years of age",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Aug2015, Nov2015-green",
"leads": "UNICEF, WHO, World Bank joint dataset (145 countries)",
"data-sources": "MICS, DHS and other national household surveys",
"available": "Tier I",
"category": ""
},
{
"goal": 2,
"targets": {
"primary-target": "2.2",
"other-targets": ""
},
"indicator": "2.2.2",
"title": "Prevalence of wasting",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Nov2015-green",
"leads": "",
"data-sources": "",
"available": "",
"category": ""
},
{
"goal": 2,
"targets": {
"primary-target": "2.3",
"other-targets": ""
},
"indicator": "2.3.1",
"title": "Volume of production per labour unit (measured in constant USD), by classes of farming/pastoral/forestry enterprise size",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "modified-Aug2015, Nov2015-green",
"leads": "FAO and the World bank. Data to compute the indicator for agricultural producers are currently available for nine developing countries through LSMS-ISA. When the AGRIS program will be in operation, indicators will be published through FAOSTAT.",
"data-sources": "National enterprise surveys. For agriculture, specialized farm surveys , or integrated household surveys including an agricultural module already exist (eg., LSMS-ISA, Integrated Surveys for Agriculture) FAO and the World Bank are working to define a new Agricultural and Rural Integrated Survey (AGRIS) program, that may be used as a source of data to inform this and many others indicators of relevance for the SDG that depend on farm/enterprise level information.",
"available": "Tier II",
"category": ""
},
{
"goal": 2,
"targets": {
"primary-target": "2.3",
"other-targets": ""
},
"indicator": "2.3.2",
"title": "Total Factor Productivity",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Dec2015-grey",
"leads": "",
"data-sources": "",
"available": "",
"category": ""
},
{
"goal": 2,
"targets": {
"primary-target": "2.4",
"other-targets": "15.3.2"
},
"indicator": "2.4.1",
"title": "Percentage of agricultural area under sustainable agricultural practices.",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Aug2015, Nov2015-green, Dec2015-grey",
"leads": "FAO is carrying on a consultation process to develop an indicator on 'Area under sustainable land management', to be developed by the end of 2015. The process will be within the framework of the 'World Overview of Conservation Approaches and Technologies' (WOCAT) partnership and in the support of UNCCD implementation and will support countries to assess, map and monitor SLM as well as land degradation.",
"data-sources": "At global level, currently there is no data available. However many if not most of the countries record areas which are the object of practices contributing to environmental sustainability under various schemes, either of a regulatory nature, like protected areas for instance, or as part of a subsidies scheme or in a payment for environmental services scheme or as part of voluntary standards, public or private. Countries are also preparing, as part of national reports for the state of the world biodiversity for food and agriculture, statistics on practices contributing to biodiversity, most of which have a broader positive impact on the environment. Moreover, many countries are participating in internationally established strategic frameworks which promote the collection of data at country level. Hence, the data for computing the indicator should be collected through the records that are held in the process of the country participation to those schemes and strategies.",
"available": "Tier II",
"category": ""
},
{
"goal": 2,
"targets": {
"primary-target": "2.4",
"other-targets": ""
},
"indicator": "2.4.2",
"title": "Percent of agricultural households using irrigation systems compared to all agricultural households",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Nov2015-green, Dec2015-grey",
"leads": "",
"data-sources": "",
"available": "",
"category": ""
},
{
"goal": 2,
"targets": {
"primary-target": "2.4",
"other-targets": ""
},
"indicator": "2.4.3",
"title": "Percent of agricultural households using eco-friendly fertilizers compared to all agricultural households using fertilizers",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Nov201, Dec2015-grey",
"leads": "",
"data-sources": "",
"available": "",
"category": ""
},
{
"goal": 2,
"targets": {
"primary-target": "2.5",
"other-targets": "15.5"
},
"indicator": "2.5.1",
"title": "Ex-Situ Crop Collections Enrichment index",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Aug2015, Dec2015-grey",
"leads": "FAO - The indicator has been calculated by FAO in 2008 and 2014. It will be calculated again in 2015 and then periodically every 2-3 years based on data reported by member countries to the Commission of Genetic Resources of Food and Agriculture. Country data are stored in WIEWS, the FAO PGRFA information system.",
"data-sources": "Data are reported by member countries to the Commission of Genetic Resources of Food and Agriculture on the implementation of the Second Global Plan of Action for PGRFA, as agreed at CGRFA-15",
"available": "Tier I",
"category": ""
},
{
"goal": 2,
"targets": {
"primary-target": "2.5",
"other-targets": ""
},
"indicator": "2.5.2",
"title": "Percentage of local crops and breeds and their wild relatives, classified as being at-risk, not at-risk or unknown level of risk of extinction",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Dec2015-grey",
"leads": "",
"data-sources": "",
"available": "",
"category": ""
},
{
"goal": 2,
"targets": {
"primary-target": "2.a",
"other-targets": ""
},
"indicator": "2.a.1",
"title": "The Agriculture Orientation Index (AOI) for Government Expenditures",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Aug2015, Dec2015-grey",
"leads": "FAO - Coverage is high, with 139 countries included. However, some countries have not provided data for all 13 years from 2001 to 2012, and the level of government to which expenditures pertain can differ.",
"data-sources": "FAO collects, in collaboration with the IMF, data on Government expenditure in Agriculture. The annual data and indicator value compiled by the Food and Agriculture Organization of the UN (FAO), can be found on the FAOSTAT domain at: http://faostat3.fao.org/download/I/IG/E, covering the periods 2001-2012. The underlying annual data is official country data, from 2001 to 2012, reported by countries through a questionnaire jointly developed by FAO and the IMF using the COFOG and GFSM classifications. The database currently covers 139 countries.",
"available": "Tier I",
"category": ""
},
{
"goal": 2,
"targets": {
"primary-target": "2.b",
"other-targets": ""
},
"indicator": "2.b.1",
"title": "Percent change in Import and Export tariffs on agricultural products",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Aug2015, Nov2015-green",
"leads": "WTO",
"data-sources": "WTO",
"available": "Tier I",
"category": ""
},
{
"goal": 2,
"targets": {
"primary-target": "2.b",
"other-targets": ""
},
"indicator": "2.b.2",
"title": "Agricultural Export Subsidies",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Aug2015, Nov2015-green",
"leads": "OECD",
"data-sources": "OECD",
"available": "Tier I",
"category": ""
},
{
"goal": 2,
"targets": {
"primary-target": "2.c",
"other-targets": ""
},
"indicator": "2.c.1",
"title": "Indicator of (food) Price Anomalies (IPA)",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Aug2015, Dec2015-grey",
"leads": "FAO",
"data-sources": "",
"available": "Tier II",
"category": ""
},
{
"goal": 3,
"targets": {
"primary-target": "3.1",
"other-targets": ""
},
"indicator": "3.1.1",
"title": "Maternal deaths per 100,000 live births",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Aug2015, Nov2015-green",
"leads": "Maternal Mortality Expert and Interagency Group (MMEIG), led by WHO with UNICEF, UNFPA, World Bank, UNDESA; data - all countries, global database available; bi-annual global reporting",
"data-sources": "CRVS, household surveys, censuses, health facility data, RAMOS, confidential enquiries, modelling",
"available": "Tier I",
"category": ""
},
{
"goal": 3,
"targets": {
"primary-target": "3.1",
"other-targets": "3.7, 3.8"
},
"indicator": "3.1.2",
"title": "Proportion of births attended by skilled health personnel",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Aug2015, Nov2015-green",
"leads": "UNICEF and WHO",
"data-sources": "Household Surveys (will also start producing modelled time series from 2016)",
"available": "Tier I",
"category": ""
},
{
"goal": 3,
"targets": {
"primary-target": "3.2",
"other-targets": ""
},
"indicator": "3.2.1",
"title": "Under-five mortality rate (deaths per 1,000 live births)",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Aug2015, Nov2015-green",
"leads": "UN Interagency Group on Child Mortality Estimation (IGME), led by UNICEF and WHO, with UNDESA and World Bank; 3.2.1: Data are available for 196 countries and territories for the period 1990-2014 for 3.2.1, and 191 countries for 3.2.2. For 196 countries and territories there are at least two available data points during this time period for 3.2.1, and for 186 countries for 3.2.2.",
"data-sources": "Estimates by The UN Inter-agency Group for Child Mortality Estimation (UN IGME) based on data from household surveys, censuses, vital registration systems, etc.",
"available": "Tier I",
"category": ""
},
{
"goal": 3,
"targets": {
"primary-target": "3.2",
"other-targets": ""
},
"indicator": "3.2.2",
"title": "Neonatal mortality rate (deaths per 1,000 live births)",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Aug2015, Nov2015-green",
"leads": "UNICEF, WHO, UN Population Division, World Bank",
"data-sources": "Estimates by The UN Inter-agency Group for Child Mortality Estimation (UN IGME) based on data from household surveys, censuses, vital registration systems, etc.",
"available": "Tier I",
"category": ""
},
{
"goal": 3,
"targets": {
"primary-target": "3.3",
"other-targets": "3.2, 3.1, 10.2, 6.1, 6.2"
},
"indicator": "3.3.1",
"title": "Number of new HIV infections per 1,000 uninfected population (by age, sex, and key populations)",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "modified-Aug2015, Nov2015-green",
"leads": "UNAIDS; 158 countries; Updated annually",
"data-sources": "Country owned, internationally-consistent modelled estimates",
"available": "Tier I",
"category": ""
},
{
"goal": 3,
"targets": {
"primary-target": "3.3",
"other-targets": ""
},
"indicator": "3.3.2",
"title": "TB incidence per 1,000 persons per year",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Aug2015, Nov2015-green",
"leads": "WHO; data - all countries; global database available; annual reporting",
"data-sources": "CRVS, household surveys, health facility data, modelling",
"available": "Tier I",
"category": ""
},
{
"goal": 3,
"targets": {
"primary-target": "3.3",
"other-targets": ""
},
"indicator": "3.3.3",
"title": "Malaria incident cases per 1,000 person per year",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Aug2015, Nov2015-green",
"leads": "WHO; data - all countries; global database available; annual reporting",
"data-sources": "Household surveys, health facility data, modelling",
"available": "Tier I",
"category": ""
},
{
"goal": 3,
"targets": {
"primary-target": "3.3",
"other-targets": ""
},
"indicator": "3.3.4",
"title": "Estimated number of new hepatitis B infections per 100,000 population in a given year",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Aug2015, Nov2015-green",
"leads": "WHO - data: estimates under development for all countries;",
"data-sources": "Household surveys, health facility data, madling",
"available": "Tier I",
"category": ""
},
{
"goal": 3,
"targets": {
"primary-target": "3.3",
"other-targets": ""
},
"indicator": "3.3.5",
"title": "Number of people requiring interventions against neglected tropical diseases",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Nov2015-green",
"leads": "",
"data-sources": "",
"available": "",
"category": ""
},
{
"goal": 3,
"targets": {
"primary-target": "3.4",
"other-targets": ""
},
"indicator": "3.4.1",
"title": "Probability of dying of cardiovascular disease, cancer, diabetes, or chronic respiratory disease",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "modified-Aug2015, Nov2015-green",
"leads": "WHO; data - all countries",
"data-sources": "CRVS, household surveys",
"available": "Tier II",
"category": ""
},
{
"goal": 3,
"targets": {
"primary-target": "3.4",
"other-targets": ""
},
"indicator": "3.4.2",
"title": "Suicide mortality rate",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Nov2015-green",
"leads": "",
"data-sources": "",
"available": "",
"category": ""
},
{
"goal": 3,
"targets": {
"primary-target": "3.5",
"other-targets": ""
},
"indicator": "3.5.1",
"title": "Coverage of treatment interventions (pharmacological, psychosocial and rehabilitation and aftercare services) for substance abuse disorders",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Aug2015, Nov2015-green",
"leads": "WHO; data - all countries; global database available; regular global monitoring report; UNODC for drug-related treatments, all countries are mandated to report as a yearly cycle (Response Rate=60-65% of MS)",
"data-sources": "Administrative records; Annual Report Questionnaire Part II Comprehensive Approach to Drug Demand Reduction and Supply as mandated by the Drug Conventions and compiled annually by UNODC; WHO, Global Information System on Alcohol and Health (GISAH); WHO, ATLAS-SU: Resources for Treatment and Prevention of Substance Use Disorders",
"available": "Tier II",
"category": ""
},
{
"goal": 3,
"targets": {
"primary-target": "3.5",
"other-targets": ""
},
"indicator": "3.5.2",
"title": "Harmful use of alcohol defined according to national context as alcohol per capita (15+ years old) consumption within a calendar year in litres of pure alcohol",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Nov2015-green",
"leads": "",
"data-sources": "",
"available": "",
"category": ""
},
{
"goal": 3,
"targets": {
"primary-target": "3.6",
"other-targets": "11.2"
},
"indicator": "3.6.1",
"title": "Number of road traffic fatal injury deaths per 100,000 population (age-standardized)",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Aug2015, Nov2015-green",
"leads": "WHO and UN Road Safety Collaboration data collation; data - all countries; global database available; annual updating, regular global report",
"data-sources": "CRVS, household surveys, administrative records",
"available": "Tier I",
"category": ""
},
{
"goal": 3,
"targets": {
"primary-target": "3.7",
"other-targets": ""
},
"indicator": "3.7.1",
"title": "Percentage of women of reproductive age (15-49 years) who have their need for family planning satisfied with modern methods",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Aug2015, Nov2015-green",
"leads": "UNDESA, UNFPA; Data are available for 138 countries and territories for the period 1990-2014; 90 countries and territories have at least two available data points. 183 countries and territories have data on contraceptive prevalence (one component of this indicator); 156 countries and territories have at least two data points.",
"data-sources": "Household surveys",
"available": "Tier I",
"category": ""
},
{
"goal": 3,
"targets": {
"primary-target": "3.7",
"other-targets": "5.3, 5.6"
},
"indicator": "3.7.2",
"title": "Adolescent birth rate (10-14; 15-19) per 1,000 women in that age group",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Aug2015, Nov2015-green",
"leads": "UNDESA; Data for the adolescent birth rate (15-19) are available for 225 countries and territories for the period 1990-2014; 223 countries and territories have at least two data points. Data on births to mothers under the age of 15 are available for at least 102 countries and territories for the period 2000-2014, UNFPA.",
"data-sources": "CRVS, household surveys, censuses",
"available": "Tier I",
"category": ""
},
{
"goal": 3,
"targets": {
"primary-target": "3.8",
"other-targets": "1.2, 10.4"
},
"indicator": "3.8.1",
"title": "Coverage of tracer interventions (e.g. child full immunization, ARV therapy, TB treatment, hypertension treatment, skilled attendant at birth, etc.)",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Aug2015, Dec2015-grey",
"leads": "WHO and World Bank; data - all countries; WHO global database for tracer indicators available; biannual global progress report on UHC, first in 2015.",
"data-sources": "household surveys and facility data",
"available": "Tier II",
"category": ""
},
{
"goal": 3,
"targets": {
"primary-target": "3.8",
"other-targets": ""
},
"indicator": "3.8.2",
"title": "Fraction of the population protected against catastrophic/impoverishing out-of-pocket health expenditure",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Aug2015, Dec2015-grey",
"leads": "WHO and World Bank; data - 89 countries; global database under development; biannual global progress report on UHC, first in 2015",
"data-sources": "Household surveys",
"available": "Tier II",
"category": ""
},
{
"goal": 3,
"targets": {
"primary-target": "3.9",
"other-targets": "6.3, 11.6, 12.4"
},
"indicator": "3.9.1",
"title": "Population in urban areas exposed to outdoor air pollution levels above WHO guideline values",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Aug2015",
"leads": "WHO; data - 91 countries in global database; biannual updates planned; OECD also has geospatially-based measures for air pollution exposure with significant granularity at local level. It is rather straightforward to extend country coverage to a global level.",
"data-sources": "Administrative records; satellite data",
"available": "Tier I",
"category": ""
},
{
"goal": 3,
"targets": {
"primary-target": "3.9",
"other-targets": ""
},
"indicator": "3.9.2",
"title": "Mortality rate attributed to hazardous chemicals, water and soil pollution and contamination",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Dec2015-grey",
"leads": "",
"data-sources": "",
"available": "",
"category": ""
},
{
"goal": 3,
"targets": {
"primary-target": "3.a",
"other-targets": ""
},
"indicator": "3.a.1",
"title": "Tobacco use among persons 18 years and older (Age-standardized prevalence of current tobacco use among persons aged 18 years and older)",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Aug2015, Nov2015-green",
"leads": "WHO; data - all countries; global database available; regular global reporting",
"data-sources": "Household surveys",
"available": "Tier I",
"category": ""
},
{
"goal": 3,
"targets": {
"primary-target": "3.b",
"other-targets": ""
},
"indicator": "3.b.1",
"title": "Proportion of population with access to affordable essential medicines on a sustainable basis",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Aug2015, Nov2015-green",
"leads": "WHO; data - all countries",
"data-sources": "Facility surveys",
"available": "Tier I",
"category": ""
},
{
"goal": 3,
"targets": {
"primary-target": "3.b",
"other-targets": ""
},
"indicator": "3.b.2",
"title": "Total net official development assistance to the medical research and basic health sectors",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Nov2015-green",
"leads": "",
"data-sources": "",
"available": "",
"category": ""
},
{
"goal": 3,
"targets": {
"primary-target": "3.c",
"other-targets": ""
},
"indicator": "3.c.1",
"title": "Health worker density and distribution",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Aug2015, Nov2015-green",
"leads": "WHO; data - all countries; global database available; annual updating",
"data-sources": "Census, household surveys, health facility data, administrative systems",
"available": "Tier I",
"category": ""
},
{
"goal": 3,
"targets": {
"primary-target": "3.d",
"other-targets": ""
},
"indicator": "3.d.1",
"title": "Percentage of attributes of 13 core capacities that have been attained at a specific point in time",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Aug2015, Nov2015-green",
"leads": "WHO; data - all countries; global database available; regular updating",
"data-sources": "Country report and independent assessment",
"available": "Tier II",
"category": ""
},
{
"goal": 4,
"targets": {
"primary-target": "4.1",
"other-targets": "1.2, 1.4, 1.5, 2.1, 2.2, 2.3, 3.1, 3.3, 3.4, 3.7, 3.c, 5.3, 5.4, 5.5, 5.b,7.a, 8.6, 8.7, 8.b, 10.2, 10.6, 12.8, 13.3, 13.b, 16.a, 4.5"
},
"indicator": "4.1.1",
"title": "Percentage of children/young people at the end of each level of education achieving at least a minimum proficiency level in (a) reading and (b) mathematics. (Disaggregations: sex, location, wealth (and others where data are available))",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Aug2015, Nov2015-green",
"leads": "UNESCO-UIS will form a broad technical group including Member States to develop and maintain measures. UNESCO-UIS will compile data from learning assessments conducted by other organizations and transform them to the common learning scale.",
"data-sources": "Various international (eg PIRLS, PISA, TIMSS), regional learning assessments (eg LLECE, SACMEQ, PASEC) national and citizen-led learning assessments. Data are available at the primary level for about 50 countries from PIRLS and at lower secondary level for about 70 countries from PISA and 65 countries from TIMSS. Once the learning scale has been created the existing results can be reported according to a common scale. This is expected to take 3-5 years to achieve.",
"available": "Tier III",
"category": ""
},
{
"goal": 4,
"targets": {
"primary-target": "4.2",
"other-targets": "1.4, 4.5"
},
"indicator": "4.2.1",
"title": "Percentage of children under 5 years of age who are developmentally on track in health, learning and psychosocial well-being (Disaggregations: sex, location, wealth (and others where data are available))",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Aug2015, Nov2015-green",
"leads": "UNESCO-UIS will compile data from household surveys conducted by other organizations.",
"data-sources": "One possible source is the ECDI from MICS but other sources should be explored in order to ensure that the range of characteristics and their levels are relevant in all parts of the world. This is expected to take 3-5 years to achieve. The ECDI is currently available for about 30 countries.",
"available": "Tier III",
"category": ""
},
{
"goal": 4,
"targets": {
"primary-target": "4.2",
"other-targets": ""
},
"indicator": "4.2.2",
"title": "Participation rate in organized learning (one year before the official primary entry age)",
"data": {
"url": "",
"format": "",
"meta": ""
},
"source": "Nov2015-green",
"leads": "UNESCO-UIS",
"data-sources": "UOE questionnaire- UNESCO-UIS",
"available": "",
"category": ""
},
{
"goal": 4,
"targets": {
"primary-target": "4.3",
"other-targets": "1.4, 4.4, 5.b, 8.5, 9.2"
},
"indicator": "4.3.1",
"title": "Participation rate of adults in formal and non-formal education and training in the last 12 months",
"data": {
"url": "",