-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
variables_to_clean.json
7363 lines (7363 loc) · 245 KB
/
variables_to_clean.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
{
"meta": {
"notes": "This file contains an array of WB WDI variables to upsert to SQL. Also contains old metadata for these variables, as copied from previous versions of these variables. Any variables NOT in this file will be ignored."
},
"variables": [
{
"name": "ARI treatment (% of children under 5 taken to a health provider)",
"code": "SH.STA.ARIC.ZS",
"old": {
"unit": "% of children under 5 taken to a health provider",
"shortUnit": "%",
"display": {}
}
},
{
"name": "Access to clean fuels and technologies for cooking (% of population)",
"code": "EG.CFT.ACCS.ZS",
"old": {
"unit": "% of population",
"shortUnit": "%",
"display": {
"name": "Access to clean fuels and technologies for cooking",
"unit": "% of population"
}
}
},
{
"name": "Access to electricity (% of population)",
"code": "EG.ELC.ACCS.ZS",
"old": {
"unit": "% of population",
"shortUnit": "%",
"display": {
"unit": "Not applicable"
}
}
},
{
"name": "Access to electricity, rural (% of rural population)",
"code": "EG.ELC.ACCS.RU.ZS",
"old": {
"unit": "% of rural population",
"shortUnit": "%",
"display": {
"unit": "Not applicable"
}
}
},
{
"name": "Access to electricity, urban (% of urban population)",
"code": "EG.ELC.ACCS.UR.ZS",
"old": {
"unit": "% of urban population",
"shortUnit": "%",
"display": {
"unit": "Percent"
}
}
},
{
"name": "Account ownership at a financial institution or with a mobile-money-service provider (% of population ages 15+)",
"code": "FX.OWN.TOTL.ZS",
"old": {
"unit": "% age 15+",
"shortUnit": "%",
"display": {}
}
},
{
"name": "Account ownership at a financial institution or with a mobile-money-service provider, female (% of population ages 15+)",
"code": "FX.OWN.TOTL.FE.ZS"
},
{
"name": "Account ownership at a financial institution or with a mobile-money-service provider, male (% of population ages 15+)",
"code": "FX.OWN.TOTL.MA.ZS"
},
{
"name": "Account ownership at a financial institution or with a mobile-money-service provider, older adults (% of population ages 25+)",
"code": "FX.OWN.TOTL.OL.ZS"
},
{
"name": "Account ownership at a financial institution or with a mobile-money-service provider, poorest 40% (% of population ages 15+)",
"code": "FX.OWN.TOTL.40.ZS"
},
{
"name": "Account ownership at a financial institution or with a mobile-money-service provider, primary education or less (% of population ages 15+)",
"code": "FX.OWN.TOTL.PL.ZS"
},
{
"name": "Account ownership at a financial institution or with a mobile-money-service provider, richest 60% (% of population ages 15+)",
"code": "FX.OWN.TOTL.60.ZS"
},
{
"name": "Account ownership at a financial institution or with a mobile-money-service provider, secondary education or more (% of population ages 15+)",
"code": "FX.OWN.TOTL.SO.ZS"
},
{
"name": "Account ownership at a financial institution or with a mobile-money-service provider, young adults (% of population ages 15-24)",
"code": "FX.OWN.TOTL.YG.ZS"
},
{
"name": "Adequacy of social insurance programs (% of total welfare of beneficiary households)",
"code": "PER_SI_ALLSI.ADQ_POP_TOT",
"old": {
"unit": "% of total welfare of beneficiary households",
"shortUnit": "%",
"display": {}
}
},
{
"name": "Adequacy of social protection and labor programs (% of total welfare of beneficiary households)",
"code": "PER_ALLSP.ADQ_POP_TOT"
},
{
"name": "Adequacy of social safety net programs (% of total welfare of beneficiary households)",
"code": "PER_SA_ALLSA.ADQ_POP_TOT",
"old": {
"unit": "% of total welfare of beneficiary households",
"shortUnit": "%",
"display": {}
}
},
{
"name": "Adequacy of unemployment benefits and ALMP (% of total welfare of beneficiary households)",
"code": "PER_LM_ALLLM.ADQ_POP_TOT",
"old": {
"unit": "% of total welfare of beneficiary households",
"shortUnit": "%",
"display": {}
}
},
{
"name": "Adjusted net enrollment rate, primary (% of primary school age children)",
"code": "SE.PRM.TENR",
"old": {
"unit": "% of primary school age children",
"shortUnit": "%",
"display": {}
}
},
{
"name": "Adjusted net enrollment rate, primary, female (% of primary school age children)",
"code": "SE.PRM.TENR.FE",
"old": {
"unit": "% of primary school age children",
"shortUnit": "%",
"display": {}
}
},
{
"name": "Adjusted net enrollment rate, primary, male (% of primary school age children)",
"code": "SE.PRM.TENR.MA",
"old": {
"unit": "% of primary school age children",
"shortUnit": "%",
"display": {}
}
},
{
"name": "Adjusted net national income (annual % growth)",
"code": "NY.ADJ.NNTY.KD.ZG"
},
{
"name": "Adjusted net national income (constant 2010 US$)",
"code": "NY.ADJ.NNTY.KD"
},
{
"name": "Adjusted net national income (current US$)",
"code": "NY.ADJ.NNTY.CD"
},
{
"name": "Adjusted net national income per capita (annual % growth)",
"code": "NY.ADJ.NNTY.PC.KD.ZG"
},
{
"name": "Adjusted net national income per capita (constant 2010 US$)",
"code": "NY.ADJ.NNTY.PC.KD"
},
{
"name": "Adjusted net national income per capita (current US$)",
"code": "NY.ADJ.NNTY.PC.CD"
},
{
"name": "Adjusted net savings, excluding particulate emission damage (% of GNI)",
"code": "NY.ADJ.SVNX.GN.ZS"
},
{
"name": "Adjusted net savings, excluding particulate emission damage (current US$)",
"code": "NY.ADJ.SVNX.CD",
"old": {
"unit": "current US$",
"shortUnit": "$",
"display": {
"unit": "Percentage"
}
}
},
{
"name": "Adjusted net savings, including particulate emission damage (% of GNI)",
"code": "NY.ADJ.SVNG.GN.ZS"
},
{
"name": "Adjusted net savings, including particulate emission damage (current US$)",
"code": "NY.ADJ.SVNG.CD"
},
{
"name": "Adjusted savings: carbon dioxide damage (% of GNI)",
"code": "NY.ADJ.DCO2.GN.ZS"
},
{
"name": "Adjusted savings: carbon dioxide damage (current US$)",
"code": "NY.ADJ.DCO2.CD"
},
{
"name": "Adjusted savings: consumption of fixed capital (% of GNI)",
"code": "NY.ADJ.DKAP.GN.ZS"
},
{
"name": "Adjusted savings: consumption of fixed capital (current US$)",
"code": "NY.ADJ.DKAP.CD"
},
{
"name": "Adjusted savings: education expenditure (% of GNI)",
"code": "NY.ADJ.AEDU.GN.ZS"
},
{
"name": "Adjusted savings: education expenditure (current US$)",
"code": "NY.ADJ.AEDU.CD"
},
{
"name": "Adjusted savings: energy depletion (% of GNI)",
"code": "NY.ADJ.DNGY.GN.ZS"
},
{
"name": "Adjusted savings: energy depletion (current US$)",
"code": "NY.ADJ.DNGY.CD"
},
{
"name": "Adjusted savings: gross savings (% of GNI)",
"code": "NY.ADJ.ICTR.GN.ZS"
},
{
"name": "Adjusted savings: mineral depletion (% of GNI)",
"code": "NY.ADJ.DMIN.GN.ZS"
},
{
"name": "Adjusted savings: mineral depletion (current US$)",
"code": "NY.ADJ.DMIN.CD"
},
{
"name": "Adjusted savings: natural resources depletion (% of GNI)",
"code": "NY.ADJ.DRES.GN.ZS"
},
{
"name": "Adjusted savings: net forest depletion (% of GNI)",
"code": "NY.ADJ.DFOR.GN.ZS"
},
{
"name": "Adjusted savings: net forest depletion (current US$)",
"code": "NY.ADJ.DFOR.CD"
},
{
"name": "Adjusted savings: net national savings (% of GNI)",
"code": "NY.ADJ.NNAT.GN.ZS"
},
{
"name": "Adjusted savings: net national savings (current US$)",
"code": "NY.ADJ.NNAT.CD"
},
{
"name": "Adjusted savings: particulate emission damage (% of GNI)",
"code": "NY.ADJ.DPEM.GN.ZS"
},
{
"name": "Adjusted savings: particulate emission damage (current US$)",
"code": "NY.ADJ.DPEM.CD"
},
{
"name": "Adolescent fertility rate (births per 1,000 women ages 15-19)",
"code": "SP.ADO.TFRT",
"old": {
"unit": "births per 1,000 women ages 15-19",
"shortUnit": "births",
"display": {}
}
},
{
"name": "Adolescents out of school (% of lower secondary school age)",
"code": "SE.SEC.UNER.LO.ZS"
},
{
"name": "Adolescents out of school, female (% of female lower secondary school age)",
"code": "SE.SEC.UNER.LO.FE.ZS"
},
{
"name": "Adolescents out of school, male (% of male lower secondary school age)",
"code": "SE.SEC.UNER.LO.MA.ZS"
},
{
"name": "Adults (ages 15+) and children (ages 0-14) newly infected with HIV",
"code": "SH.HIV.INCD.TL",
"old": {
"unit": "ages 0-14",
"shortUnit": null,
"display": {}
}
},
{
"name": "Adults (ages 15-49) newly infected with HIV",
"code": "SH.HIV.INCD"
},
{
"name": "Age dependency ratio (% of working-age population)",
"code": "SP.POP.DPND",
"old": {
"unit": "% of working-age population",
"shortUnit": "%",
"display": {}
}
},
{
"name": "Age dependency ratio, old (% of working-age population)",
"code": "SP.POP.DPND.OL",
"old": {
"unit": "% of working-age population",
"shortUnit": "%",
"display": {}
}
},
{
"name": "Age dependency ratio, young (% of working-age population)",
"code": "SP.POP.DPND.YG",
"old": {
"unit": "% of working-age population",
"shortUnit": "%",
"display": {}
}
},
{
"name": "Agricultural irrigated land (% of total agricultural land)",
"code": "AG.LND.IRIG.AG.ZS",
"old": {
"unit": "% of total agricultural land",
"shortUnit": "%",
"display": {
"unit": "Rate"
}
}
},
{
"name": "Agricultural land (% of land area)",
"code": "AG.LND.AGRI.ZS",
"old": {
"unit": "% of land area",
"shortUnit": "%",
"display": {
"unit": "Number"
}
}
},
{
"name": "Agricultural land (sq. km)",
"code": "AG.LND.AGRI.K2"
},
{
"name": "Agricultural machinery, tractors",
"code": "AG.AGR.TRAC.NO"
},
{
"name": "Agricultural machinery, tractors per 100 sq. km of arable land",
"code": "AG.LND.TRAC.ZS",
"old": {
"unit": "",
"shortUnit": null,
"display": {
"unit": "Number"
}
}
},
{
"name": "Agricultural methane emissions (% of total)",
"code": "EN.ATM.METH.AG.ZS"
},
{
"name": "Agricultural methane emissions (thousand metric tons of CO2 equivalent)",
"code": "EN.ATM.METH.AG.KT.CE"
},
{
"name": "Agricultural nitrous oxide emissions (% of total)",
"code": "EN.ATM.NOXE.AG.ZS"
},
{
"name": "Agricultural nitrous oxide emissions (thousand metric tons of CO2 equivalent)",
"code": "EN.ATM.NOXE.AG.KT.CE"
},
{
"name": "Agricultural raw materials exports (% of merchandise exports)",
"code": "TX.VAL.AGRI.ZS.UN"
},
{
"name": "Agricultural raw materials imports (% of merchandise imports)",
"code": "TM.VAL.AGRI.ZS.UN"
},
{
"name": "Agriculture, forestry, and fishing, value added (% of GDP)",
"code": "NV.AGR.TOTL.ZS"
},
{
"name": "Agriculture, forestry, and fishing, value added (annual % growth)",
"code": "NV.AGR.TOTL.KD.ZG"
},
{
"name": "Agriculture, forestry, and fishing, value added (constant 2010 US$)",
"code": "NV.AGR.TOTL.KD"
},
{
"name": "Agriculture, forestry, and fishing, value added (constant LCU)",
"code": "NV.AGR.TOTL.KN"
},
{
"name": "Agriculture, forestry, and fishing, value added (current LCU)",
"code": "NV.AGR.TOTL.CN"
},
{
"name": "Agriculture, forestry, and fishing, value added (current US$)",
"code": "NV.AGR.TOTL.CD"
},
{
"name": "Agriculture, forestry, and fishing, value added per worker (constant 2010 US$)",
"code": "NV.AGR.EMPL.KD"
},
{
"name": "Air transport, freight (million ton-km)",
"code": "IS.AIR.GOOD.MT.K1",
"old": {
"unit": "million ton-km",
"shortUnit": null,
"display": {
"unit": "%"
}
}
},
{
"name": "Air transport, passengers carried",
"code": "IS.AIR.PSGR",
"old": {
"unit": "",
"shortUnit": null,
"display": {}
}
},
{
"name": "Air transport, registered carrier departures worldwide",
"code": "IS.AIR.DPRT"
},
{
"name": "Alternative and nuclear energy (% of total energy use)",
"code": "EG.USE.COMM.CL.ZS"
},
{
"name": "Annual freshwater withdrawals, agriculture (% of total freshwater withdrawal)",
"code": "ER.H2O.FWAG.ZS",
"old": {
"unit": "% of total freshwater withdrawal",
"shortUnit": "%",
"display": {
"unit": "Percent"
}
}
},
{
"name": "Annual freshwater withdrawals, domestic (% of total freshwater withdrawal)",
"code": "ER.H2O.FWDM.ZS",
"old": {
"unit": "% of total freshwater withdrawal",
"shortUnit": "%",
"display": {
"unit": "Local currency"
}
}
},
{
"name": "Annual freshwater withdrawals, industry (% of total freshwater withdrawal)",
"code": "ER.H2O.FWIN.ZS",
"old": {
"unit": "% of total freshwater withdrawal",
"shortUnit": "%",
"display": {
"unit": "Percent"
}
}
},
{
"name": "Annual freshwater withdrawals, total (% of internal resources)",
"code": "ER.H2O.FWTL.ZS",
"old": {
"unit": "% of internal resources",
"shortUnit": "%",
"display": {
"unit": "Number"
}
}
},
{
"name": "Annual freshwater withdrawals, total (billion cubic meters)",
"code": "ER.H2O.FWTL.K3",
"old": {
"unit": "billion cubic meters",
"shortUnit": null,
"display": {
"unit": "Percent"
}
}
},
{
"name": "Annualized average growth rate in per capita real survey mean consumption or income, bottom 40% of population (%)",
"code": "SI.SPR.PC40.ZG",
"old": {
"unit": "%",
"shortUnit": "%",
"display": {}
}
},
{
"name": "Annualized average growth rate in per capita real survey mean consumption or income, total population (%)",
"code": "SI.SPR.PCAP.ZG"
},
{
"name": "Antiretroviral therapy coverage (% of people living with HIV)",
"code": "SH.HIV.ARTC.ZS",
"old": {
"unit": "% of people living with HIV",
"shortUnit": "%",
"display": {}
}
},
{
"name": "Antiretroviral therapy coverage for PMTCT (% of pregnant women living with HIV)",
"code": "SH.HIV.PMTC.ZS",
"old": {
"unit": "% of pregnant women living with HIV",
"shortUnit": "%",
"display": {}
}
},
{
"name": "Aquaculture production (metric tons)",
"code": "ER.FSH.AQUA.MT",
"old": {
"unit": "metric tons",
"shortUnit": null,
"display": {}
}
},
{
"name": "Arable land (% of land area)",
"code": "AG.LND.ARBL.ZS",
"old": {
"unit": "% of land area",
"shortUnit": "%",
"display": {
"unit": "Percent"
}
}
},
{
"name": "Arable land (hectares per person)",
"code": "AG.LND.ARBL.HA.PC",
"old": {
"unit": "hectares per person",
"shortUnit": "hectares",
"display": {
"unit": "Percent"
}
}
},
{
"name": "Arable land (hectares)",
"code": "AG.LND.ARBL.HA",
"old": {
"unit": "hectares",
"shortUnit": "hectares",
"display": {
"unit": "Rate"
}
}
},
{
"name": "Armed forces personnel (% of total labor force)",
"code": "MS.MIL.TOTL.TF.ZS",
"old": {
"unit": "% of total labor force",
"shortUnit": "%",
"display": {
"unit": "US$"
}
}
},
{
"name": "Armed forces personnel, total",
"code": "MS.MIL.TOTL.P1",
"old": {
"unit": "",
"shortUnit": null,
"display": {
"unit": "billion tonnes CO\u2082 equivalent"
}
}
},
{
"name": "Arms exports (SIPRI trend indicator values)",
"code": "MS.MIL.XPRT.KD"
},
{
"name": "Arms imports (SIPRI trend indicator values)",
"code": "MS.MIL.MPRT.KD"
},
{
"name": "Automated teller machines (ATMs) (per 100,000 adults)",
"code": "FB.ATM.TOTL.P5",
"old": {
"unit": "per 100,000 adults",
"shortUnit": null,
"display": {
"unit": "%"
}
}
},
{
"name": "Average number of visits or required meetings with tax officials (for affected firms)",
"code": "IC.TAX.METG"
},
{
"name": "Average precipitation in depth (mm per year)",
"code": "AG.LND.PRCP.MM",
"old": {
"unit": "mm per year",
"shortUnit": "mm",
"display": {
"unit": "Rate"
}
}
},
{
"name": "Average time to clear exports through customs (days)",
"code": "IC.CUS.DURS.EX"
},
{
"name": "Average transaction cost of sending remittances from a specific country (%)",
"code": "SI.RMT.COST.OB.ZS"
},
{
"name": "Average transaction cost of sending remittances to a specific country (%)",
"code": "SI.RMT.COST.IB.ZS"
},
{
"name": "Average working hours of children, study and work, ages 7-14 (hours per week)",
"code": "SL.TLF.0714.SW.TM",
"old": {
"unit": "hours per week",
"shortUnit": "hours",
"display": {}
}
},
{
"name": "Average working hours of children, study and work, female, ages 7-14 (hours per week)",
"code": "SL.TLF.0714.SW.FE.TM"
},
{
"name": "Average working hours of children, study and work, male, ages 7-14 (hours per week)",
"code": "SL.TLF.0714.SW.MA.TM"
},
{
"name": "Average working hours of children, working only, ages 7-14 (hours per week)",
"code": "SL.TLF.0714.WK.TM"
},
{
"name": "Average working hours of children, working only, female, ages 7-14 (hours per week)",
"code": "SL.TLF.0714.WK.FE.TM"
},
{
"name": "Average working hours of children, working only, male, ages 7-14 (hours per week)",
"code": "SL.TLF.0714.WK.MA.TM"
},
{
"name": "Bank capital to assets ratio (%)",
"code": "FB.BNK.CAPA.ZS"
},
{
"name": "Bank liquid reserves to bank assets ratio (%)",
"code": "FD.RES.LIQU.AS.ZS"
},
{
"name": "Bank nonperforming loans to total gross loans (%)",
"code": "FB.AST.NPER.ZS"
},
{
"name": "Battle-related deaths (number of people)",
"code": "VC.BTL.DETH"
},
{
"name": "Benefit incidence of social insurance programs to poorest quintile (% of total social insurance benefits)",
"code": "PER_SI_ALLSI.BEN_Q1_TOT"
},
{
"name": "Benefit incidence of social protection and labor programs to poorest quintile (% of total SPL benefits)",
"code": "PER_ALLSP.BEN_Q1_TOT"
},
{
"name": "Benefit incidence of social safety net programs to poorest quintile (% of total safety net benefits)",
"code": "PER_SA_ALLSA.BEN_Q1_TOT"
},
{
"name": "Benefit incidence of unemployment benefits and ALMP to poorest quintile (% of total U/ALMP benefits)",
"code": "PER_LM_ALLLM.BEN_Q1_TOT"
},
{
"name": "Binding coverage, all products (%)",
"code": "TM.TAX.MRCH.BC.ZS"
},
{
"name": "Binding coverage, manufactured products (%)",
"code": "TM.TAX.MANF.BC.ZS"
},
{
"name": "Binding coverage, primary products (%)",
"code": "TM.TAX.TCOM.BC.ZS"
},
{
"name": "Bird species, threatened",
"code": "EN.BIR.THRD.NO",
"old": {
"unit": "",
"shortUnit": null,
"display": {}
}
},
{
"name": "Birth rate, crude (per 1,000 people)",
"code": "SP.DYN.CBRT.IN",
"old": {
"unit": "per 1,000 people",
"shortUnit": null,
"display": {}
}
},
{
"name": "Births attended by skilled health staff (% of total)",
"code": "SH.STA.BRTC.ZS",
"old": {
"unit": "% of total",
"shortUnit": "%",
"display": {}
}
},
{
"name": "Borrowers from commercial banks (per 1,000 adults)",
"code": "FB.CBK.BRWR.P3"
},
{
"name": "Bound rate, simple mean, all products (%)",
"code": "TM.TAX.MRCH.BR.ZS"
},
{
"name": "Bound rate, simple mean, manufactured products (%)",
"code": "TM.TAX.MANF.BR.ZS"
},
{
"name": "Bound rate, simple mean, primary products (%)",
"code": "TM.TAX.TCOM.BR.ZS"
},
{
"name": "Bribery incidence (% of firms experiencing at least one bribe payment request)",
"code": "IC.FRM.BRIB.ZS",
"old": {
"unit": "% of firms experiencing at least one bribe payment request",
"shortUnit": "%",
"display": {}
}
},
{
"name": "Broad money (% of GDP)",
"code": "FM.LBL.BMNY.GD.ZS"
},
{
"name": "Broad money (current LCU)",
"code": "FM.LBL.BMNY.CN"
},
{
"name": "Broad money growth (annual %)",
"code": "FM.LBL.BMNY.ZG"
},
{
"name": "Broad money to total reserves ratio",
"code": "FM.LBL.BMNY.IR.ZS"
},
{
"name": "Business extent of disclosure index (0=less disclosure to 10=more disclosure)",
"code": "IC.BUS.DISC.XQ"
},
{
"name": "CO2 emissions (kg per 2010 US$ of GDP)",
"code": "EN.ATM.CO2E.KD.GD"
},
{
"name": "CO2 emissions (kg per 2017 PPP $ of GDP)",
"code": "EN.ATM.CO2E.PP.GD.KD",
"old": {
"unit": "kg per 2011 PPP $ of GDP",
"shortUnit": "kg",
"display": {
"unit": "Constant USD"
}
}
},
{
"name": "CO2 emissions (kg per PPP $ of GDP)",
"code": "EN.ATM.CO2E.PP.GD"
},
{
"name": "CO2 emissions (kt)",
"code": "EN.ATM.CO2E.KT",
"old": {
"unit": "kt",
"shortUnit": "kt",
"display": {
"unit": "Percent"
}
}
},
{
"name": "CO2 emissions (metric tons per capita)",
"code": "EN.ATM.CO2E.PC",
"old": {
"unit": "metric tons per capita",
"shortUnit": "metric tons",
"display": {
"unit": "Kilometres"
}
}
},
{
"name": "CO2 emissions from electricity and heat production, total (% of total fuel combustion)",
"code": "EN.CO2.ETOT.ZS"
},
{
"name": "CO2 emissions from gaseous fuel consumption (% of total)",
"code": "EN.ATM.CO2E.GF.ZS"
},
{
"name": "CO2 emissions from gaseous fuel consumption (kt)",
"code": "EN.ATM.CO2E.GF.KT"
},
{
"name": "CO2 emissions from liquid fuel consumption (% of total)",
"code": "EN.ATM.CO2E.LF.ZS"
},
{
"name": "CO2 emissions from liquid fuel consumption (kt)",
"code": "EN.ATM.CO2E.LF.KT"
},
{
"name": "CO2 emissions from manufacturing industries and construction (% of total fuel combustion)",
"code": "EN.CO2.MANF.ZS"
},
{
"name": "CO2 emissions from other sectors, excluding residential buildings and commercial and public services (% of total fuel combustion)",
"code": "EN.CO2.OTHX.ZS"
},
{
"name": "CO2 emissions from residential buildings and commercial and public services (% of total fuel combustion)",
"code": "EN.CO2.BLDG.ZS"
},
{
"name": "CO2 emissions from solid fuel consumption (% of total)",
"code": "EN.ATM.CO2E.SF.ZS"
},
{
"name": "CO2 emissions from solid fuel consumption (kt)",
"code": "EN.ATM.CO2E.SF.KT"
},
{
"name": "CO2 emissions from transport (% of total fuel combustion)",
"code": "EN.CO2.TRAN.ZS"
},
{
"name": "CO2 intensity (kg per kg of oil equivalent energy use)",
"code": "EN.ATM.CO2E.EG.ZS"
},
{
"name": "CPIA building human resources rating (1=low to 6=high)",
"code": "IQ.CPA.HRES.XQ"
},
{
"name": "CPIA business regulatory environment rating (1=low to 6=high)",
"code": "IQ.CPA.BREG.XQ"
},
{
"name": "CPIA debt policy rating (1=low to 6=high)",
"code": "IQ.CPA.DEBT.XQ"
},
{
"name": "CPIA economic management cluster average (1=low to 6=high)",
"code": "IQ.CPA.ECON.XQ"
},
{
"name": "CPIA efficiency of revenue mobilization rating (1=low to 6=high)",
"code": "IQ.CPA.REVN.XQ"
},
{
"name": "CPIA equity of public resource use rating (1=low to 6=high)",
"code": "IQ.CPA.PRES.XQ"
},
{
"name": "CPIA financial sector rating (1=low to 6=high)",
"code": "IQ.CPA.FINS.XQ"
},
{
"name": "CPIA fiscal policy rating (1=low to 6=high)",
"code": "IQ.CPA.FISP.XQ"
},
{
"name": "CPIA gender equality rating (1=low to 6=high)",
"code": "IQ.CPA.GNDR.XQ"
},
{
"name": "CPIA macroeconomic management rating (1=low to 6=high)",
"code": "IQ.CPA.MACR.XQ"
},
{
"name": "CPIA policies for social inclusion/equity cluster average (1=low to 6=high)",
"code": "IQ.CPA.SOCI.XQ"
},
{
"name": "CPIA policy and institutions for environmental sustainability rating (1=low to 6=high)",
"code": "IQ.CPA.ENVR.XQ"
},
{
"name": "CPIA property rights and rule-based governance rating (1=low to 6=high)",
"code": "IQ.CPA.PROP.XQ"
},
{
"name": "CPIA public sector management and institutions cluster average (1=low to 6=high)",
"code": "IQ.CPA.PUBS.XQ"
},
{
"name": "CPIA quality of budgetary and financial management rating (1=low to 6=high)",
"code": "IQ.CPA.FINQ.XQ"
},
{
"name": "CPIA quality of public administration rating (1=low to 6=high)",
"code": "IQ.CPA.PADM.XQ"
},
{
"name": "CPIA social protection rating (1=low to 6=high)",
"code": "IQ.CPA.PROT.XQ"
},
{
"name": "CPIA structural policies cluster average (1=low to 6=high)",
"code": "IQ.CPA.STRC.XQ"
},
{
"name": "CPIA trade rating (1=low to 6=high)",
"code": "IQ.CPA.TRAD.XQ"
},
{
"name": "CPIA transparency, accountability, and corruption in the public sector rating (1=low to 6=high)",
"code": "IQ.CPA.TRAN.XQ"
},
{
"name": "Capture fisheries production (metric tons)",
"code": "ER.FSH.CAPT.MT",
"old": {
"unit": "metric tons",
"shortUnit": null,
"display": {
"unit": "Percent"
}
}
},
{
"name": "Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions (% of total)",
"code": "SH.DTH.COMM.ZS"
},
{
"name": "Cause of death, by injury (% of total)",
"code": "SH.DTH.INJR.ZS"
},
{
"name": "Cause of death, by non-communicable diseases (% of total)",
"code": "SH.DTH.NCOM.ZS"
},
{
"name": "Central government debt, total (% of GDP)",
"code": "GC.DOD.TOTL.GD.ZS"
},
{
"name": "Central government debt, total (current LCU)",
"code": "GC.DOD.TOTL.CN"
},