-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsdg.owl
2552 lines (2133 loc) · 158 KB
/
sdg.owl
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
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix hasco: <http://hadatac.org/ont/hasco/> .
@prefix oboinowl: <http://www.geneontology.org/formats/oboInOwl#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sdg: <http://purl.unep.org/sdg/> .
@prefix sdo: <http://schema.org/> .
@prefix sio: <http://semanticscience.org/resource/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix void: <http://rdfs.org/ns/void#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<http://purl.org/seva/sdg> a owl:Ontology ;
owl:imports <https://raw.githubusercontent.com/SDG-InterfaceOntology/sdgio/master/sdgio.owl> .
sdg:SDGIO_00020002 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 1.2.2" ;
skos:prefLabel "Proportion of men, women and children of all ages living in poverty in all its dimensions according to national definitions" .
sdg:SDGIO_00020005 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 1.4.2" ;
skos:prefLabel "Proportion of total adult population with secure tenure rights to land, with legally recognized documentation and who perceive their rights to land as secure, by sex and by type of tenure" .
sdg:SDGIO_00020010 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 1.a.1" ;
skos:prefLabel "Proportion of domestically generated resources allocated by the government directly to poverty reduction programmes" .
sdg:SDGIO_00020012 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 1.a.3" ;
skos:prefLabel "Sum of total grants and non-debt-creating inflows directly allocated to poverty reduction programmes as a proportion of GDP" .
sdg:SDGIO_00020013 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 1.b.1" ;
skos:prefLabel "Proportion of government recurrent and capital spending to sectors that disproportionately benefit women, the poor and vulnerable groups" .
sdg:SDGIO_00020020 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 2.4.1" ;
skos:prefLabel "Proportion of agricultural area under productive and sustainable agriculture" .
sdg:SDGIO_00020038 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 3.5.1" ;
skos:prefLabel "Coverage of treatment interventions (pharmacological, psychosocial and rehabilitation and aftercare services) for substance use disorders" .
sdg:SDGIO_00020051 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 3.b.3" ;
skos:prefLabel "Proportion of health facilities that have a core set of relevant essential medicines available and affordable on a sustainable basis" .
sdg:SDGIO_00020061 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 4.7.1" ;
skos:prefLabel "Extent to which (i) global citizenship education and (ii) education for sustainable development, including gender equality and human rights, are mainstreamed at all levels in: (a) national education policies; (b) curricula; (c) teacher education; and (d) student assessment" .
sdg:SDGIO_00020067 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 5.2.2" ;
skos:prefLabel "Proportion of women and girls aged 15 years and older subjected to sexual violence by persons other than an intimate partner in the previous 12 months, by age and place of occurrence" .
sdg:SDGIO_00020074 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 5.6.2" ;
skos:prefLabel "Number of countries with laws and regulations that guarantee full and equal access to women and men aged 15 years and older to sexual and reproductive health care, information and education" .
sdg:SDGIO_00020075 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 5.a.1" ;
skos:prefLabel "(a) Proportion of total agricultural population with ownership or secure rights over agricultural land, by sex; and (b) share of women among owners or rights-bearers of agricultural land, by type of tenure" .
sdg:SDGIO_00020076 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 5.a.2" ;
skos:prefLabel "Proportion of countries where the legal framework (including customary law) guarantees women’s equal rights to land ownership and/or control" .
sdg:SDGIO_00020095 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 7.b.1" ;
skos:prefLabel "Investments in energy efficiency as a proportion of GDP and the amount of foreign direct investment in financial transfer for infrastructure and technology to sustainable development services" .
sdg:SDGIO_00020106 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 8.8.2" ;
skos:prefLabel "Level of national compliance of labour rights (freedom of association and collective bargaining) based on International Labour Organization (ILO) textual sources and national legislation, by sex and migrant status" .
sdg:SDGIO_00020107 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 8.9.1" ;
skos:prefLabel "Tourism direct GDP as a proportion of total GDP and in growth rate" .
sdg:SDGIO_00020108 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 8.9.2" ;
skos:prefLabel "Proportion of jobs in sustainable tourism industries out of total tourism jobs" .
sdg:SDGIO_00020112 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 8.b.1" ;
skos:prefLabel "Existence of a developed and operationalized national strategy for youth employment, as a distinct strategy or as part of a national employment strategy" .
sdg:SDGIO_00020113 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 9.1.1" ;
skos:prefLabel "Proportion of the rural population who live within 2 km of an all-season road" .
sdg:SDGIO_00020126 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 10.2.1" ;
skos:prefLabel "Proportion of people living below 50 per cent of median income, by sex, age and persons with disabilities" .
sdg:SDGIO_00020127 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 10.3.1" ;
skos:prefLabel "Proportion of population reporting having personally felt discriminated against or harassed in the previous 12 months on the basis of a ground of discrimination prohibited under international human rights law" .
sdg:SDGIO_00020131 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 10.7.1" ;
skos:prefLabel "Recruitment cost borne by employee as a proportion of yearly income earned in country of destination" .
sdg:SDGIO_00020132 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 10.7.2" ;
skos:prefLabel "Number of countries that have implemented well-managed migration policies" .
sdg:SDGIO_00020137 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 11.2.1" ;
skos:prefLabel "Proportion of population that has convenient access to public transport, by sex, age and persons with disabilities" .
sdg:SDGIO_00020138 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 11.3.1" ;
skos:prefLabel "Ratio of land consumption rate to population growth rate" .
sdg:SDGIO_00020139 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 11.3.2" ;
skos:prefLabel "Proportion of cities with a direct participation structure of civil society in urban planning and management that operate regularly and democratically" .
sdg:SDGIO_00020140 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 11.4.1" ;
skos:prefLabel "Total expenditure (public and private) per capita spent on the preservation, protection and conservation of all cultural and natural heritage, by type of heritage (cultural, natural, mixed and World Heritage Centre designation), level of government (national, regional and local/municipal), type of expenditure (operating expenditure/investment) and type of private funding (donations in kind, private non-profit sector and sponsorship)" .
sdg:SDGIO_00020144 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 11.7.1" ;
skos:prefLabel "Average share of the built-up area of cities that is open space for public use for all, by sex, age and persons with disabilities" .
sdg:SDGIO_00020145 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 11.7.2" ;
skos:prefLabel "Proportion of persons victim of physical or sexual harassment, by sex, age, disability status and place of occurrence, in the previous 12 months" .
sdg:SDGIO_00020146 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 11.a.1" ;
skos:prefLabel "Proportion of population living in cities that implement urban and regional development plans integrating population projections and resource needs, by size of city" .
sdg:SDGIO_00020147 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 11.c.1" ;
skos:prefLabel "Proportion of financial support to the least developed countries that is allocated to the construction and retrofitting of sustainable, resilient and resource-efficient buildings utilizing local materials" .
sdg:SDGIO_00020149 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 12.3.1" ;
skos:prefLabel "Global food loss index" .
sdg:SDGIO_00020151 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 12.4.2" ;
skos:prefLabel "Hazardous waste generated per capita and proportion of hazardous waste treated, by type of treatment" .
sdg:SDGIO_00020152 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 12.5.1" ;
skos:prefLabel "National recycling rate, tons of material recycled" .
sdg:SDGIO_00020153 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 12.6.1" ;
skos:prefLabel "Number of companies publishing sustainability reports" .
sdg:SDGIO_00020154 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 12.7.1" ;
skos:prefLabel "Number of countries implementing sustainable public procurement policies and action plans" .
sdg:SDGIO_00020155 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 12.8.1" ;
skos:prefLabel "Extent to which (i) global citizenship education and (ii) education for sustainable development (including climate change education) are mainstreamed in (a) national education policies; (b) curricula; (c) teacher education; and (d) student assessment" .
sdg:SDGIO_00020156 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 12.a.1" ;
skos:prefLabel "Amount of support to developing countries on research and development for sustainable consumption and production and environmentally sound technologies" .
sdg:SDGIO_00020157 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 12.b.1" ;
skos:prefLabel "Number of sustainable tourism strategies or policies and implemented action plans with agreed monitoring and evaluation tools" .
sdg:SDGIO_00020159 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 13.2.1" ;
skos:prefLabel "Number of countries that have communicated the establishment or operationalization of an integrated policy/strategy/plan which increases their ability to adapt to the adverse impacts of climate change, and foster climate resilience and low greenhouse gas emissions development in a manner that does not threaten food production (including a national adaptation plan, nationally determined contribution, national communication, biennial update report or other)" .
sdg:SDGIO_00020160 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 13.3.1" ;
skos:prefLabel "Number of countries that have integrated mitigation, adaptation, impact reduction and early warning into primary, secondary and tertiary curricula" .
sdg:SDGIO_00020161 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 13.3.2" ;
skos:prefLabel "Number of countries that have communicated the strengthening of institutional, systemic and individual capacity-building to implement adaptation, mitigation and technology transfer, and development actions" .
sdg:SDGIO_00020162 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 13.a.1" ;
skos:prefLabel "Mobilized amount of United States dollars per year between 2020 and 2025 accountable towards the $100 billion commitment" .
sdg:SDGIO_00020163 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 13.b.1" ;
skos:prefLabel "Number of least developed countries and small island developing States that are receiving specialized support, and amount of support, including finance, technology and capacity-building, for mechanisms for raising capacities for effective climate change-related planning and management, including focusing on women, youth and local and marginalized communities" .
sdg:SDGIO_00020164 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 14.1.1" ;
skos:prefLabel "Index of coastal eutrophication and floating plastic debris density" .
sdg:SDGIO_00020165 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 14.2.1" ;
skos:prefLabel "Proportion of national exclusive economic zones managed using ecosystem-based approaches" .
sdg:SDGIO_00020166 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 14.3.1" ;
skos:prefLabel "Average marine acidity (pH) measured at agreed suite of representative sampling stations" .
sdg:SDGIO_00020170 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 14.7.1" ;
skos:prefLabel "Sustainable fisheries as a proportion of GDP in small island developing States, least developed countries and all countries" .
sdg:SDGIO_00020173 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 14.c.1" ;
skos:prefLabel "Number of countries making progress in ratifying, accepting and implementing through legal, policy and institutional frameworks, ocean-related instruments that implement international law, as reflected in the United Nation Convention on the Law of the Sea, for the conservation and sustainable use of the oceans and their resources" .
sdg:SDGIO_00020182 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 15.7.1" ;
skos:prefLabel "Proportion of traded wildlife that was poached or illicitly trafficked" .
sdg:SDGIO_00020183 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 15.8.1" ;
skos:prefLabel "Proportion of countries adopting relevant national legislation and adequately resourcing the prevention or control of invasive alien species" .
sdg:SDGIO_00020184 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 15.9.1" ;
skos:prefLabel "Progress towards national targets established in accordance with Aichi Biodiversity Target 2 of the Strategic Plan for Biodiversity 2011-2020" .
sdg:SDGIO_00020187 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 16.1.2" ;
skos:prefLabel "Conflict-related deaths per 100,000 population, by sex, age and cause" .
sdg:SDGIO_00020195 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 16.4.1" ;
skos:prefLabel "Total value of inward and outward illicit financial flows (in current United States dollars)" .
sdg:SDGIO_00020196 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 16.4.2" ;
skos:prefLabel "Proportion of seized, found or surrendered arms whose illicit origin or context has been traced or established by a competent authority in line with international instruments" .
sdg:SDGIO_00020200 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 16.6.2" ;
skos:prefLabel "Proportion of population satisfied with their last experience of public services" .
sdg:SDGIO_00020201 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 16.7.1" ;
skos:prefLabel "Proportions of positions (by sex, age, persons with disabilities and population groups) in public institutions (national and local legislatures, public service, and judiciary) compared to national distributions" .
sdg:SDGIO_00020202 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 16.7.2" ;
skos:prefLabel "Proportion of population who believe decision-making is inclusive and responsive, by sex, age, disability and population group" .
sdg:SDGIO_00020210 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 17.3.1" ;
skos:prefLabel "Foreign direct investments (FDI), official development assistance and South-South Cooperation as a proportion of total domestic budget" .
sdg:SDGIO_00020213 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 17.5.1" ;
skos:prefLabel "Number of countries that adopt and implement investment promotion regimes for least developed countries" .
sdg:SDGIO_00020214 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 17.6.1" ;
skos:prefLabel "Number of science and/or technology cooperation agreements and programmes between countries, by type of cooperation" .
sdg:SDGIO_00020216 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 17.7.1" ;
skos:prefLabel "Total amount of approved funding for developing countries to promote the development, transfer, dissemination and diffusion of environmentally sound technologies" .
sdg:SDGIO_00020222 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 17.13.1" ;
skos:prefLabel "Macroeconomic Dashboard" .
sdg:SDGIO_00020223 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 17.14.1" ;
skos:prefLabel "Number of countries with mechanisms in place to enhance policy coherence of sustainable development" .
sdg:SDGIO_00020226 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 17.17.1" ;
skos:prefLabel "Amount of United States dollars committed to public-private and civil society partnerships" .
sdg:SDGIO_00020227 a <http://purl.org/seva/SDGIndicatorType> ;
dct:title "SDG Indicator 17.18.1" ;
skos:prefLabel "Proportion of sustainable development indicators produced at the national level with full disaggregation when relevant to the target, in accordance with the Fundamental Principles of Official Statistics" .
sdg:SDGIO_00000077 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/1.b> ;
dct:title "SDG Target 1.b" ;
skos:broader sdg:SDGIO_00000035 ;
skos:prefLabel "Create sound policy frameworks at the national, regional and international levels, based on pro-poor and gender-sensitive development strategies, to support accelerated investment in poverty eradication actions" .
sdg:SDGIO_00000081 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/2.4> ;
dct:title "SDG Target 2.4" ;
skos:broader sdg:SDGIO_00000036 ;
skos:prefLabel "By 2030, ensure sustainable food production systems and implement resilient agricultural practices that increase productivity and production, that help maintain ecosystems, that strengthen capacity for adaptation to climate change, extreme weather, drought, flooding and other disasters and that progressively improve land and soil quality" .
sdg:SDGIO_00000105 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/4.7> ;
dct:title "SDG Target 4.7" ;
skos:broader sdg:SDGIO_00000038 ;
skos:prefLabel "By 2030, ensure that all learners acquire the knowledge and skills needed to promote sustainable development, including, among others, through education for sustainable development and sustainable lifestyles, human rights, gender equality, promotion of a culture of peace and non-violence, global citizenship and appreciation of cultural diversity and of culture's contribution to sustainable development" .
sdg:SDGIO_00000115 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/5.a> ;
dct:title "SDG Target 5.a" ;
skos:broader sdg:SDGIO_00000039 ;
skos:prefLabel "Undertake reforms to give women equal rights to economic resources, as well as access to ownership and control over land and other forms of property, financial services, inheritance and natural resources, in accordance with national laws" .
sdg:SDGIO_00000130 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/7.b> ;
dct:title "SDG Target 7.b" ;
skos:broader sdg:SDGIO_00000041 ;
skos:prefLabel "By 2030, expand infrastructure and upgrade technology for supplying modern and sustainable energy services for all in developing countries, in particular least developed countries, small island developing States and landlocked developing countries, in accordance with their respective programmes of support" .
sdg:SDGIO_00000139 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/8.9> ;
dct:title "SDG Target 8.9" ;
skos:broader sdg:SDGIO_00000042 ;
skos:prefLabel "By 2030, devise and implement policies to promote sustainable tourism that creates jobs and promotes local culture and products" .
sdg:SDGIO_00000142 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/8.b> ;
dct:title "SDG Target 8.b" ;
skos:broader sdg:SDGIO_00000042 ;
skos:prefLabel "By 2020, develop and operationalize a global strategy for youth employment and implement the Global Jobs Pact of the International Labour Organization" .
sdg:SDGIO_00000152 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/10.2> ;
dct:title "SDG Target 10.2" ;
skos:broader sdg:SDGIO_00000044 ;
skos:prefLabel "By 2030, empower and promote the social, economic and political inclusion of all, irrespective of age, sex, disability, race, ethnicity, origin, religion or economic or other status" .
sdg:SDGIO_00000153 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/10.3> ;
dct:title "SDG Target 10.3" ;
skos:broader sdg:SDGIO_00000044 ;
skos:prefLabel "Ensure equal opportunity and reduce inequalities of outcome, including by eliminating discriminatory laws, policies and practices and promoting appropriate legislation, policies and action in this regard" .
sdg:SDGIO_00000157 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/10.7> ;
dct:title "SDG Target 10.7" ;
skos:broader sdg:SDGIO_00000044 ;
skos:prefLabel "Facilitate orderly, safe, regular and responsible migration and mobility of people, including through the implementation of planned and well-managed migration policies" .
sdg:SDGIO_00000162 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/11.2> ;
dct:title "SDG Target 11.2" ;
skos:broader sdg:SDGIO_00000045 ;
skos:prefLabel "By 2030, provide access to safe, affordable, accessible and sustainable transport systems for all, improving road safety, notably by expanding public transport, with special attention to the needs of those in vulnerable situations, women, children, persons with disabilities and older persons" .
sdg:SDGIO_00000163 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/11.3> ;
dct:title "SDG Target 11.3" ;
skos:broader sdg:SDGIO_00000045 ;
skos:prefLabel "By 2030, enhance inclusive and sustainable urbanization and capacity for participatory, integrated and sustainable human settlement planning and management in all countries" .
sdg:SDGIO_00000164 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/11.4> ;
dct:title "SDG Target 11.4" ;
skos:broader sdg:SDGIO_00000045 ;
skos:prefLabel "Strengthen efforts to protect and safeguard the world's cultural and natural heritage" .
sdg:SDGIO_00000167 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/11.7> ;
dct:title "SDG Target 11.7" ;
skos:broader sdg:SDGIO_00000045 ;
skos:prefLabel "By 2030, provide universal access to safe, inclusive and accessible, green and public spaces, in particular for women and children, older persons and persons with disabilities" .
sdg:SDGIO_00000168 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/11.a> ;
dct:title "SDG Target 11.a" ;
skos:broader sdg:SDGIO_00000045 ;
skos:prefLabel "Support positive economic, social and environmental links between urban, peri-urban and rural areas by strengthening national and regional development planning" .
sdg:SDGIO_00000169 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/11.b> ;
dct:title "SDG Target 11.b" ;
skos:broader sdg:SDGIO_00000045 ;
skos:prefLabel "By 2020, substantially increase the number of cities and human settlements adopting and implementing integrated policies and plans towards inclusion, resource efficiency, mitigation and adaptation to climate change, resilience to disasters, and develop and implement, in line with the Sendai Framework for Disaster Risk Reduction 2015-2030, holistic disaster risk management at all levels" .
sdg:SDGIO_00000170 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/11.c> ;
dct:title "SDG Target 11.c" ;
skos:broader sdg:SDGIO_00000045 ;
skos:prefLabel "Support least developed countries, including through financial and technical assistance, in building sustainable and resilient buildings utilizing local materials" .
sdg:SDGIO_00000172 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/12.2> ;
dct:title "SDG Target 12.2" ;
skos:broader sdg:SDGIO_00000046 ;
skos:prefLabel "By 2030, achieve the sustainable management and efficient use of natural resources" .
sdg:SDGIO_00000173 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/12.3> ;
dct:title "SDG Target 12.3" ;
skos:broader sdg:SDGIO_00000046 ;
skos:prefLabel "By 2030, halve per capita global food waste at the retail and consumer levels and reduce food losses along production and supply chains, including post-harvest losses" .
sdg:SDGIO_00000175 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/12.5> ;
dct:title "SDG Target 12.5" ;
skos:broader sdg:SDGIO_00000046 ;
skos:prefLabel "By 2030, substantially reduce waste generation through prevention, reduction, recycling and reuse" .
sdg:SDGIO_00000176 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/12.6> ;
dct:title "SDG Target 12.6" ;
skos:broader sdg:SDGIO_00000046 ;
skos:prefLabel "Encourage companies, especially large and transnational companies, to adopt sustainable practices and to integrate sustainability information into their reporting cycle" .
sdg:SDGIO_00000177 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/12.7> ;
dct:title "SDG Target 12.7" ;
skos:broader sdg:SDGIO_00000046 ;
skos:prefLabel "Promote public procurement practices that are sustainable, in accordance with national policies and priorities" .
sdg:SDGIO_00000178 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/12.8> ;
dct:title "SDG Target 12.8" ;
skos:broader sdg:SDGIO_00000046 ;
skos:prefLabel "By 2030, ensure that people everywhere have the relevant information and awareness for sustainable development and lifestyles in harmony with nature" .
sdg:SDGIO_00000179 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/12.a> ;
dct:title "SDG Target 12.a" ;
skos:broader sdg:SDGIO_00000046 ;
skos:prefLabel "Support developing countries to strengthen their scientific and technological capacity to move towards more sustainable patterns of consumption and production" .
sdg:SDGIO_00000180 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/12.b> ;
dct:title "SDG Target 12.b" ;
skos:broader sdg:SDGIO_00000046 ;
skos:prefLabel "Develop and implement tools to monitor sustainable development impacts for sustainable tourism that creates jobs and promotes local culture and products" .
sdg:SDGIO_00000182 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/13.1> ;
dct:title "SDG Target 13.1" ;
skos:broader sdg:SDGIO_00000047 ;
skos:prefLabel "Strengthen resilience and adaptive capacity to climate-related hazards and natural disasters in all countries" .
sdg:SDGIO_00000183 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/13.2> ;
dct:title "SDG Target 13.2" ;
skos:broader sdg:SDGIO_00000047 ;
skos:prefLabel "Integrate climate change measures into national policies, strategies and planning" .
sdg:SDGIO_00000184 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/13.3> ;
dct:title "SDG Target 13.3" ;
skos:broader sdg:SDGIO_00000047 ;
skos:prefLabel "Improve education, awareness-raising and human and institutional capacity on climate change mitigation, adaptation, impact reduction and early warning" .
sdg:SDGIO_00000185 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/13.a> ;
dct:title "SDG Target 13.a" ;
skos:broader sdg:SDGIO_00000047 ;
skos:prefLabel "Implement the commitment undertaken by developed-country parties to the United Nations Framework Convention on Climate Change to a goal of mobilizing jointly $100 billion annually by 2020 from all sources to address the needs of developing countries in the context of meaningful mitigation actions and transparency on implementation and fully operationalize the Green Climate Fund through its capitalization as soon as possible" .
sdg:SDGIO_00000186 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/13.b> ;
dct:title "SDG Target 13.b" ;
skos:broader sdg:SDGIO_00000047 ;
skos:prefLabel "Promote mechanisms for raising capacity for effective climate change-related planning and management in least developed countries and small island developing States, including focusing on women, youth and local and marginalized communities" .
sdg:SDGIO_00000187 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/14.1> ;
dct:title "SDG Target 14.1" ;
skos:broader sdg:SDGIO_00000048 ;
skos:prefLabel "By 2025, prevent and significantly reduce marine pollution of all kinds, in particular from land-based activities, including marine debris and nutrient pollution" .
sdg:SDGIO_00000188 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/14.2> ;
dct:title "SDG Target 14.2" ;
skos:broader sdg:SDGIO_00000048 ;
skos:prefLabel "By 2020, sustainably manage and protect marine and coastal ecosystems to avoid significant adverse impacts, including by strengthening their resilience, and take action for their restoration in order to achieve healthy and productive oceans" .
sdg:SDGIO_00000189 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/14.3> ;
dct:title "SDG Target 14.3" ;
skos:broader sdg:SDGIO_00000048 ;
skos:prefLabel "Minimize and address the impacts of ocean acidification, including through enhanced scientific cooperation at all levels" .
sdg:SDGIO_00000193 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/14.7> ;
dct:title "SDG Target 14.7" ;
skos:broader sdg:SDGIO_00000048 ;
skos:prefLabel "By 2030, increase the economic benefits to small island developing States and least developed countries from the sustainable use of marine resources, including through sustainable management of fisheries, aquaculture and tourism" .
sdg:SDGIO_00000196 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/14.c> ;
dct:title "SDG Target 14.c" ;
skos:broader sdg:SDGIO_00000048 ;
skos:prefLabel "Enhance the conservation and sustainable use of oceans and their resources by implementing international law as reflected in the United Nations Convention on the Law of the Sea, which provides the legal framework for the conservation and sustainable use of oceans and their resources, as recalled in paragraph 158 of 'The future we want'" .
sdg:SDGIO_00000204 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/15.7> ;
dct:title "SDG Target 15.7" ;
skos:broader sdg:SDGIO_00000049 ;
skos:prefLabel "Take urgent action to end poaching and trafficking of protected species of flora and fauna and address both demand and supply of illegal wildlife products" .
sdg:SDGIO_00000205 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/15.8> ;
dct:title "SDG Target 15.8" ;
skos:broader sdg:SDGIO_00000049 ;
skos:prefLabel "By 2020, introduce measures to prevent the introduction and significantly reduce the impact of invasive alien species on land and water ecosystems and control or eradicate the priority species" .
sdg:SDGIO_00000206 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/15.9> ;
dct:title "SDG Target 15.9" ;
skos:broader sdg:SDGIO_00000049 ;
skos:prefLabel "By 2020, integrate ecosystem and biodiversity values into national and local planning, development processes, poverty reduction strategies and accounts" .
sdg:SDGIO_00000208 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/15.b> ;
dct:title "SDG Target 15.b" ;
skos:broader sdg:SDGIO_00000049 ;
skos:prefLabel "Mobilize significant resources from all sources and at all levels to finance sustainable forest management and provide adequate incentives to developing countries to advance such management, including for conservation and reforestation" .
sdg:SDGIO_00000209 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/15.c> ;
dct:title "SDG Target 15.c" ;
skos:broader sdg:SDGIO_00000049 ;
skos:prefLabel "Enhance global support for efforts to combat poaching and trafficking of protected species, including by increasing the capacity of local communities to pursue sustainable livelihood opportunities" .
sdg:SDGIO_00000213 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/16.4> ;
dct:title "SDG Target 16.4" ;
skos:broader sdg:SDGIO_00000050 ;
skos:prefLabel "By 2030, significantly reduce illicit financial and arms flows, strengthen the recovery and return of stolen assets and combat all forms of organized crime" .
sdg:SDGIO_00000216 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/16.7> ;
dct:title "SDG Target 16.7" ;
skos:broader sdg:SDGIO_00000050 ;
skos:prefLabel "Ensure responsive, inclusive, participatory and representative decision-making at all levels" .
sdg:SDGIO_00000217 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/16.8> ;
dct:title "SDG Target 16.8" ;
skos:broader sdg:SDGIO_00000050 ;
skos:prefLabel "Broaden and strengthen the participation of developing countries in the institutions of global governance" .
sdg:SDGIO_00000221 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/16.b> ;
dct:title "SDG Target 16.b" ;
skos:broader sdg:SDGIO_00000050 ;
skos:prefLabel "Promote and enforce non-discriminatory laws and policies for sustainable development" .
sdg:SDGIO_00000225 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/17.5> ;
dct:title "SDG Target 17.5" ;
skos:broader sdg:SDGIO_00000051 ;
skos:prefLabel "Adopt and implement investment promotion regimes for least developed countries" .
sdg:SDGIO_00000228 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/17.7> ;
dct:title "SDG Target 17.7" ;
skos:broader sdg:SDGIO_00000051 ;
skos:prefLabel "Promote the development, transfer, dissemination and diffusion of environmentally sound technologies to developing countries on favourable terms, including on concessional and preferential terms, as mutually agreed" .
sdg:SDGIO_00000234 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/17.13> ;
dct:title "SDG Target 17.13" ;
skos:broader sdg:SDGIO_00000051 ;
skos:prefLabel "Enhance global macroeconomic stability, including through policy coordination and policy coherence" .
sdg:SDGIO_00000235 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/17.14> ;
dct:title "SDG Target 17.14" ;
skos:broader sdg:SDGIO_00000051 ;
skos:prefLabel "Enhance policy coherence for sustainable development" .
sdg:SDGIO_00000238 dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Target/17.17> ;
dct:title "SDG Target 17.17" ;
skos:broader sdg:SDGIO_00000051 ;
skos:prefLabel "Encourage and promote effective public, public-private and civil society partnerships, building on the experience and resourcing strategies of partnerships" .
sdg:SDGIO_00020000 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/1.1.1> ;
dct:title "SDG Indicator 1.1.1" ;
skos:broader sdg:SDGIO_00000057 ;
skos:prefLabel "Proportion of population below the international poverty line, by sex, age, employment status and geographical location (urban/rural)" .
sdg:SDGIO_00020001 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/1.2.1> ;
dct:title "SDG Indicator 1.2.1" ;
skos:broader sdg:SDGIO_00000065 ;
skos:prefLabel "Proportion of population living below the national poverty line, by sex and age" .
sdg:SDGIO_00020003 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/1.3.1> ;
dct:title "SDG Indicator 1.3.1" ;
skos:broader sdg:SDGIO_00000070 ;
skos:prefLabel "Proportion of population covered by social protection floors/systems, by sex, distinguishing children, unemployed persons, older persons, persons with disabilities, pregnant women, newborns, work-injury victims and the poor and the vulnerable" .
sdg:SDGIO_00020004 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/1.4.1> ;
dct:title "SDG Indicator 1.4.1" ;
skos:broader sdg:SDGIO_00000071 ;
skos:prefLabel "Proportion of population living in households with access to basic services" .
sdg:SDGIO_00020006 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/1.5.1> ;
dct:title "SDG Indicator 1.5.1" ;
skos:broader sdg:SDGIO_00000075 ;
skos:prefLabel "Number of deaths, missing persons and directly affected persons attributed to disasters per 100,000 population" .
sdg:SDGIO_00020007 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/1.5.2> ;
dct:title "SDG Indicator 1.5.2" ;
skos:broader sdg:SDGIO_00000075 ;
skos:prefLabel "Direct economic loss attributed to disasters in relation to global gross domestic product (GDP)" .
sdg:SDGIO_00020008 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/1.5.3> ;
dct:title "SDG Indicator 1.5.3" ;
skos:broader sdg:SDGIO_00000075 ;
skos:prefLabel "Number of countries that adopt and implement national disaster risk reduction strategies in line with the Sendai Framework for Disaster Risk Reduction 2015-2030" .
sdg:SDGIO_00020009 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/1.5.4> ;
dct:title "SDG Indicator 1.5.4" ;
skos:broader sdg:SDGIO_00000075 ;
skos:prefLabel "Proportion of local governments that adopt and implement local disaster risk reduction strategies in line with national disaster risk reduction strategies" .
sdg:SDGIO_00020011 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/1.a.2> ;
dct:title "SDG Indicator 1.a.2" ;
skos:broader sdg:SDGIO_00000076 ;
skos:prefLabel "Proportion of total government spending on essential services (education, health and social protection)" .
sdg:SDGIO_00020014 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/2.1.1> ;
dct:title "SDG Indicator 2.1.1" ;
skos:broader sdg:SDGIO_00000078 ;
skos:prefLabel "Prevalence of undernourishment" .
sdg:SDGIO_00020015 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/2.1.2> ;
dct:title "SDG Indicator 2.1.2" ;
skos:broader sdg:SDGIO_00000078 ;
skos:prefLabel "Prevalence of moderate or severe food insecurity in the population, based on the Food Insecurity Experience Scale (FIES)" .
sdg:SDGIO_00020016 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/2.2.1> ;
dct:title "SDG Indicator 2.2.1" ;
skos:broader sdg:SDGIO_00000079 ;
skos:prefLabel "Prevalence of stunting (height for age <-2 standard deviation from the median of the World Health Organization (WHO) Child Growth Standards) among children under 5 years of age" .
sdg:SDGIO_00020017 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/2.2.2> ;
dct:title "SDG Indicator 2.2.2" ;
skos:broader sdg:SDGIO_00000079 ;
skos:prefLabel "Prevalence of malnutrition (weight for height >+2 or <-2 standard deviation from the median of the WHO Child Growth Standards) among children under 5 years of age, by type (wasting and overweight)" .
sdg:SDGIO_00020018 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/2.3.1> ;
dct:title "SDG Indicator 2.3.1" ;
skos:broader sdg:SDGIO_00000080 ;
skos:prefLabel "Volume of production per labour unit by classes of farming/pastoral/forestry enterprise size" .
sdg:SDGIO_00020019 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/2.3.2> ;
dct:title "SDG Indicator 2.3.2" ;
skos:broader sdg:SDGIO_00000080 ;
skos:prefLabel "Average income of small-scale food producers, by sex and indigenous status" .
sdg:SDGIO_00020021 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/2.5.1> ;
dct:title "SDG Indicator 2.5.1" ;
skos:broader sdg:SDGIO_00000082 ;
skos:prefLabel "Number of plant and animal genetic resources for food and agriculture secured in either medium or long-term conservation facilities" .
sdg:SDGIO_00020022 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/2.5.2> ;
dct:title "SDG Indicator 2.5.2" ;
skos:broader sdg:SDGIO_00000082 ;
skos:prefLabel "Proportion of local breeds classified as being at risk, not-at-risk or at unknown level of risk of extinction" .
sdg:SDGIO_00020023 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/2.a.1> ;
dct:title "SDG Indicator 2.a.1" ;
skos:broader sdg:SDGIO_00000083 ;
skos:prefLabel "The agriculture orientation index for government expenditures" .
sdg:SDGIO_00020024 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/2.a.2> ;
dct:title "SDG Indicator 2.a.2" ;
skos:broader sdg:SDGIO_00000083 ;
skos:prefLabel "Total official flows (official development assistance plus other official flows) to the agriculture sector" .
sdg:SDGIO_00020025 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/2.b.1> ;
dct:title "SDG Indicator 2.b.1" ;
skos:broader sdg:SDGIO_00000084 ;
skos:prefLabel "Agricultural export subsidies" .
sdg:SDGIO_00020026 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/2.c.1> ;
dct:title "SDG Indicator 2.c.1" ;
skos:broader sdg:SDGIO_00000085 ;
skos:prefLabel "Indicator of food price anomalies" .
sdg:SDGIO_00020027 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/3.1.1> ;
dct:title "SDG Indicator 3.1.1" ;
skos:broader sdg:SDGIO_00000086 ;
skos:prefLabel "Maternal mortality ratio" .
sdg:SDGIO_00020028 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/3.1.2> ;
dct:title "SDG Indicator 3.1.2" ;
skos:broader sdg:SDGIO_00000086 ;
skos:prefLabel "Proportion of births attended by skilled health personnel" .
sdg:SDGIO_00020029 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/3.2.1> ;
dct:title "SDG Indicator 3.2.1" ;
skos:broader sdg:SDGIO_00000087 ;
skos:prefLabel "Under-five mortality rate" .
sdg:SDGIO_00020030 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/3.2.2> ;
dct:title "SDG Indicator 3.2.2" ;
skos:broader sdg:SDGIO_00000087 ;
skos:prefLabel "Neonatal mortality rate" .
sdg:SDGIO_00020031 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/3.3.1> ;
dct:title "SDG Indicator 3.3.1" ;
skos:broader sdg:SDGIO_00000088 ;
skos:prefLabel "Number of new HIV infections per 1,000 uninfected population, by sex, age and key populations" .
sdg:SDGIO_00020032 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/3.3.2> ;
dct:title "SDG Indicator 3.3.2" ;
skos:broader sdg:SDGIO_00000088 ;
skos:prefLabel "Tuberculosis incidence per 100,000 population" .
sdg:SDGIO_00020033 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/3.3.3> ;
dct:title "SDG Indicator 3.3.3" ;
skos:broader sdg:SDGIO_00000088 ;
skos:prefLabel "Malaria incidence per 1,000 population" .
sdg:SDGIO_00020034 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/3.3.4> ;
dct:title "SDG Indicator 3.3.4" ;
skos:broader sdg:SDGIO_00000088 ;
skos:prefLabel "Hepatitis B incidence per 100,000 population" .
sdg:SDGIO_00020035 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/3.3.5> ;
dct:title "SDG Indicator 3.3.5" ;
skos:broader sdg:SDGIO_00000088 ;
skos:prefLabel "Number of people requiring interventions against neglected tropical diseases" .
sdg:SDGIO_00020036 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/3.4.1> ;
dct:title "SDG Indicator 3.4.1" ;
skos:broader sdg:SDGIO_00000089 ;
skos:prefLabel "Mortality rate attributed to cardiovascular disease, cancer, diabetes or chronic respiratory disease" .
sdg:SDGIO_00020037 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/3.4.2> ;
dct:title "SDG Indicator 3.4.2" ;
skos:broader sdg:SDGIO_00000089 ;
skos:prefLabel "Suicide mortality rate" .
sdg:SDGIO_00020039 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/3.5.2> ;
dct:title "SDG Indicator 3.5.2" ;
skos:broader sdg:SDGIO_00000090 ;
skos:prefLabel "Harmful use of alcohol, defined according to the national context as alcohol per capita consumption (aged 15 years and older) within a calendar year in litres of pure alcohol" .
sdg:SDGIO_00020040 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/3.6.1> ;
dct:title "SDG Indicator 3.6.1" ;
skos:broader sdg:SDGIO_00000091 ;
skos:prefLabel "Death rate due to road traffic injuries" .
sdg:SDGIO_00020041 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/3.7.1> ;
dct:title "SDG Indicator 3.7.1" ;
skos:broader sdg:SDGIO_00000092 ;
skos:prefLabel "Proportion of women of reproductive age (aged 15-49 years) who have their need for family planning satisfied with modern methods" .
sdg:SDGIO_00020042 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/3.7.2> ;
dct:title "SDG Indicator 3.7.2" ;
skos:broader sdg:SDGIO_00000092 ;
skos:prefLabel "Adolescent birth rate (aged 10-14 years; aged 15-19 years) per 1,000 women in that age group" .
sdg:SDGIO_00020043 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/3.8.1> ;
dct:title "SDG Indicator 3.8.1" ;
skos:broader sdg:SDGIO_00000093 ;
skos:prefLabel " Coverage of essential health services (defined as the average coverage of essential services based on tracer interventions that include reproductive, maternal, newborn and child health, infectious diseases, non-communicable diseases and service capacity and access, among the general and the most disadvantaged population)",
"Coverage of essential health services (defined as the average coverage of essential services based on tracer interventions that include reproductive, maternal, newborn and child health, infectious diseases, non-communicable diseases and service capacity and access, among the general and the most disadvantaged population)" .
sdg:SDGIO_00020044 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/3.8.2> ;
dct:title "SDG Indicator 3.8.2" ;
skos:broader sdg:SDGIO_00000093 ;
skos:prefLabel "Proportion of population with large household expenditures on health as a share of total household expenditure or income" .
sdg:SDGIO_00020045 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/3.9.1> ;
dct:title "SDG Indicator 3.9.1" ;
skos:broader sdg:SDGIO_00000094 ;
skos:prefLabel "Mortality rate attributed to household and ambient air pollution" .
sdg:SDGIO_00020046 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/3.9.2> ;
dct:title "SDG Indicator 3.9.2" ;
skos:broader sdg:SDGIO_00000094 ;
skos:prefLabel "Mortality rate attributed to unsafe water, unsafe sanitation and lack of hygiene (exposure to unsafe Water, Sanitation and Hygiene for All (WASH) services)" .
sdg:SDGIO_00020047 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/3.9.3> ;
dct:title "SDG Indicator 3.9.3" ;
skos:broader sdg:SDGIO_00000094 ;
skos:prefLabel "Mortality rate attributed to unintentional poisoning" .
sdg:SDGIO_00020048 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/3.a.1> ;
dct:title "SDG Indicator 3.a.1" ;
skos:broader sdg:SDGIO_00000095 ;
skos:prefLabel "Age-standardized prevalence of current tobacco use among persons aged 15 years and older" .
sdg:SDGIO_00020049 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/3.b.1> ;
dct:title "SDG Indicator 3.b.1" ;
skos:broader sdg:SDGIO_00000096 ;
skos:prefLabel "Proportion of the target population covered by all vaccines included in their national programme" .
sdg:SDGIO_00020050 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/3.b.2> ;
dct:title "SDG Indicator 3.b.2" ;
skos:broader sdg:SDGIO_00000096 ;
skos:prefLabel "Total net official development assistance to medical research and basic health sectors" .
sdg:SDGIO_00020052 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/3.c.1> ;
dct:title "SDG Indicator 3.c.1" ;
skos:broader sdg:SDGIO_00000097 ;
skos:prefLabel "Health worker density and distribution" .
sdg:SDGIO_00020053 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/3.d.1> ;
dct:title "SDG Indicator 3.d.1" ;
skos:broader sdg:SDGIO_00000098 ;
skos:prefLabel "International Health Regulations (IHR) capacity and health emergency preparedness" .
sdg:SDGIO_00020054 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/4.1.1> ;
dct:title "SDG Indicator 4.1.1" ;
skos:broader sdg:SDGIO_00000099 ;
skos:prefLabel "Proportion of children and young people: (a) in grades 2/3; (b) at the end of primary; and (c) at the end of lower secondary achieving at least a minimum proficiency level in (i) reading and (ii) mathematics, by sex" .
sdg:SDGIO_00020055 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/4.2.1> ;
dct:title "SDG Indicator 4.2.1" ;
skos:broader sdg:SDGIO_00000100 ;
skos:prefLabel "Proportion of children under 5 years of age who are developmentally on track in health, learning and psychosocial well-being, by sex" .
sdg:SDGIO_00020056 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/4.2.2> ;
dct:title "SDG Indicator 4.2.2" ;
skos:broader sdg:SDGIO_00000100 ;
skos:prefLabel "Participation rate in organized learning (one year before the official primary entry age), by sex" .
sdg:SDGIO_00020057 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/4.3.1> ;
dct:title "SDG Indicator 4.3.1" ;
skos:broader sdg:SDGIO_00000101 ;
skos:prefLabel "Participation rate of youth and adults in formal and non-formal education and training in the previous 12 months, by sex" .
sdg:SDGIO_00020058 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/4.4.1> ;
dct:title "SDG Indicator 4.4.1" ;
skos:broader sdg:SDGIO_00000102 ;
skos:prefLabel "Proportion of youth and adults with information and communications technology (ICT) skills, by type of skill" .
sdg:SDGIO_00020059 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/4.5.1> ;
dct:title "SDG Indicator 4.5.1" ;
skos:broader sdg:SDGIO_00000103 ;
skos:prefLabel "Parity indices (female/male, rural/urban, bottom/top wealth quintile and others such as disability status, indigenous peoples and conflict-affected, as data become available) for all education indicators on this list that can be disaggregated" .
sdg:SDGIO_00020060 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/4.6.1> ;
dct:title "SDG Indicator 4.6.1" ;
skos:broader sdg:SDGIO_00000104 ;
skos:prefLabel "Proportion of population in a given age group achieving at least a fixed level of proficiency in functional (a) literacy and (b) numeracy skills, by sex" .
sdg:SDGIO_00020062 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/4.a.1> ;
dct:title "SDG Indicator 4.a.1" ;
skos:broader sdg:SDGIO_00000106 ;
skos:prefLabel "Proportion of schools with access to: (a) electricity; (b) the Internet for pedagogical purposes; (c) computers for pedagogical purposes; (d) adapted infrastructure and materials for students with disabilities; (e) basic drinking water; (f) single-sex basic sanitation facilities; and (g) basic handwashing facilities (as per the WASH indicator definitions)" .
sdg:SDGIO_00020063 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/4.b.1> ;
dct:title "SDG Indicator 4.b.1" ;
skos:broader sdg:SDGIO_00000107 ;
skos:prefLabel "Volume of official development assistance flows for scholarships by sector and type of study" .
sdg:SDGIO_00020064 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/4.c.1> ;
dct:title "SDG Indicator 4.c.1" ;
skos:broader sdg:SDGIO_00000108 ;
skos:prefLabel "Proportion of teachers in: (a) pre-primary; (b) primary; (c) lower secondary; and (d) upper secondary education who have received at least the minimum organized teacher training (e.g. pedagogical training) pre-service or in-service required for teaching at the relevant level in a given country" .
sdg:SDGIO_00020065 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/5.1.1> ;
dct:title "SDG Indicator 5.1.1" ;
skos:broader sdg:SDGIO_00000109 ;
skos:prefLabel "Whether or not legal frameworks are in place to promote, enforce and monitor equality and non-discrimination on the basis of sex",
"Whether or not legal frameworks are in place to promote, enforce and monitor equality and non‑discrimination on the basis of sex" .
sdg:SDGIO_00020066 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/5.2.1> ;
dct:title "SDG Indicator 5.2.1" ;
skos:broader sdg:SDGIO_00000110 ;
skos:prefLabel "Proportion of ever-partnered women and girls aged 15 years and older subjected to physical, sexual or psychological violence by a current or former intimate partner in the previous 12 months, by form of violence and by age" .
sdg:SDGIO_00020068 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/5.3.1> ;
dct:title "SDG Indicator 5.3.1" ;
skos:broader sdg:SDGIO_00000111 ;
skos:prefLabel "Proportion of women aged 20-24 years who were married or in a union before age 15 and before age 18" .
sdg:SDGIO_00020069 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/5.3.2> ;
dct:title "SDG Indicator 5.3.2" ;
skos:broader sdg:SDGIO_00000111 ;
skos:prefLabel "Proportion of girls and women aged 15-49 years who have undergone female genital mutilation/cutting, by age" .
sdg:SDGIO_00020070 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/5.4.1> ;
dct:title "SDG Indicator 5.4.1" ;
skos:broader sdg:SDGIO_00000112 ;
skos:prefLabel "Proportion of time spent on unpaid domestic and care work, by sex, age and location" .
sdg:SDGIO_00020071 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/5.5.1> ;
dct:title "SDG Indicator 5.5.1" ;
skos:broader sdg:SDGIO_00000113 ;
skos:prefLabel "Proportion of seats held by women in (a) national parliaments and (b) local governments" .
sdg:SDGIO_00020072 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/5.5.2> ;
dct:title "SDG Indicator 5.5.2" ;
skos:broader sdg:SDGIO_00000113 ;
skos:prefLabel "Proportion of women in managerial positions" .
sdg:SDGIO_00020073 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/5.6.1> ;
dct:title "SDG Indicator 5.6.1" ;
skos:broader sdg:SDGIO_00000114 ;
skos:prefLabel "Proportion of women aged 15-49 years who make their own informed decisions regarding sexual relations, contraceptive use and reproductive health care" .
sdg:SDGIO_00020077 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/5.b.1> ;
dct:title "SDG Indicator 5.b.1" ;
skos:broader sdg:SDGIO_00000116 ;
skos:prefLabel "Proportion of individuals who own a mobile telephone, by sex" .
sdg:SDGIO_00020078 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/5.c.1> ;
dct:title "SDG Indicator 5.c.1" ;
skos:broader sdg:SDGIO_00000117 ;
skos:prefLabel "Proportion of countries with systems to track and make public allocations for gender equality and women’s empowerment" .
sdg:SDGIO_00020079 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/6.1.1> ;
dct:title "SDG Indicator 6.1.1" ;
skos:broader sdg:SDGIO_00000118 ;
skos:prefLabel "Proportion of population using safely managed drinking water services" .
sdg:SDGIO_00020080 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/6.2.1> ;
dct:title "SDG Indicator 6.2.1" ;
skos:broader sdg:SDGIO_00000119 ;
skos:prefLabel "Proportion of population using safely managed sanitation services, including a hand-washing facility with soap and water" .
sdg:SDGIO_00020081 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/6.3.1> ;
dct:title "SDG Indicator 6.3.1" ;
skos:broader sdg:SDGIO_00000120 ;
skos:prefLabel "Proportion of wastewater safely treated" .
sdg:SDGIO_00020082 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/6.3.2> ;
dct:title "SDG Indicator 6.3.2" ;
skos:broader sdg:SDGIO_00000120 ;
skos:prefLabel "Proportion of bodies of water with good ambient water quality" .
sdg:SDGIO_00020083 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/6.4.1> ;
dct:title "SDG Indicator 6.4.1" ;
skos:broader sdg:SDGIO_00000121 ;
skos:prefLabel "Change in water-use efficiency over time" .
sdg:SDGIO_00020084 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/6.4.2> ;
dct:title "SDG Indicator 6.4.2" ;
skos:broader sdg:SDGIO_00000121 ;
skos:prefLabel "Level of water stress: freshwater withdrawal as a proportion of available freshwater resources" .
sdg:SDGIO_00020085 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/6.5.1> ;
dct:title "SDG Indicator 6.5.1" ;
skos:broader sdg:SDGIO_00000122 ;
skos:prefLabel "Degree of integrated water resources management implementation (0-100)" .
sdg:SDGIO_00020086 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/6.5.2> ;
dct:title "SDG Indicator 6.5.2" ;
skos:broader sdg:SDGIO_00000122 ;
skos:prefLabel "Proportion of transboundary basin area with an operational arrangement for water cooperation" .
sdg:SDGIO_00020087 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/6.6.1> ;
dct:title "SDG Indicator 6.6.1" ;
skos:broader sdg:SDGIO_00000123 ;
skos:prefLabel "Change in the extent of water-related ecosystems over time" .
sdg:SDGIO_00020088 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/6.a.1> ;
dct:title "SDG Indicator 6.a.1" ;
skos:broader sdg:SDGIO_00000124 ;
skos:prefLabel "Amount of water- and sanitation-related official development assistance that is part of a government-coordinated spending plan" .
sdg:SDGIO_00020089 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/6.b.1> ;
dct:title "SDG Indicator 6.b.1" ;
skos:broader sdg:SDGIO_00000125 ;
skos:prefLabel "Proportion of local administrative units with established and operational policies and procedures for participation of local communities in water and sanitation management" .
sdg:SDGIO_00020090 a <http://purl.org/seva/SDGIndicatorType> ;
dct:relation <https://unstats.un.org/SDGAPI/v1/sdg/Indicator/7.1.1> ;
dct:title "SDG Indicator 7.1.1" ;
skos:broader sdg:SDGIO_00000126 ;
skos:prefLabel "Proportion of population with access to electricity" .
sdg:SDGIO_00020091 a <http://purl.org/seva/SDGIndicatorType> ;