-
Notifications
You must be signed in to change notification settings - Fork 25
/
india_sdg_statvar.mcf
991 lines (873 loc) · 34.6 KB
/
india_sdg_statvar.mcf
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
Node: dcid:Amount_EconomicActivity_UtilisedScheduledCasteSubPlanFund
typeOf: dcid:StatisticalVariable
name: "Scheduled Caste Sub Plan fund utilised (%)"
populationType: dcid:EconomicActivity
measuredProperty: dcid:amount
statType: dcid:measuredValue
benefitsStatus: dcid:UtilisedScheduledCasteSubPlanFund
Node: dcid:Amount_EconomicActivity_UtilisedTribalSubPlanFund
typeOf: dcid:StatisticalVariable
name: "Tribal Sub Plan fund utilised (%)"
populationType: dcid:EconomicActivity
measuredProperty: dcid:amount
statType: dcid:measuredValue
benefitsStatus: dcid:UtilisedTribalSubPlanFund
Node: dcid:Amount_FarmInventory_RiceOrWheat_AsAFractionOf_Area_Farm_RiceOrWheat
typeOf: dcid:StatisticalVariable
name: "Rice, wheat and coarse cereals produced annually per unit area (Kg/Ha)","Rice and wheat produced annually per unit area (Kg/Ha)"
populationType: dcid:FarmInventory
measuredProperty: dcid:amount
statType: dcid:measuredValue
measurementDenominator: dcid:Area_Farm_RiceOrWheat
farmInventoryType: dcid:Rice__Wheat
Node: dcid:Annual_Count_MedicalConditionIncident_ConditionTuberculosis_AsAFractionOf_Count_Person
typeOf: dcid:StatisticalVariable
name: "Annual notification of Tuberculosis cases per 1 lakh population"
populationType: dcid:MedicalConditionIncident
measuredProperty: dcid:count
measurementQualifier: dcid:Annual
statType: dcid:measuredValue
measurementDenominator: dcid:Count_Person
medicalCondition: dcid:Tuberculosis
Node: dcid:Annual_Reserve_Water
typeOf: dcid:StatisticalVariable
populationType: dcid:Water
measuredProperty: dcid:reserve
measurementQualifier: dcid:Annual
statType: dcid:measuredValue
Node: dcid:Annual_WithdrawalRate_Water_AsAFractionOf_Annual_Reserve_Water
typeOf: dcid:StatisticalVariable
name: "Annual ground water withdrawal against net annual availability (%)"
populationType: dcid:Water
measuredProperty: dcid:withdrawalRate
measurementQualifier: dcid:Annual
statType: dcid:measuredValue
measurementDenominator: dcid:Annual_Reserve_Water
Node: dcid:Area_Farm_RiceOrWheat
typeOf: dcid:StatisticalVariable
name: "Rice, wheat and coarse cereals produced annually per unit area (Kg/Ha)","Rice and wheat produced annually per unit area (Kg/Ha)"
populationType: dcid:Farm
measuredProperty: dcid:area
statType: dcid:measuredValue
farmInventoryType: dcid:Rice__Wheat
Node: dcid:Capacity_Electricity
typeOf: dcid:StatisticalVariable
populationType: dcid:Electricity
measuredProperty: dcid:capacity
statType: dcid:measuredValue
Node: dcid:Capacity_Electricity_Renewables_AsAFractionOf_Capacity_Electricity
typeOf: dcid:StatisticalVariable
name: "Renewable share of installed generating capacity (%)"
populationType: dcid:Electricity
measuredProperty: dcid:capacity
statType: dcid:measuredValue
measurementDenominator: dcid:Capacity_Electricity
energySource: dcid:Renewables
Node: dcid:Capacity_Place_SewageTreatement_Urban_AsAFractionOf_GeneratedSewage_Place_Urban
typeOf: dcid:StatisticalVariable
name: "Installed sewage treatment capacity as a proportion of sewage created in urban areas (%)"
populationType: dcid:Place
measuredProperty: dcid:capacity
statType: dcid:measuredValue
measurementDenominator: dcid:GeneratedSewage_Place_Urban
facilities: dcid:SewageTreatement
placeOfResidenceClassification: dcid:Urban
Node: dcid:Constructed_House_PradhanMantriAwasYojana_AsAFractionOf_Demand_House
typeOf: dcid:StatisticalVariable
name: "Houses completed under PMAY as a percentage of net demand assessment for houses"
populationType: dcid:House
measuredProperty: dcid:constructed
statType: dcid:measuredValue
measurementDenominator: dcid:Demand_House
benefitsStatus: dcid:PradhanMantriAwasYojana
Node: dcid:Count_BirthEvent_Female_LiveBirth_AsAFractionOf_Count_BirthEvent_LiveBirth_Male
typeOf: dcid:StatisticalVariable
name: "Sex Ratio at Birth (female per 1000 male)"
populationType: dcid:BirthEvent
measuredProperty: dcid:count
statType: dcid:measuredValue
measurementDenominator: dcid:Count_BirthEvent_LiveBirth_Male
gender: dcid:Female
medicalStatus: dcid:LiveBirth
Node: dcid:Count_BirthEvent_Registered_AsAFractionOf_Count_BirthEvent
typeOf: dcid:StatisticalVariable
name: "Births registered (%)"
populationType: dcid:BirthEvent
measuredProperty: dcid:count
statType: dcid:measuredValue
measurementDenominator: dcid:Count_BirthEvent
registrationStatus: dcid:Registered
Node: dcid:Count_BirthEvent_YearsUpto5_LiveBirth
typeOf: dcid:StatisticalVariable
populationType: dcid:BirthEvent
measuredProperty: dcid:count
statType: dcid:measuredValue
age: dcid:YearsUpto5
medicalStatus: dcid:LiveBirth
Node: dcid:Count_Courthouse_AsAFractionOf_Count_Person
typeOf: dcid:StatisticalVariable
name: "Estimated number of courts per 10 Lakh persons"
populationType: dcid:Courthouse
measuredProperty: dcid:count
statType: dcid:measuredValue
measurementDenominator: dcid:Count_Person
Node: dcid:Count_CriminalIncidents_CorruptionCrime_AsAFractionOf_Count_Person
typeOf: dcid:StatisticalVariable
name: "Estimated reported corruption crimes per 1 crore population"
populationType: dcid:CriminalIncidents
measuredProperty: dcid:count
statType: dcid:measuredValue
measurementDenominator: dcid:Count_Person
crimeType: dcid:CorruptionCrime
Node: dcid:Count_CriminalIncidents_CrimeAgainstChildren_AsAFractionOf_Count_Person
typeOf: dcid:StatisticalVariable
name: "Reported cognizable crimes against children per 1 lakh population"
populationType: dcid:CriminalIncidents
measuredProperty: dcid:count
statType: dcid:measuredValue
measurementDenominator: dcid:Count_Person
crimeType: dcid:CrimeAgainstChildren
Node: dcid:Count_Household_BankAccount_AsAFractionOf_Count_Household
typeOf: dcid:StatisticalVariable
name: "Households with a bank account (%)"
populationType: dcid:Household
measuredProperty: dcid:count
statType: dcid:measuredValue
measurementDenominator: dcid:Count_Household
facilities: dcid:BankAccount
Node: dcid:Count_Household_Homeless
typeOf: dcid:StatisticalVariable
name: "Number of homeless households per 10,000 households"
populationType: dcid:Household
measuredProperty: dcid:count
statType: dcid:measuredValue
socialVulnerabilityStatus: dcid:Homeless
Node: dcid:Count_Household_IncomeOfIndianRupeeUpto5000_Rural
typeOf: dcid:StatisticalVariable
populationType: dcid:Household
measuredProperty: dcid:count
statType: dcid:measuredValue
income: dcid:IndianRupeeUpto5000
placeOfResidenceClassification: dcid:Rural
Node: dcid:Count_Household_PradhanMantriGramSadakYojana_Road_AsAFractionOf_Count_Household
typeOf: dcid:StatisticalVariable
name: "Targeted habitations connected by all-weather roads under Pradhan Mantri Gram Sadak Yojana (%)"
populationType: dcid:Household
measuredProperty: dcid:count
statType: dcid:measuredValue
measurementDenominator: dcid:Count_Household
benefitsStatus: dcid:PradhanMantriGramSadakYojana
facilities: dcid:Road
Node: dcid:Count_Household_PublicDistributionSystem_IncomeOfIndianRupeeUpto5000_Rural_AsAFractionOf_Count_Household_IncomeOfIndianRupeeUpto5000_Rural
typeOf: dcid:StatisticalVariable
name: "Ratio of rural households covered under public distribution system to rural households where monthly income of highest earning member is less than Rs.5,000"
populationType: dcid:Household
measuredProperty: dcid:count
statType: dcid:measuredValue
measurementDenominator: dcid:Count_Household_IncomeOfIndianRupeeUpto5000_Rural
benefitsStatus: dcid:PublicDistributionSystem
income: dcid:IndianRupeeUpto5000
placeOfResidenceClassification: dcid:Rural
Node: dcid:Count_Household_Toilet_Rural_AsAFractionOf_Count_Household_Rural
typeOf: dcid:StatisticalVariable
name: "Rural households with individual household toilets (%)"
populationType: dcid:Household
measuredProperty: dcid:count
statType: dcid:measuredValue
measurementDenominator: dcid:Count_Household_Rural
facilities: dcid:Toilet
placeOfResidenceClassification: dcid:Rural
Node: dcid:Count_Household_WithHealthSchemeOrWithHealthInsurance_AsAFractionOf_Count_Household
typeOf: dcid:StatisticalVariable
name: "Households with any usual member covered by any health scheme or health insurance (%)"
populationType: dcid:Household
measuredProperty: dcid:count
statType: dcid:measuredValue
measurementDenominator: dcid:Count_Household
healthInsurance: dcid:WithHealthScheme__WithHealthInsurance
Node: dcid:Count_MortalityEvent_YearsUpto5_AsAFractionOf_Count_BirthEvent_YearsUpto5_LiveBirth
typeOf: dcid:StatisticalVariable
name: "Under-five mortality rate per 1,000 live births"
populationType: dcid:MortalityEvent
measuredProperty: dcid:count
statType: dcid:measuredValue
measurementDenominator: dcid:Count_BirthEvent_YearsUpto5_LiveBirth
age: dcid:YearsUpto5
Node: dcid:Count_MunicipalWard
typeOf: dcid:StatisticalVariable
populationType: dcid:MunicipalWard
measuredProperty: dcid:count
statType: dcid:measuredValue
Node: dcid:Count_MunicipalWard_100Percent_DoorToDoorWasteCollection_AsAFractionOf_Count_MunicipalWard
typeOf: dcid:StatisticalVariable
name: "Wards with 100% door to door waste collection (%)"
populationType: dcid:MunicipalWard
measuredProperty: dcid:count
statType: dcid:measuredValue
measurementDenominator: dcid:Count_MunicipalWard
coverage: [100 Percent]
facilities: dcid:DoorToDoorWasteCollection
Node: dcid:Count_Person_15To49Year_Female_Married
typeOf: dcid:StatisticalVariable
populationType: dcid:Person
measuredProperty: dcid:count
statType: dcid:measuredValue
age: [15 49 Years]
gender: dcid:Female
maritalStatus: dcid:Married
Node: dcid:Count_Person_15To49Year_SpousalViolence_Female_Married_AsAFractionOf_Count_Person_15To49Year_Female_Married
typeOf: dcid:StatisticalVariable
name: "Married women aged 15-49 who have ever experienced spousal violence (%)"
populationType: dcid:Person
measuredProperty: dcid:count
statType: dcid:measuredValue
measurementDenominator: dcid:Count_Person_15To49Year_Female_Married
age: [15 49 Years]
crimeType: dcid:SpousalViolence
gender: dcid:Female
maritalStatus: dcid:Married
Node: dcid:Count_Person_1To2Year
typeOf: dcid:StatisticalVariable
populationType: dcid:Person
measuredProperty: dcid:count
statType: dcid:measuredValue
age: [1 2 Years]
Node: dcid:Count_Person_1To2Year_VaccineAdministered_BCGOrMeaslesOrPentavalent_AsAFractionOf_Count_Person_1To2Year
typeOf: dcid:StatisticalVariable
name: "Children aged 12-23 months fully immunized (BCG, Measles and three doses of Pentavalent vaccine) (%)"
populationType: dcid:Person
measuredProperty: dcid:count
statType: dcid:measuredValue
measurementDenominator: dcid:Count_Person_1To2Year
age: [1 2 Years]
vaccineStatus: dcid:VaccineAdministered
vaccineType: dcid:BCG__Measles__Pentavalent
Node: dcid:Count_Person_6To13Year
typeOf: dcid:StatisticalVariable
populationType: dcid:Person
measuredProperty: dcid:count
statType: dcid:measuredValue
age: [6 13 Years]
Node: dcid:Count_Person_6To13Year_NotEnrolledInSchool_AsAFractionOf_Count_Person_6To13Year
typeOf: dcid:StatisticalVariable
name: "Children in the age group of 6-13 who are out of school (%)"
populationType: dcid:Person
measuredProperty: dcid:count
statType: dcid:measuredValue
measurementDenominator: dcid:Count_Person_6To13Year
age: [6 13 Years]
schoolEnrollment: dcid:NotEnrolledInSchool
Node: dcid:Count_Person_ATM_AsAFractionOf_Count_Person
typeOf: dcid:StatisticalVariable
name: "Number of ATMs per 1,00,000 population"
populationType: dcid:Person
measuredProperty: dcid:count
statType: dcid:measuredValue
measurementDenominator: dcid:Count_Person
facilities: dcid:ATM
Node: dcid:Count_Person_Aadhaar_AsAFractionOf_Count_Person
typeOf: dcid:StatisticalVariable
name: "Population covered under Aadhaar (%)"
populationType: dcid:Person
measuredProperty: dcid:count
statType: dcid:measuredValue
measurementDenominator: dcid:Count_Person
governmentId: dcid:Aadhaar
Node: dcid:Count_Person_EligibleSocialProtectionBenefitUnderMaternityBenefit
typeOf: dcid:StatisticalVariable
populationType: dcid:Person
measuredProperty: dcid:count
statType: dcid:measuredValue
benefitsStatus: dcid:EligibleSocialProtectionBenefitUnderMaternityBenefit
Node: dcid:Count_Person_Employed_AsAFractionOf_Count_Person_MGNREGAUnemployed
typeOf: dcid:StatisticalVariable
name: "Persons provided employment as a percentage of persons who demanded employment under MGNREGA (%)"
populationType: dcid:Person
measuredProperty: dcid:count
statType: dcid:measuredValue
measurementDenominator: dcid:Count_Person_MGNREGAUnemployed
employmentStatus: dcid:Employed
Node: dcid:Count_Person_EnrolledInSchool_SchoolGrade1To10_AsAFractionOf_Count_Person
typeOf: dcid:StatisticalVariable
name: "Adjusted Net Enrolment Ratio at Elementary (Class 1-8) and Secondary (Class 9-10) school (%)"
populationType: dcid:Person
measuredProperty: dcid:count
statType: dcid:measuredValue
measurementDenominator: dcid:Count_Person
schoolEnrollment: dcid:EnrolledInSchool
schoolGradeLevel: dcid:SchoolGrade1To10
Node: dcid:Count_Person_Female_LegislatorOccupation_AsAFractionOf_Count_Person_LegislatorOccupation
typeOf: dcid:StatisticalVariable
name: "Seats won by women in the general elections to state legislative assembly (%)"
populationType: dcid:Person
measuredProperty: dcid:count
statType: dcid:measuredValue
measurementDenominator: dcid:Count_Person_LegislatorOccupation
gender: dcid:Female
occupation: dcid:Legislator
Node: dcid:Count_Person_Government_PhysicianOrNurseAndMidwivesOccupation_AsAFractionOf_Count_Person
typeOf: dcid:StatisticalVariable
name: "Number of governmental physicians, nurses and midwives per 1,00,000 population"
populationType: dcid:Person
measuredProperty: dcid:count
statType: dcid:measuredValue
measurementDenominator: dcid:Count_Person
employer: dcid:Government
occupation: dcid:Physician__NurseAndMidwives
Node: dcid:Count_Person_InLaborForce_Female_AsAFractionOf_Count_Person_InLaborForce_Male
typeOf: dcid:StatisticalVariable
name: "Ratio of Female Labour force participation rate to Male Labour force participation rate"
populationType: dcid:Person
measuredProperty: dcid:count
statType: dcid:measuredValue
measurementDenominator: dcid:Count_Person_InLaborForce_Male
employmentStatus: dcid:InLaborForce
gender: dcid:Female
Node: dcid:Count_Person_InLaborForce_Transgender_AsAFractionOf_Count_Person_Male
typeOf: dcid:StatisticalVariable
name: "Ratio of Transgender Labour force participation rate to Male Labour force participation rate"
populationType: dcid:Person
measuredProperty: dcid:count
statType: dcid:measuredValue
measurementDenominator: dcid:Count_Person_Male
employmentStatus: dcid:InLaborForce
gender: dcid:Transgender
Node: dcid:Count_Person_LegislatorOccupation
typeOf: dcid:StatisticalVariable
populationType: dcid:Person
measuredProperty: dcid:count
statType: dcid:measuredValue
occupation: dcid:Legislator
Node: dcid:Count_Person_MGNREGAUnemployed
typeOf: dcid:StatisticalVariable
populationType: dcid:Person
measuredProperty: dcid:count
statType: dcid:measuredValue
employmentStatus: dcid:MGNREGA_Unemployed
Node: dcid:Count_Person_MobileConnection_AsAFractionOf_Count_Person
typeOf: dcid:StatisticalVariable
name: "Number of mobile connections per 100 persons in rural and urban area (Mobile Tele density)"
populationType: dcid:Person
measuredProperty: dcid:count
statType: dcid:measuredValue
measurementDenominator: dcid:Count_Person
facilities: dcid:MobileConnection
Node: dcid:Count_Person_ReceivingSocialProtectionBenefitUnderMaternityBenefit_AsAFractionOf_Count_Person_EligibleSocialProtectionBenefitUnderMaternityBenefit
typeOf: dcid:StatisticalVariable
name: "Proportion of the population (out of total eligible population) receiving social protection benefits under Maternity Benefit"
populationType: dcid:Person
measuredProperty: dcid:count
statType: dcid:measuredValue
measurementDenominator: dcid:Count_Person_EligibleSocialProtectionBenefitUnderMaternityBenefit
benefitsStatus: dcid:ReceivingSocialProtectionBenefitUnderMaternityBenefit
Node: dcid:Count_Person_WithInternetSubscription_AsAFractionOf_Count_Person
typeOf: dcid:StatisticalVariable
name: "Number of Internet Subscribers per 100 population"
populationType: dcid:Person
measuredProperty: dcid:count
statType: dcid:measuredValue
measurementDenominator: dcid:Count_Person
internetAccessStatus: dcid:WithInternetSubscription
Node: dcid:Count_Person_YearsUpto5_ConditionStunted_AsAFractionOf_Count_Person_Upto5Years
typeOf: dcid:StatisticalVariable
name: "Children under age 5 years who are stunted (%)"
populationType: dcid:Person
measuredProperty: dcid:count
statType: dcid:measuredValue
measurementDenominator: dcid:Count_Person_Upto5Years
age: dcid:YearsUpto5
medicalCondition: dcid:Stunted
Node: dcid:Count_Place_District_OpenDefecationFree
typeOf: dcid:StatisticalVariable
name: "Districts verified to be Open Defecation Free (%)"
populationType: dcid:Place
measuredProperty: dcid:count
statType: dcid:measuredValue
placeType: dcid:District
socialCondition: dcid:OpenDefecationFree
Node: dcid:Count_School_ElementarySchool
typeOf: dcid:StatisticalVariable
populationType: dcid:School
measuredProperty: dcid:count
statType: dcid:measuredValue
schoolGradeLevel: dcid:ElementarySchool
Node: dcid:Count_School_ElementarySchool_StudentTeacherRatioUpto30_AsAFractionOf_Count_School_ElementarySchool
typeOf: dcid:StatisticalVariable
name: "Elementary and secondary schools with Pupil Teacher Ratio less than/equal to 30 (%)"
populationType: dcid:School
measuredProperty: dcid:count
statType: dcid:measuredValue
measurementDenominator: dcid:Count_School_ElementarySchool
schoolGradeLevel: dcid:ElementarySchool
studentTeacherRatio: dcid:StudentTeacherRatioUpto30
Node: dcid:Count_Student_Pass_SchoolGrade5_LanguageOrMathematicsOrEVS
typeOf: dcid:StatisticalVariable
name: "Correct responses on Learning Outcomes in Language, Mathematics and EVS for Class 5 students (%)"
populationType: dcid:Student
measuredProperty: dcid:count
statType: dcid:measuredValue
assessmentLevel: dcid:Pass
schoolGradeLevel: dcid:SchoolGrade5
schoolSubject: dcid:Language__Mathematics__EVS
Node: dcid:Count_Student_Pass_SchoolGrade8_LanguageOrMathematicsOrScienceOrSocialScience
typeOf: dcid:StatisticalVariable
name: "Correct responses on Learning Outcomes in Language, Mathematics, Science and Social Science for Class 8 students (%)"
populationType: dcid:Student
measuredProperty: dcid:count
statType: dcid:measuredValue
assessmentLevel: dcid:Pass
schoolGradeLevel: dcid:SchoolGrade8
schoolSubject: dcid:Language__Mathematics__Science__SocialScience
Node: dcid:Count_Teacher_ProfessionallyQualified_AsAFractionOf_Count_Teacher
typeOf: dcid:StatisticalVariable
name: "School teachers professionally qualified (%)"
populationType: dcid:Teacher
measuredProperty: dcid:count
statType: dcid:measuredValue
measurementDenominator: dcid:Count_Teacher
qualificationStatus: dcid:ProfessionallyQualified
Node: dcid:Count_Village
typeOf: dcid:StatisticalVariable
populationType: dcid:Village
measuredProperty: dcid:count
statType: dcid:measuredValue
Node: dcid:Count_Village_BharatNetBroadbandService_AsAFractionOf_Count_Village
typeOf: dcid:StatisticalVariable
name: "Gram Panchayats covered under Bharat Net (%)"
populationType: dcid:Village
measuredProperty: dcid:count
statType: dcid:measuredValue
measurementDenominator: dcid:Count_Village
facilities: dcid:BharatNetBroadbandService
Node: dcid:Count_WHO/PregnantWomen_15To49Year
typeOf: dcid:StatisticalVariable
populationType: dcid:WHO/PregnantWomen
measuredProperty: dcid:count
statType: dcid:measuredValue
age: [15 49 Years]
Node: dcid:Count_WHO/PregnantWomen_15To49Year_ConditionAnaemia_AsAFractionOf_Count_WHO/PregnantWomen_15To49Year
typeOf: dcid:StatisticalVariable
name: "Pregnant women aged 15-49 yrs who are anaemic (11.0g/dl) (%)"
populationType: dcid:WHO/PregnantWomen
measuredProperty: dcid:count
statType: dcid:measuredValue
measurementDenominator: dcid:Count_WHO/PregnantWomen_15To49Year
age: [15 49 Years]
medicalCondition: dcid:Anaemia
Node: dcid:Count_WasteGenerated
typeOf: dcid:StatisticalVariable
populationType: dcid:WasteGenerated
measuredProperty: dcid:count
statType: dcid:measuredValue
Node: dcid:Count_WasteGenerated_Processed_AsAFractionOf_Count_WasteGenerated
typeOf: dcid:StatisticalVariable
name: "Waste processed (%)"
populationType: dcid:WasteGenerated
measuredProperty: dcid:count
statType: dcid:measuredValue
measurementDenominator: dcid:Count_WasteGenerated
processingStatus: dcid:Processed
Node: dcid:Demand_House
typeOf: dcid:StatisticalVariable
populationType: dcid:House
measuredProperty: dcid:demand
statType: dcid:measuredValue
Node: dcid:ElectrifiedHouseholds_Household_AsAFractionOf_Count_Household
typeOf: dcid:StatisticalVariable
name: "Households electrified (%)"
populationType: dcid:Household
measuredProperty: dcid:electrifiedHouseholds
statType: dcid:measuredValue
measurementDenominator: dcid:Count_Household
Node: dcid:GeneratedSewage_Place_Urban
typeOf: dcid:StatisticalVariable
populationType: dcid:Place
measuredProperty: dcid:generatedSewage
statType: dcid:measuredValue
placeOfResidenceClassification: dcid:Urban
Node: dcid:PalmaRatio_Expenditure_Household_Rural
typeOf: dcid:StatisticalVariable
name: "Palma Ratio of Household Expenditure in Rural India"
populationType: dcid:Household
measuredProperty: dcid:expenditure
statType: dcid:palmaRatio
placeOfResidenceClassification: dcid:Rural
Node: dcid:PalmaRatio_Expenditure_Household_Urban
typeOf: dcid:StatisticalVariable
name: "Palma Ratio of Household Expenditure in Urban India"
populationType: dcid:Household
measuredProperty: dcid:expenditure
statType: dcid:palmaRatio
placeOfResidenceClassification: dcid:Urban
Node: dcid:WagesDaily_Person_15To59Year_Female_AsAFractionOf_WagesDaily_Person_15To59Year_Male
typeOf: dcid:StatisticalVariable
name: "Average female to male ratio of average wages/salaries received per day by regular wage/salaried employees of age 15-59 for rural and urban"
populationType: dcid:Person
measuredProperty: dcid:wagesDaily
statType: dcid:measuredValue
measurementDenominator: dcid:WagesDaily_Person_15To59Year_Male
age: [15 59 Years]
gender: dcid:Female
Node: dcid:WagesDaily_Person_15To59Year_Male
typeOf: dcid:StatisticalVariable
populationType: dcid:Person
measuredProperty: dcid:wagesDaily
statType: dcid:measuredValue
age: [15 59 Years]
gender: dcid:Male
Node: dcid:Capacity_Place_SewageTreatement_Urban
typeOf: dcid:StatisticalVariable
populationType: dcid:Place
measuredProperty: dcid:capacity
statType: dcid:measuredValue
facilities: dcid:SewageTreatement
placeOfResidenceClassification: dcid:Urban
Node: dcid:Count_Person_0To4Year_Underweight
typeOf: dcid:StatisticalVariable
populationType: dcid:Person
measuredProperty: dcid:count
statType: dcid:measuredValue
age: [0 4 Years]
healthBehavior: dcid:Underweight
Node: dcid:Count_Person_15To49Year_Adolescents
typeOf: dcid:StatisticalVariable
populationType: dcid:Person
measuredProperty: dcid:count
statType: dcid:measuredValue
age: [15 49 Years]
ageGroupClassification: dcid:Adolescents
Node: dcid:Count_Person_15To49Year_Adolescents_ConditionAnaemia_AsAFractionOf_Count_Person_15To49Year_Adolescents
typeOf: dcid:StatisticalVariable
populationType: dcid:Person
measuredProperty: dcid:count
statType: dcid:measuredValue
measurementDenominator: dcid:Count_Person_15To49Year_Adolescents
age: [15 49 Years]
ageGroupClassification: dcid:Adolescents
medicalCondition: dcid:Anaemia
Node: dcid:Count_Person_EnrolledInSchool_SchoolGrade1To8_AsAFractionOf_Count_Person
typeOf: dcid:StatisticalVariable
name: "Adjusted Net Enrolment Ratio (ANER) in elementary education (class 1-8)"
populationType: dcid:Person
measuredProperty: dcid:count
statType: dcid:measuredValue
measurementDenominator: dcid:Count_Person
schoolEnrollment: dcid:EnrolledInSchool
schoolGradeLevel: dcid:SchoolGrade1To8
Node: dcid:Count_Person_15To19Year_InLaborForce_Female_AsAFractionOf_Count_Person_15To19Year_InLaborForce_Male
typeOf: dcid:StatisticalVariable
name: "Ratio of female to male Labour Force Participation Rate (LFPR) (15-59 years)"
populationType: dcid:Person
measuredProperty: dcid:count
statType: dcid:measuredValue
measurementDenominator: dcid:Count_Person_15To19Year_InLaborForce_Male
age: [15 19 Years]
employmentStatus: dcid:InLaborForce
gender: dcid:Female
Node: dcid:Count_Person_15To19Year_InLaborForce_Male
typeOf: dcid:StatisticalVariable
populationType: dcid:Person
measuredProperty: dcid:count
statType: dcid:measuredValue
age: [15 19 Years]
employmentStatus: dcid:InLaborForce
gender: dcid:Male
Node: dcid:Count_Person_PradhanMantriJanDhanYojana_BankAccount_AsAFractionOf_Count_Person
typeOf: dcid:StatisticalVariable
populationType: dcid:Person
measuredProperty: dcid:count
statType: dcid:measuredValue
measurementDenominator: dcid:Count_Person
benefitsStatus: dcid:PradhanMantriJanDhanYojana
facilities: dcid:BankAccount
Node: dcid:UnemploymentRate_Person_15To59Year
typeOf: dcid:StatisticalVariable
name: "Unemployment rate (%) (15-59 years)"
populationType: dcid:Person
measuredProperty: dcid:unemploymentRate
statType: dcid:measuredValue
age: [15 59 Years]
Node: dcid:Count_Households
typeOf: dcid:StatisticalVariable
populationType: dcid:Households
measuredProperty: dcid:count
statType: dcid:measuredValue
Node: dcid:Count_Households_PradhanMantriGramSadakYojana_Road_AsAFractionOf_Count_Households
typeOf: dcid:StatisticalVariable
populationType: dcid:Households
measuredProperty: dcid:count
statType: dcid:measuredValue
measurementDenominator: dcid:Count_Households
benefitsStatus: dcid:PradhanMantriGramSadakYojana
facilities: dcid:Road
Node: dcid:IndexScore_Household_WithHealthSchemeOrWithHealthInsurance
typeOf: dcid:StatisticalVariable
populationType: dcid:Household
measuredProperty: dcid:indexScore
statType: dcid:measuredValue
healthInsurance: dcid:WithHealthScheme__WithHealthInsurance
Node: dcid:IndexScore_Person_BelowPovertyLevelInThePast12Months
typeOf: dcid:StatisticalVariable
populationType: dcid:Person
measuredProperty: dcid:indexScore
statType: dcid:measuredValue
povertyStatus: dcid:BelowPovertyLevelInThePast12Months
Node: dcid:IndexScore_Person_ReceivingSocialProtectionBenefitUnderMaternityBenefit
typeOf: dcid:StatisticalVariable
populationType: dcid:Person
measuredProperty: dcid:indexScore
statType: dcid:measuredValue
benefitsStatus: dcid:ReceivingSocialProtectionBenefitUnderMaternityBenefit
Node: dcid:IndexScore_EconomicActivity_UtilisedScheduledCasteSubPlanFund
typeOf: dcid:StatisticalVariable
populationType: dcid:EconomicActivity
measuredProperty: dcid:indexScore
statType: dcid:measuredValue
benefitsStatus: dcid:UtilisedScheduledCasteSubPlanFund
Node: dcid:IndexScore_EconomicActivity_UtilisedTribalSubPlanFund
typeOf: dcid:StatisticalVariable
populationType: dcid:EconomicActivity
measuredProperty: dcid:indexScore
statType: dcid:measuredValue
benefitsStatus: dcid:UtilisedTribalSubPlanFund
Node: dcid:IndexScore_House_PradhanMantriAwasYojana
typeOf: dcid:StatisticalVariable
populationType: dcid:House
measuredProperty: dcid:indexScore
statType: dcid:measuredValue
benefitsStatus: dcid:PradhanMantriAwasYojana
Node: dcid:IndexScore_MunicipalWard_100Percent_DoorToDoorWasteCollection
typeOf: dcid:StatisticalVariable
populationType: dcid:MunicipalWard
measuredProperty: dcid:indexScore
statType: dcid:measuredValue
coverage: [100 Percent]
facilities: dcid:DoorToDoorWasteCollection
Node: dcid:IndexScore_Place_SewageTreatement_Urban
typeOf: dcid:StatisticalVariable
populationType: dcid:Place
measuredProperty: dcid:indexScore
statType: dcid:measuredValue
facilities: dcid:SewageTreatement
placeOfResidenceClassification: dcid:Urban
Node: dcid:IndexScore_WasteGenerated_Processed
typeOf: dcid:StatisticalVariable
populationType: dcid:WasteGenerated
measuredProperty: dcid:indexScore
statType: dcid:measuredValue
processingStatus: dcid:Processed
Node: dcid:Annual_IndexScore_Water
typeOf: dcid:StatisticalVariable
populationType: dcid:Water
measuredProperty: dcid:indexScore
measurementQualifier: dcid:Annual
statType: dcid:measuredValue
Node: dcid:IndexScore_Electricity_Renewables
typeOf: dcid:StatisticalVariable
populationType: dcid:Electricity
measuredProperty: dcid:indexScore
statType: dcid:measuredValue
energySource: dcid:Renewables
Node: dcid:IndexScore_BirthEvent_Registered
typeOf: dcid:StatisticalVariable
populationType: dcid:BirthEvent
measuredProperty: dcid:indexScore
statType: dcid:measuredValue
registrationStatus: dcid:Registered
Node: dcid:IndexScore_Courthouse
typeOf: dcid:StatisticalVariable
populationType: dcid:Courthouse
measuredProperty: dcid:indexScore
statType: dcid:measuredValue
Node: dcid:IndexScore_CriminalActivities_MurderAndNonNegligentManslaughter
typeOf: dcid:StatisticalVariable
populationType: dcid:CriminalActivities
measuredProperty: dcid:indexScore
statType: dcid:measuredValue
crimeType: dcid:MurderAndNonNegligentManslaughter
Node: dcid:IndexScore_CriminalIncidents_CorruptionCrime
typeOf: dcid:StatisticalVariable
populationType: dcid:CriminalIncidents
measuredProperty: dcid:indexScore
statType: dcid:measuredValue
crimeType: dcid:CorruptionCrime
Node: dcid:IndexScore_CriminalIncidents_CrimeAgainstChildren
typeOf: dcid:StatisticalVariable
name: "Reported cognizable crimes against children per 1 lakh population"
populationType: dcid:CriminalIncidents
measuredProperty: dcid:indexScore
statType: dcid:measuredValue
crimeType: dcid:CrimeAgainstChildren
Node: dcid:IndexScore_Person_Aadhaar
typeOf: dcid:StatisticalVariable
populationType: dcid:Person
measuredProperty: dcid:indexScore
statType: dcid:measuredValue
governmentId: dcid:Aadhaar
Node: dcid:Count_Person_6To59Year
typeOf: dcid:StatisticalVariable
populationType: dcid:Person
measuredProperty: dcid:count
statType: dcid:measuredValue
age: [6 59 Years]
Node: dcid:Count_Person_6To59Year_ConditionAnaemia_AsAFractionOf_Count_Person_6To59Year
typeOf: dcid:StatisticalVariable
populationType: dcid:Person
measuredProperty: dcid:count
statType: dcid:measuredValue
measurementDenominator: dcid:Count_Person_6To59Year
age: [6 59 Years]
medicalCondition: dcid:Anaemia
Node: dcid:IndexScore_Household_PublicDistributionSystem_IncomeOfIndianRupeeUpto5000_Rural
typeOf: dcid:StatisticalVariable
populationType: dcid:Household
measuredProperty: dcid:indexScore
statType: dcid:measuredValue
benefitsStatus: dcid:PublicDistributionSystem
income: dcid:IndianRupeeUpto5000
placeOfResidenceClassification: dcid:Rural
Node: dcid:IndexScore_Person_0To4Year_Underweight
typeOf: dcid:StatisticalVariable
populationType: dcid:Person
measuredProperty: dcid:indexScore
statType: dcid:measuredValue
age: [0 4 Years]
healthBehavior: dcid:Underweight
Node: dcid:IndexScore_Person_6To59Year_ConditionAnaemia
typeOf: dcid:StatisticalVariable
populationType: dcid:Person
measuredProperty: dcid:indexScore
statType: dcid:measuredValue
age: [6 59 Years]
medicalCondition: dcid:Anaemia
Node: dcid:IndexScore_Person_YearsUpto5_ConditionStunted
typeOf: dcid:StatisticalVariable
populationType: dcid:Person
measuredProperty: dcid:indexScore
statType: dcid:measuredValue
age: dcid:YearsUpto5
medicalCondition: dcid:Stunted
Node: dcid:Annual_IndexScore_MedicalConditionIncident_ConditionTuberculosis
typeOf: dcid:StatisticalVariable
populationType: dcid:MedicalConditionIncident
measuredProperty: dcid:indexScore
measurementQualifier: dcid:Annual
statType: dcid:measuredValue
medicalCondition: dcid:Tuberculosis
Node: dcid:IndexScore_MaternalMortalityEvent
typeOf: dcid:StatisticalVariable
populationType: dcid:MaternalMortalityEvent
measuredProperty: dcid:indexScore
statType: dcid:measuredValue
Node: dcid:IndexScore_MortalityEvent_YearsUpto5
typeOf: dcid:StatisticalVariable
populationType: dcid:MortalityEvent
measuredProperty: dcid:indexScore
statType: dcid:measuredValue
age: dcid:YearsUpto5
Node: dcid:IndexScore_Person_Government_PhysicianOrNurseAndMidwivesOccupation
typeOf: dcid:StatisticalVariable
populationType: dcid:Person
measuredProperty: dcid:indexScore
statType: dcid:measuredValue
employer: dcid:Government
occupation: dcid:Physician__NurseAndMidwives
Node: dcid:IndexScore_Person_6To13Year_NotEnrolledInSchool
typeOf: dcid:StatisticalVariable
populationType: dcid:Person
measuredProperty: dcid:indexScore
statType: dcid:measuredValue
age: [6 13 Years]
schoolEnrollment: dcid:NotEnrolledInSchool
Node: dcid:IndexScore_Person_EnrolledInSchool_SchoolGrade1To10
typeOf: dcid:StatisticalVariable
populationType: dcid:Person
measuredProperty: dcid:indexScore
statType: dcid:measuredValue
schoolEnrollment: dcid:EnrolledInSchool
schoolGradeLevel: dcid:SchoolGrade1To10
Node: dcid:IndexScore_School_ElementarySchool_StudentTeacherRatioUpto30
typeOf: dcid:StatisticalVariable
populationType: dcid:School
measuredProperty: dcid:indexScore
statType: dcid:measuredValue
schoolGradeLevel: dcid:ElementarySchool
studentTeacherRatio: dcid:StudentTeacherRatioUpto30
Node: dcid:IndexScore_Student_SecondarySchool
typeOf: dcid:StatisticalVariable
populationType: dcid:Student
measuredProperty: dcid:indexScore
statType: dcid:measuredValue
levelOfSchool: dcid:SecondarySchool
Node: dcid:IndexScore_Person_15To49Year_SpousalViolence_Female_Married
typeOf: dcid:StatisticalVariable
populationType: dcid:Person
measuredProperty: dcid:indexScore
statType: dcid:measuredValue
age: [15 49 Years]
crimeType: dcid:SpousalViolence
gender: dcid:Female
maritalStatus: dcid:Married
Node: dcid:IndexScore_Person_Female_LegislatorOccupation
typeOf: dcid:StatisticalVariable
populationType: dcid:Person
measuredProperty: dcid:indexScore
statType: dcid:measuredValue
gender: dcid:Female
occupation: dcid:Legislator
Node: dcid:Count_Household_Toilet_Urban_AsAFractionOf_Count_Household_Urban
typeOf: dcid:StatisticalVariable
populationType: dcid:Household
measuredProperty: dcid:count
statType: dcid:measuredValue
measurementDenominator: dcid:Count_Household_Urban
facilities: dcid:Toilet
placeOfResidenceClassification: dcid:Urban
Node: dcid:IndexScore_Household_Toilet_Rural
typeOf: dcid:StatisticalVariable
populationType: dcid:Household
measuredProperty: dcid:indexScore
statType: dcid:measuredValue
facilities: dcid:Toilet
placeOfResidenceClassification: dcid:Rural
Node: dcid:IndexScore_Household_Toilet_Urban
typeOf: dcid:StatisticalVariable
populationType: dcid:Household
measuredProperty: dcid:indexScore
statType: dcid:measuredValue
facilities: dcid:Toilet
placeOfResidenceClassification: dcid:Urban
Node: dcid:IndexScore_Place_District_OpenDefecationFree
typeOf: dcid:StatisticalVariable
populationType: dcid:Place
measuredProperty: dcid:indexScore
statType: dcid:measuredValue
placeType: dcid:District
socialCondition: dcid:OpenDefecationFree
Node: dcid:IndexScore_Household_ElectrifiedHouseholds
typeOf: dcid:StatisticalVariable
name: "Index Score electrifiedHouseholds"
populationType: dcid:Household
measuredProperty: dcid:indexScore
statType: dcid:measuredValue
indexProperty: dcid:electrifiedHouseholds
Node: dcid:IndexScore_Household_BankAccount
typeOf: dcid:StatisticalVariable
populationType: dcid:Household
measuredProperty: dcid:indexScore
statType: dcid:measuredValue
facilities: dcid:BankAccount
Node: dcid:IndexScore_Person_UnemploymentRate
typeOf: dcid:StatisticalVariable
name: "Index Score unemploymentRate"
populationType: dcid:Person
measuredProperty: dcid:indexScore
statType: dcid:measuredValue
indexProperty: dcid:unemploymentRate
Node: dcid:IndexScore_Households_PradhanMantriGramSadakYojana_Road
typeOf: dcid:StatisticalVariable
populationType: dcid:Households
measuredProperty: dcid:indexScore
statType: dcid:measuredValue
benefitsStatus: dcid:PradhanMantriGramSadakYojana
facilities: dcid:Road