-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdisaggregationMetaData.json
2085 lines (2085 loc) · 68.5 KB
/
disaggregationMetaData.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
[
{
"Indicator": "Population with at Least Secondary Education",
"DisaggregationType": "Gender",
"Access": "public",
"DisaggregatedIndicators": [
{
"key": "Female",
"id": "secedufemalelatest_gii",
"DataKey": "Gender Inequality Index-Population with at least some secondary education, female (% ages 25 and older)"
},
{
"key": "Male",
"id": "secedumalelatest_gii",
"DataKey": "Gender Inequality Index-Population with at least some secondary education, male (% ages 25 and older)"
}
],
"SignatureSolution": [
"Poverty and Inequality",
"Gender"
],
"SSTopics": [
"Poverty and Inequality Metrics",
"Data for Social Norms change and Innovative Policies",
"Socio-Economic Mobility",
"States capabilities to deliver Gender Equality"
]
},
{
"Indicator": "Labour Force Participation Rate",
"DisaggregationType": "Gender",
"Access": "public",
"DisaggregatedIndicators": [
{
"key": "Female",
"id": "labourforcefemalelatest_gii",
"DataKey": "Gender Inequality Index-Labour force participation rate, female (% ages 15 and older)"
},
{
"key": "Male",
"id": "labourforcemalelatest_gii",
"DataKey": "Gender Inequality Index-Labour force participation rate, male (% ages 15 and older)"
}
],
"SignatureSolution": [
"Poverty and Inequality",
"Gender"
],
"SSTopics": [
"Poverty and Inequality Metrics",
"Future-proof and resilient jobs for women",
"Women's Economic Empowerment",
"Data for Social Norms change and Innovative Policies",
"Future of Work through a systems lens",
"States capabilities to deliver Gender Equality"
]
},
{
"Indicator": "Share of Parliament Seats, by gender",
"DisaggregationType": "Gender",
"Access": "public",
"DisaggregatedIndicators": [
{
"key": "Female",
"id": "parlimentseatsfemale_gii",
"DataKey": "Gender Inequality Index-Share of seats in parliament (% held by women)"
},
{
"key": "Male",
"id": "share_of_seats_in_parliament_male_held_by_men_hdr",
"DataKey": "Share of seats in parliament, male (% held by men)"
}
],
"SignatureSolution": [
"Governance",
"Gender"
],
"SSTopics": [
"Women's Economic Empowerment",
"Data for Social Norms change and Innovative Policies",
"States capabilities to deliver Gender Equality",
"Parliamentary Development"
]
},
{
"Indicator": "Literacy rate",
"DisaggregationType": "Gender",
"Access": "public",
"DisaggregatedIndicators": [
{
"key": "Female",
"id": "literacyratefemale_cpialrf",
"DataKey": "Literacy Rate Female (%)"
},
{
"key": "Male",
"id": "literacyratemale_cpialrm",
"DataKey": "Literacy Rate Male (%)"
}
],
"SignatureSolution": [
"Poverty and Inequality",
"Gender",
"Environment"
],
"SSTopics": [
"SIDS",
"Poverty and Inequality Metrics",
"Data for Social Norms change and Innovative Policies",
"Socio-Economic Mobility",
"Future of Work through a systems lens",
"Informal Economy Facility",
"States capabilities to deliver Gender Equality"
]
},
{
"Indicator": "Sectoral Employment, % of total employment",
"DisaggregationType": "Employment sector",
"Access": "public",
"DisaggregatedIndicators": [
{
"key": "Services",
"id": "employmentinservices_cpiaeis",
"DataKey": "Employment in services (% of total employment)"
},
{
"key": "Industry",
"id": "employmentinindustry_cpiaeii",
"DataKey": "Employment in industry (% of total employment)"
},
{
"key": "Agriculture",
"id": "employmentinagriculture_cpiaeia",
"DataKey": "Employment in agriculture (% of total employment)"
}
],
"SignatureSolution": [
"Poverty and Inequality"
],
"SSTopics": [
"Trade and Value Chains",
"Jobs",
"Informal Economy Facility"
]
},
{
"Indicator": "Percentage of schools with access to the internet",
"DisaggregationType": "Education level",
"Access": "public",
"DisaggregatedIndicators": [
{
"key": "Primary Schools",
"id": "primaryschoolswithinternet_acctoi",
"DataKey": "Percentage of primary schools with access to the internet"
},
{
"key": "Secondary Schools",
"id": "secondaryschoolswithinternet_acctoi",
"DataKey": "Percentage of secondary schools with access to the internet"
}
],
"SignatureSolution": [
"Poverty and Inequality"
],
"SSTopics": [
"Future of Growth",
"Gender Digital Divide",
"Future of Work through a systems lens"
]
},
{
"Indicator": "Human Development Index",
"DisaggregationType": "Gender",
"Access": "public",
"DisaggregatedIndicators": [
{
"key": "Female",
"id": "human_development_index_female_hdr",
"DataKey": "Human Development Index (female)"
},
{
"key": "Male",
"id": "human_development_index_male_hdr",
"DataKey": "Human Development Index (male)"
},
{
"key": "Both sexes",
"id": "humandevelopmentindex_undphdi",
"DataKey": "Human development index (HDI)"
}
],
"SignatureSolution": [
"Poverty and Inequality",
"Gender",
"Environment"
],
"SSTopics": [
"Poverty and Inequality Metrics"
]
},
{
"Indicator": "Poverty headcount, % of population",
"DisaggregationType": "Poverty line",
"Access": "public",
"DisaggregatedIndicators": [
{
"key": "$2.15 a day",
"id": "povertyheadcountratioat$1.90_cpiaphr19",
"DataKey": "Poverty headcount ratio at $2.15 a day (2017 PPP) (% of population)"
},
{
"key": "$3.65 a day",
"id": "povertyheadcountratioat$3.20_cpiaphr32",
"DataKey": "Poverty headcount ratio at $3.65 a day (2017 PPP) (% of population)"
},
{
"key": "$6.85 a day",
"id": "povertyheadcountratioat$5.50_cpiaphr55",
"DataKey": "Poverty headcount ratio at $6.85 a day (2017 PPP) (% of population)"
}
],
"SignatureSolution": [
"Poverty and Inequality"
],
"SSTopics": [
"Informal Economy Facility",
"Socio-Economic Mobility",
"Poverty and Inequality Metrics"
]
},
{
"Indicator": "Mortality rate probability attributed to cardiovascular disease, cancer, diabetes or chronic respiratory disease, ages 30-70",
"DisaggregationType": "Gender",
"Access": "public",
"DisaggregatedIndicators": [
{
"key": "Female",
"id": "mortalityattributedtononspreadingdiseasefemale_sdgmr",
"DataKey": "Mortality rate attributed to cardiovascular disease, cancer, diabetes or chronic respiratory disease (probability), Age 30-70::Female"
},
{
"key": "Male",
"id": "mortalityattributedtononspreadingdiseasemale_sdgmr",
"DataKey": "Mortality rate attributed to cardiovascular disease, cancer, diabetes or chronic respiratory disease (probability), Age 30-70::Male"
},
{
"key": "Both sexes",
"id": "mortalityattributedtononspreadingdisease_sdgmr",
"DataKey": "Mortality rate attributed to cardiovascular disease, cancer, diabetes or chronic respiratory disease (probability), Age 30-70"
}
],
"SignatureSolution": [
"Poverty and Inequality"
],
"SSTopics": [
"Building Resilient and Sustainable Systems for Health"
]
},
{
"Indicator": "Proportion of population above statutory pensionable age receiving a pension",
"DisaggregationType": "Gender",
"Access": "public",
"DisaggregatedIndicators": [
{
"key": "Female",
"id": "receivingapensionfemale_sdgrap",
"DataKey": "Proportion of population above statutory pensionable age receiving a pension, by sex (%), Female"
},
{
"key": "Male",
"id": "receivingapensionmale_sdgrap",
"DataKey": "Proportion of population above statutory pensionable age receiving a pension, by sex (%), Male"
},
{
"key": "Both sexes",
"id": "receivingapensiontotal_sdgrap",
"DataKey": "Proportion of population above statutory pensionable age receiving a pension, by sex (%), Total"
}
],
"SignatureSolution": [
"Poverty and Inequality"
],
"SSTopics": [
"Informal Economy Facility",
"Social Protection",
"Aging"
]
},
{
"Indicator": "Population",
"DisaggregationType": "Urban/Rural",
"Access": "public",
"DisaggregatedIndicators": [
{
"key": "Urban",
"id": "totalurbanpopulation_cpiatup",
"DataKey": "Urban Population, total"
},
{
"key": "Rural",
"id": "totalruralpopulation_cpiatrp",
"DataKey": "Rural Population, total"
}
],
"SignatureSolution": [
"Poverty and Inequality",
"Environment",
"Resilience"
],
"SSTopics": [
"Poverty and Inequality Metrics",
"Building Resilient and Sustainable Systems for Health",
"Spatial Inequalities",
"Future of Work through a systems lens",
"Informal Economy Facility"
]
},
{
"Indicator": "Population Using at least Basic Drinking-Water Services, percent",
"DisaggregationType": "Urban/Rural",
"Access": "public",
"DisaggregatedIndicators": [
{
"key": "Urban",
"id": "populationusingbasicdrinkingwaterurban_cpiapbdwu",
"DataKey": "Population using at least basic drinking-water services (%)::Urban"
},
{
"key": "Rural",
"id": "populationusingbasicdrinkingwaterrural_cpiapbdwr",
"DataKey": "Population using at least basic drinking-water services (%)::Rural"
}
],
"SignatureSolution": [
"Resilience",
"Poverty and Inequality"
],
"SSTopics": [
"Spatial Inequalities",
"Poverty and Inequality Metrics"
]
},
{
"Indicator": "Informal employment by sex and age (thousands), 15 and above",
"DisaggregationType": "Gender",
"Access": "public",
"DisaggregatedIndicators": [
{
"key": "Female",
"id": "informalemploymentbysexandagethousandsfemale15andabove_iloniflage",
"DataKey": "Informal employment by sex and age (thousands), Female, 15 and above"
},
{
"key": "Male",
"id": "informalemploymentbysexandagethousandsmale15andabove_iloniflage",
"DataKey": "Informal employment by sex and age (thousands), Male, 15 and above"
}
],
"SignatureSolution": [
"Poverty and Inequality"
],
"SSTopics": [
"Informal Economy Facility",
"Informal Economy"
]
},
{
"Indicator": "Informal employment by sex and age (thousands), 15-24",
"DisaggregationType": "Gender",
"Access": "public",
"DisaggregatedIndicators": [
{
"key": "Female",
"id": "informalemploymentbysexandagethousandsfemale1524_iloniflage",
"DataKey": "Informal employment by sex and age (thousands), Female, 15-24"
},
{
"key": "Male",
"id": "informalemploymentbysexandagethousandsmale1524_iloniflage",
"DataKey": "Informal employment by sex and age (thousands), Male, 15-24"
}
],
"SignatureSolution": [
"Poverty and Inequality"
],
"SSTopics": [
"Informal Economy Facility",
"Informal Economy",
"Youth Economic Empowerment"
]
},
{
"Indicator": "Informal employment by sex and age (thousands), 15-64",
"DisaggregationType": "Gender",
"Access": "public",
"DisaggregatedIndicators": [
{
"key": "Female",
"id": "informalemploymentbysexandagethousandsfemale1564_iloniflage",
"DataKey": "Informal employment by sex and age (thousands), Female, 15-64"
},
{
"key": "Male",
"id": "informalemploymentbysexandagethousandsmale1564_iloniflage",
"DataKey": "Informal employment by sex and age (thousands), Male, 15-64"
}
],
"SignatureSolution": [
"Poverty and Inequality"
],
"SSTopics": [
"Informal Economy Facility",
"Informal Economy"
]
},
{
"Indicator": "Informal employment by sex and age (thousands), 25 and above",
"DisaggregationType": "Gender",
"Access": "public",
"DisaggregatedIndicators": [
{
"key": "Female",
"id": "informalemploymentbysexandagethousandsfemale25andabove_iloniflage",
"DataKey": "Informal employment by sex and age (thousands), Female, 25 and above"
},
{
"key": "Male",
"id": "informalemploymentbysexandagethousandsmale25andabove_iloniflage",
"DataKey": "Informal employment by sex and age (thousands), Male, 25 and above"
}
],
"SignatureSolution": [
"Poverty and Inequality"
],
"SSTopics": [
"Informal Economy Facility",
"Informal Economy"
]
},
{
"Indicator": "Share of Informal employment by sex and age (%), 15 and above",
"DisaggregationType": "Gender",
"Access": "public",
"DisaggregatedIndicators": [
{
"key": "Female",
"id": "shareofinformalemploymentbysexandagefemale15andabove_iloniflrtage",
"DataKey": "Share of Informal employment by sex and age (%), Female, 15 and above"
},
{
"key": "Male",
"id": "shareofinformalemploymentbysexandagemale15andabove_iloniflrtage",
"DataKey": "Share of Informal employment by sex and age (%), Male, 15 and above"
},
{
"key": "Both sexes",
"id": "shareofinformalemploymentbysexandagetotal15andabove_iloniflrtage",
"DataKey": "Share of Informal employment by sex and age (%), Total, 15 and above"
}
],
"SignatureSolution": [
"Poverty and Inequality"
],
"SSTopics": [
"Informal Economy Facility",
"Informal Economy"
]
},
{
"Indicator": "Share of Informal employment by sex and age (%), 15-24",
"DisaggregationType": "Gender",
"Access": "public",
"DisaggregatedIndicators": [
{
"key": "Female",
"id": "shareofinformalemploymentbysexandagefemale1524_iloniflrtage",
"DataKey": "Share of Informal employment by sex and age (%), Female, 15-24"
},
{
"key": "Male",
"id": "shareofinformalemploymentbysexandagemale1524_iloniflrtage",
"DataKey": "Share of Informal employment by sex and age (%), Male, 15-24"
},
{
"key": "Both sexes",
"id": "shareofinformalemploymentbysexandagetotal1524_iloniflrtage",
"DataKey": "Share of Informal employment by sex and age (%), Total, 15-24"
}
],
"SignatureSolution": [
"Poverty and Inequality"
],
"SSTopics": [
"Informal Economy Facility",
"Informal Economy",
"Youth Economic Empowerment"
]
},
{
"Indicator": "Share of Informal employment by sex and age (%), 25 and above",
"DisaggregationType": "Gender",
"Access": "public",
"DisaggregatedIndicators": [
{
"key": "Female",
"id": "shareofinformalemploymentbysexandagefemale25andabove_iloniflrtage",
"DataKey": "Share of Informal employment by sex and age (%), Female, 25 and above"
},
{
"key": "Male",
"id": "shareofinformalemploymentbysexandagemale25andabove_iloniflrtage",
"DataKey": "Share of Informal employment by sex and age (%), Male, 25 and above"
},
{
"key": "Both sexes",
"id": "shareofinformalemploymentbysexandagetotal25andabove_iloniflrtage",
"DataKey": "Share of Informal employment by sex and age (%), Total, 25 and above"
}
],
"SignatureSolution": [
"Poverty and Inequality"
],
"SSTopics": [
"Informal Economy Facility",
"Informal Economy"
]
},
{
"Indicator": "Informal employment in agriculture by sex (thousands)",
"DisaggregationType": "Gender",
"Access": "public",
"DisaggregatedIndicators": [
{
"key": "Female",
"id": "informalemploymentbysexandeconomicactivitythousandsfemaleagriculture_ilonifleco",
"DataKey": "Informal employment by sex and economic activity (thousands), Female, Agriculture"
},
{
"key": "Male",
"id": "informalemploymentbysexandeconomicactivitythousandsmaleagriculture_ilonifleco",
"DataKey": "Informal employment by sex and economic activity (thousands), Male, Agriculture"
}
],
"SignatureSolution": [
"Poverty and Inequality"
],
"SSTopics": [
"Informal Economy Facility",
"Informal Economy",
"Productivity and Resilience"
]
},
{
"Indicator": "Informal employment in non-ariculture, by sex (thousands)",
"DisaggregationType": "Gender",
"Access": "public",
"DisaggregatedIndicators": [
{
"key": "Female",
"id": "informalemploymentbysexandeconomicactivitythousandsfemalenonagriculture_ilonifleco",
"DataKey": "Informal employment by sex and economic activity (thousands), Female, Non-agriculture"
},
{
"key": "Male",
"id": "informalemploymentbysexandeconomicactivitythousandsmalenonagriculture_ilonifleco",
"DataKey": "Informal employment by sex and economic activity (thousands), Male, Non-agriculture"
}
],
"SignatureSolution": [
"Poverty and Inequality"
],
"SSTopics": [
"Informal Economy Facility",
"Informal Economy",
"Local Economic Development (LED)"
]
},
{
"Indicator": "Share of Informal employment in agriculture by sex",
"DisaggregationType": "Gender",
"Access": "public",
"DisaggregatedIndicators": [
{
"key": "Female",
"id": "shareofinformalemploymentbysexandeconomicactivityfemaleagriculture_iloniflrteco",
"DataKey": "Share of Informal employment by sex and economic activity (%), Female, Agriculture"
},
{
"key": "Male",
"id": "shareofinformalemploymentbysexandeconomicactivitymaleagriculture_iloniflrteco",
"DataKey": "Share of Informal employment by sex and economic activity (%), Male, Agriculture"
},
{
"key": "Both sexes",
"id": "shareofinformalemploymentbysexandeconomicactivitytotalagriculture_iloniflrteco",
"DataKey": "Share of Informal employment by sex and economic activity (%), Total, Agriculture"
}
],
"SignatureSolution": [
"Poverty and Inequality"
],
"SSTopics": [
"Informal Economy Facility",
"Informal Economy"
]
},
{
"Indicator": "Share of Informal employment in non-agriculture by sex (%)",
"DisaggregationType": "Gender",
"Access": "public",
"DisaggregatedIndicators": [
{
"key": "Female",
"id": "shareofinformalemploymentbysexandeconomicactivityfemalenonagriculture_iloniflrteco",
"DataKey": "Share of Informal employment by sex and economic activity (%), Female, Non-agriculture"
},
{
"key": "Male",
"id": "shareofinformalemploymentbysexandeconomicactivitymalenonagriculture_iloniflrteco",
"DataKey": "Share of Informal employment by sex and economic activity (%), Male, Non-agriculture"
},
{
"key": "Both sexes",
"id": "shareofinformalemploymentbysexandeconomicactivitytotalnonagriculture_iloniflrteco",
"DataKey": "Share of Informal employment by sex and economic activity (%), Total, Non-agriculture"
}
],
"SignatureSolution": [
"Poverty and Inequality"
],
"SSTopics": [
"Informal Economy Facility",
"Local Economic Development (LED)"
]
},
{
"Indicator": "Informal employment by sex and status in employment (thousands), Employees",
"DisaggregationType": "Gender",
"Access": "public",
"DisaggregatedIndicators": [
{
"key": "Female",
"id": "informalemploymentbysexandstatusinemploymentthousandsfemaleemployees_iloniflste",
"DataKey": "Informal employment by sex and status in employment (thousands), Female, Employees"
},
{
"key": "Male",
"id": "informalemploymentbysexandstatusinemploymentthousandsmaleemployees_iloniflste",
"DataKey": "Informal employment by sex and status in employment (thousands), Male, Employees"
}
],
"SignatureSolution": [
"Poverty and Inequality"
],
"SSTopics": [
"Informal Economy Facility",
"Informal Economy",
"Women's Economic Empowerment"
]
},
{
"Indicator": "Informal employment by sex and status in employment (thousands), Self-employed",
"DisaggregationType": "Gender",
"Access": "public",
"DisaggregatedIndicators": [
{
"key": "Female",
"id": "informalemploymentbysexandstatusinemploymentthousandsfemaleselfemployed_iloniflste",
"DataKey": "Informal employment by sex and status in employment (thousands), Female, Self-employed"
},
{
"key": "Male",
"id": "informalemploymentbysexandstatusinemploymentthousandsmaleselfemployed_iloniflste",
"DataKey": "Informal employment by sex and status in employment (thousands), Male, Self-employed"
}
],
"SignatureSolution": [
"Poverty and Inequality"
],
"SSTopics": [
"Informal Economy Facility",
"Informal Economy",
"Women's Economic Empowerment"
]
},
{
"Indicator": "Informal employment by sex and status in employment (thousands), Not classified",
"DisaggregationType": "Gender",
"Access": "public",
"DisaggregatedIndicators": [
{
"key": "Female",
"id": "informalemploymentbysexandstatusinemploymentthousandsfemalenotclassified_iloniflste",
"DataKey": "Informal employment by sex and status in employment (thousands), Female, Not classified"
},
{
"key": "Male",
"id": "informalemploymentbysexandstatusinemploymentthousandsmalenotclassified_iloniflste",
"DataKey": "Informal employment by sex and status in employment (thousands), Male, Not classified"
}
],
"SignatureSolution": [
"Poverty and Inequality"
],
"SSTopics": [
"Informal Economy Facility",
"Informal Economy",
"Women's Economic Empowerment"
]
},
{
"Indicator": "Share of Informal employment by sex and status in employment (%), Employees",
"DisaggregationType": "Gender",
"Access": "public",
"DisaggregatedIndicators": [
{
"key": "Female",
"id": "shareofinformalemploymentbysexandstatusinemploymentfemaleemployees_iloniflrtste",
"DataKey": "Share of Informal employment by sex and status in employment (%), Female, Employees"
},
{
"key": "Male",
"id": "shareofinformalemploymentbysexandstatusinemploymentmaleemployees_iloniflrtste",
"DataKey": "Share of Informal employment by sex and status in employment (%), Male, Employees"
},
{
"key": "Both sexes",
"id": "shareofinformalemploymentbysexandstatusinemploymenttotalemployees_iloniflrtste",
"DataKey": "Share of Informal employment by sex and status in employment (%), Total, Employees"
}
],
"SignatureSolution": [
"Poverty and Inequality"
],
"SSTopics": [
"Informal Economy Facility",
"Informal Economy"
]
},
{
"Indicator": "Share of Informal employment by sex and status in employment (%), Self-employed",
"DisaggregationType": "Gender",
"Access": "public",
"DisaggregatedIndicators": [
{
"key": "Female",
"id": "shareofinformalemploymentbysexandstatusinemploymentfemaleselfemployed_iloniflrtste",
"DataKey": "Share of Informal employment by sex and status in employment (%), Female, Self-employed"
},
{
"key": "Male",
"id": "shareofinformalemploymentbysexandstatusinemploymentmaleselfemployed_iloniflrtste",
"DataKey": "Share of Informal employment by sex and status in employment (%), Male, Self-employed"
},
{
"key": "Both sexes",
"id": "shareofinformalemploymentbysexandstatusinemploymenttotalselfemployed_iloniflrtste",
"DataKey": "Share of Informal employment by sex and status in employment (%), Total, Self-employed"
}
],
"SignatureSolution": [
"Poverty and Inequality"
],
"SSTopics": [
"Informal Economy Facility",
"Informal Economy"
]
},
{
"Indicator": "Share of Informal employment by sex and status in employment (%), Not classified",
"DisaggregationType": "Gender",
"Access": "public",
"DisaggregatedIndicators": [
{
"key": "Female",
"id": "shareofinformalemploymentbysexandstatusinemploymentfemalenotclassified_iloniflrtste",
"DataKey": "Share of Informal employment by sex and status in employment (%), Female, Not classified"
},
{
"key": "Male",
"id": "shareofinformalemploymentbysexandstatusinemploymentmalenotclassified_iloniflrtste",
"DataKey": "Share of Informal employment by sex and status in employment (%), Male, Not classified"
},
{
"key": "Both sexes",
"id": "shareofinformalemploymentbysexandstatusinemploymenttotalnotclassified_iloniflrtste",
"DataKey": "Share of Informal employment by sex and status in employment (%), Total, Not classified"
}
],
"SignatureSolution": [
"Poverty and Inequality"
],
"SSTopics": [
"Informal Economy Facility",
"Informal Economy"
]
},
{
"Indicator": "Employment outside the Formal Sector by sex and age (thousands), 15 and above",
"DisaggregationType": "Gender",
"Access": "public",
"DisaggregatedIndicators": [
{
"key": "Female",
"id": "employementoutsidetheformalsectorbysexandagethousandsfemale15andabove_ilopiflage",
"DataKey": "Employement outside the Formal Sector by sex and age (thousands), Female, 15 and above"
},
{
"key": "Male",
"id": "employementoutsidetheformalsectorbysexandagethousandsmale15andabove_ilopiflage",
"DataKey": "Employement outside the Formal Sector by sex and age (thousands), Male, 15 and above"
}
],
"SignatureSolution": [
"Poverty and Inequality",
"Gender"
],
"SSTopics": [
"Informal Economy Facility",
"Informal Economy"
]
},
{
"Indicator": "Employment outside the Formal Sector for age 15-24 by sex (thousands)",
"DisaggregationType": "Gender",
"Access": "public",
"DisaggregatedIndicators": [
{
"key": "Female",
"id": "employementoutsidetheformalsectorbysexandagethousandsfemale1524_ilopiflage",
"DataKey": "Employement outside the Formal Sector by sex and age (thousands), Female, 15-24"
},
{
"key": "Male",
"id": "employementoutsidetheformalsectorbysexandagethousandsmale1524_ilopiflage",
"DataKey": "Employement outside the Formal Sector by sex and age (thousands), Male, 15-24"
}
],
"SignatureSolution": [
"Poverty and Inequality",
"Gender"
],
"SSTopics": [
"Informal Economy Facility",
"Youth Economic Empowerment"
]
},
{
"Indicator": "Employment outside the Formal Sector fro age 15-64 by sex (thousands)",
"DisaggregationType": "Gender",
"Access": "public",
"DisaggregatedIndicators": [
{
"key": "Female",
"id": "employementoutsidetheformalsectorbysexandagethousandsfemale1564_ilopiflage",
"DataKey": "Employement outside the Formal Sector by sex and age (thousands), Female, 15-64"
},
{
"key": "Male",
"id": "employementoutsidetheformalsectorbysexandagethousandsmale1564_ilopiflage",
"DataKey": "Employement outside the Formal Sector by sex and age (thousands), Male, 15-64"
}
],
"SignatureSolution": [
"Poverty and Inequality",
"Gender"
],
"SSTopics": [
"Informal Economy Facility",
"Informal Economy"
]
},
{
"Indicator": "Employment outside the Formal Sector for age 25 and above by sex (thousands)",
"DisaggregationType": "Gender",
"Access": "public",
"DisaggregatedIndicators": [
{
"key": "Female",
"id": "employementoutsidetheformalsectorbysexandagethousandsfemale25andabove_ilopiflage",
"DataKey": "Employement outside the Formal Sector by sex and age (thousands), Female, 25 and above"
},
{
"key": "Male",
"id": "employementoutsidetheformalsectorbysexandagethousandsmale25andabove_ilopiflage",
"DataKey": "Employement outside the Formal Sector by sex and age (thousands), Male, 25 and above"
}
],
"SignatureSolution": [
"Poverty and Inequality",
"Gender"
],
"SSTopics": [
"Informal Economy Facility",
"Informal Economy"
]
},
{
"Indicator": "Employment outside the Formal Sector by age (thousands)",
"DisaggregationType": "Age",
"Access": "public",
"DisaggregatedIndicators": [
{
"key": "15-24",
"id": "employementoutsidetheformalsectorbysexandagethousandstotal1524_ilopiflage",
"DataKey": "Employement outside the Formal Sector by sex and age (thousands), Total, 15-24"
},
{
"key": "25 and above",
"id": "employementoutsidetheformalsectorbysexandagethousandstotal25andabove_ilopiflage",
"DataKey": "Employement outside the Formal Sector by sex and age (thousands), Total, 25 and above"
}
],
"SignatureSolution": [
"Poverty and Inequality"
],
"SSTopics": [
"Informal Economy Facility"
]
},
{
"Indicator": "Employment outside the Formal Sector for Male by age (thousands)",
"DisaggregationType": "Age",
"Access": "public",
"DisaggregatedIndicators": [
{
"key": "15-24",
"id": "employementoutsidetheformalsectorbysexandagethousandsmale1524_ilopiflage",
"DataKey": "Employement outside the Formal Sector by sex and age (thousands), Male, 15-24"
},
{
"key": "25 and above",
"id": "employementoutsidetheformalsectorbysexandagethousandsmale25andabove_ilopiflage",
"DataKey": "Employement outside the Formal Sector by sex and age (thousands), Male, 25 and above"
}
],
"SignatureSolution": [
"Poverty and Inequality"
],
"SSTopics": [
"Informal Economy Facility"
]
},
{
"Indicator": "Employment outside the Formal Sector for Female by age (thousands)",
"DisaggregationType": "Age",
"Access": "public",
"DisaggregatedIndicators": [
{
"key": "15-24",
"id": "employementoutsidetheformalsectorbysexandagethousandsfemale1524_ilopiflage",
"DataKey": "Employement outside the Formal Sector by sex and age (thousands), Female, 15-24"
},
{
"key": "25 and above",
"id": "employementoutsidetheformalsectorbysexandagethousandsfemale25andabove_ilopiflage",
"DataKey": "Employement outside the Formal Sector by sex and age (thousands), Female, 25 and above"
}
],
"SignatureSolution": [
"Poverty and Inequality",
"Gender"
],
"SSTopics": [
"Informal Economy Facility",
"Future-proof and resilient jobs for women"
]
},
{
"Indicator": "Share of Employment outside the Formal Sector by sex (%), 15 and above",
"DisaggregationType": "Gender",
"Access": "public",
"DisaggregatedIndicators": [
{
"key": "Female",
"id": "shareofemployementoutsidetheformalsectorbysexandagefemale15andabove_iloipflrtage",
"DataKey": "Share of Employement outside the Formal Sector by sex and age (%), Female, 15 and above"
},
{
"key": "Male",
"id": "shareofemployementoutsidetheformalsectorbysexandagemale15andabove_iloipflrtage",
"DataKey": "Share of Employement outside the Formal Sector by sex and age (%), Male, 15 and above"
},
{
"key": "Both sexes",
"id": "shareofemployementoutsidetheformalsectorbysexandagetotal15andabove_iloipflrtage",
"DataKey": "Share of Employement outside the Formal Sector by sex and age (%), Total, 15 and above"
}
],
"SignatureSolution": [
"Poverty and Inequality",
"Gender"
],
"SSTopics": [
"Informal Economy Facility",
"Informal Economy"
]
},
{
"Indicator": "Share of Employment outside the Formal Sector by sex (%), 15-24",