From 4aeefc3f035be1c0482e7ac0a78f371dced94952 Mon Sep 17 00:00:00 2001 From: Keyur Shah Date: Mon, 9 Dec 2024 10:04:03 -0800 Subject: [PATCH 1/5] Create script to generate topic cache from mcf. (#4775) --- tools/sdg/topics/README.md | 13 + tools/sdg/topics/generate_topic_cache.py | 243 + tools/sdg/topics/generate_topic_cache.sh | 21 + tools/sdg/topics/sdg_topic_cache.json | 38143 +++++++++++++++++++++ tools/sdg/topics/sdg_topics.mcf | 11995 +++++++ tools/sdg/topics/sheets_svs.csv | 681 + 6 files changed, 51096 insertions(+) create mode 100644 tools/sdg/topics/generate_topic_cache.py create mode 100755 tools/sdg/topics/generate_topic_cache.sh create mode 100644 tools/sdg/topics/sdg_topic_cache.json create mode 100644 tools/sdg/topics/sdg_topics.mcf create mode 100644 tools/sdg/topics/sheets_svs.csv diff --git a/tools/sdg/topics/README.md b/tools/sdg/topics/README.md index 89769911f1..70745ee70d 100644 --- a/tools/sdg/topics/README.md +++ b/tools/sdg/topics/README.md @@ -39,3 +39,16 @@ To run it: export DC_API_KEY= python3 enum_topics.py ``` + + +## Generate Topic Cache + +Generates topic cache JSON and NL sentences CSV from an input MCF file with Topic and StatVarPeerGroup nodes. + +> NOTE: The core topics script takes a CSV and generates the MCF, JSON and CSV. This script takes a MCF and generates the JSON and CSV. + +To run it: + +```bash +./generate_topic_cache.sh +``` \ No newline at end of file diff --git a/tools/sdg/topics/generate_topic_cache.py b/tools/sdg/topics/generate_topic_cache.py new file mode 100644 index 0000000000..5f21f3c4e5 --- /dev/null +++ b/tools/sdg/topics/generate_topic_cache.py @@ -0,0 +1,243 @@ +# Copyright 2024 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +""" +Given a topics mcf, this script generates a topic cache json and a NL descriptions CSV. +""" + +import csv +from dataclasses import dataclass +from dataclasses import field +import json +import logging + +from absl import app +from absl import flags +import requests + +PARSER = 'mcf_parser.py' +PARSER_URL = f'https://raw.githubusercontent.com/datacommonsorg/import/master/simple/kg_util/{PARSER}' + +_ID = 'ID' +_DCID = 'dcid' + +_PREDICATE_TYPE_OF = "typeOf" +_PREDICATE_NAME = "name" +_PREDICATE_SEARCH_DESCRIPTION = "searchDescription" +_PREDICATE_RELEVANT_VARIABLE = "relevantVariable" +_PREDICATE_RELEVANT_VARIABLE_LIST = "relevantVariableList" +_PREDICATE_MEMBER = "member" +_PREDICATE_MEMBER_LIST = "memberList" +_TYPE_TOPIC = 'Topic' + +_DCID_COL = "dcid" +_SENTENCE_COL = "sentence" +_SENTENCE_SEPARATOR = ";" + +FLAGS = flags.FLAGS + +flags.DEFINE_string('topics_mcf_file', 'sdg_topics.mcf', + 'MCF file that the topic nodes are read from') +flags.DEFINE_string('topic_cache_file', 'sdg_topic_cache.json', + 'JSON file that the topic cache is written to') +flags.DEFINE_string('topic_sentences_file', 'sheets_svs.csv', + 'CSV file that the topic sentences are written to') + +logging.getLogger().setLevel(logging.INFO) + + +@dataclass +class Triple: + subject_id: str + predicate: str + object_id: str = "" + object_value: str = "" + + +@dataclass +class TopicCacheNode: + dcid: str + types: list[str] = field(default_factory=list) + names: list[str] = field(default_factory=list) + relevantVariables: list[str] = field(default_factory=list) + members: list[str] = field(default_factory=list) + + def _csv_to_list(self, csv: str) -> list[str]: + return [item.strip() for item in csv.split(',')] + + def maybe_add(self, triple: Triple): + if triple.predicate == _PREDICATE_TYPE_OF: + self.types.append(triple.object_id) + elif triple.predicate == _PREDICATE_NAME: + self.names.append(triple.object_value) + elif triple.predicate == _PREDICATE_RELEVANT_VARIABLE: + self.relevantVariables.append(triple.object_id) + elif triple.predicate == _PREDICATE_RELEVANT_VARIABLE_LIST: + self.relevantVariables.extend(self._csv_to_list(triple.object_value)) + elif triple.predicate == _PREDICATE_MEMBER: + self.members.append(triple.object_id) + elif triple.predicate == _PREDICATE_MEMBER_LIST: + self.members.extend(self._csv_to_list(triple.object_value)) + + def json(self) -> dict[str, any]: + result: dict[str, any] = {} + result["dcid"] = [self.dcid] + if self.types: + result["typeOf"] = self.types + if self.names: + result["name"] = self.names + if self.relevantVariables: + result["relevantVariableList"] = self.relevantVariables + if self.members: + result["memberList"] = self.members + return result + + +@dataclass +class SentenceCandidates: + name: str = "" + searchDescriptions: list[str] = field(default_factory=list) + + def maybe_add(self, triple: Triple): + if triple.predicate == _PREDICATE_SEARCH_DESCRIPTION: + self.searchDescriptions.append(triple.object_value) + elif triple.predicate == _PREDICATE_NAME: + self.name = triple.object_value + + def sentences(self) -> str: + sentences: list[str] = [] + + if self.searchDescriptions: + sentences = self.searchDescriptions + elif self.name: + sentences = [self.name] + + return _SENTENCE_SEPARATOR.join(sentences) + + +def generate_nl_sentences(triples: list[Triple], topic_sentences_file: str): + """Generates NL sentences based on name and searchDescription triples. + + This method should only be called for triples of types for which NL sentences + should be generated. Currently it is Topic. + + This method does not do the type checks itself and the onus is on the caller + to filter triples. + + The dcids and sentences are written to a CSV using the specified File. + """ + + dcid2candidates: dict[str, SentenceCandidates] = {} + for triple in triples: + dcid2candidates.setdefault(triple.subject_id, + SentenceCandidates()).maybe_add(triple) + + rows = [] + for dcid, candidates in dcid2candidates.items(): + sentences = candidates.sentences() + if not sentences: + logging.warning("No NL sentences generated for DCID: %s", dcid) + continue + rows.append({_DCID_COL: dcid, _SENTENCE_COL: sentences}) + + logging.info("Writing %s NL sentences to: %s", len(rows), + topic_sentences_file) + + with open(topic_sentences_file, 'w', newline='') as fw: + writer = csv.DictWriter(fw, fieldnames=[_DCID_COL, _SENTENCE_COL]) + writer.writeheader() + writer.writerows(rows) + + +def generate_topic_cache(triples: list[Triple], topic_cache_file: str): + """Generates topic cache based on Topic and StatVarPeerGroup triples. + + This method should only be called for triples of types for which topic cache + should be generated (Topic and StatVarPeerGroup). + + This method does not do the type checks itself and the onus is on the caller + to filter triples. + + The topic cache is written to the specified topic_cache_file. + """ + + dcid2nodes: dict[str, TopicCacheNode] = {} + for triple in triples: + dcid2nodes.setdefault(triple.subject_id, + TopicCacheNode(triple.subject_id)).maybe_add(triple) + + nodes = [] + for node in dcid2nodes.values(): + nodes.append(node.json()) + + result = {"nodes": nodes} + logging.info("Writing %s topic cache nodes to: %s", len(nodes), + topic_cache_file) + with open(topic_cache_file, 'w') as fw: + json.dump(result, fw, indent=1) + + +def mcf_to_triples(mcf_file: str) -> list[Triple]: + with open(PARSER, 'w') as fw: + fw.write(requests.get(PARSER_URL).text) + import mcf_parser as mcflib + + parser_triples: list[list[str]] = [] + # DCID references + local2dcid: dict[str, str] = {} + with open(mcf_file, 'r') as f: + for parser_triple in mcflib.mcf_to_triples(f): + [subject_id, predicate, value, _] = parser_triple + if predicate == _DCID: + local2dcid[subject_id] = value + else: + parser_triples.append(parser_triple) + + triples = list(map(lambda x: _to_triple(x, local2dcid), parser_triples)) + + logging.info("Read %s triples from: %s", len(triples), mcf_file) + return triples + + +def _to_triple(parser_triple: list[str], local2dcid: dict[str, str]) -> Triple: + [subject_id, _predicate, value, value_type] = parser_triple + + if subject_id not in local2dcid: + raise ValueError(f"dcid not specified for node: {subject_id}") + + subject_id = local2dcid[subject_id] + if value_type == _ID: + return Triple(subject_id, _predicate, object_id=value) + else: + return Triple(subject_id, _predicate, object_value=value) + + +def _filter_triples_by_type(triples: list[Triple], + type_of: str) -> list[Triple]: + filter_dcids = set() + for triple in triples: + if triple.predicate == _PREDICATE_TYPE_OF and triple.object_id == type_of: + filter_dcids.add(triple.subject_id) + + return list(filter(lambda triple: triple.subject_id in filter_dcids, triples)) + + +def main(_): + triples = mcf_to_triples(FLAGS.topics_mcf_file) + generate_topic_cache(triples, FLAGS.topic_cache_file) + topic_triples = _filter_triples_by_type(triples, _TYPE_TOPIC) + generate_nl_sentences(topic_triples, FLAGS.topic_sentences_file) + + +if __name__ == "__main__": + app.run(main) diff --git a/tools/sdg/topics/generate_topic_cache.sh b/tools/sdg/topics/generate_topic_cache.sh new file mode 100755 index 0000000000..33f86df2d1 --- /dev/null +++ b/tools/sdg/topics/generate_topic_cache.sh @@ -0,0 +1,21 @@ +#!/bin/bash +# Copyright 2024 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +set -e + +python3 -m venv .env +source .env/bin/activate +pip3 install -r requirements.txt +python3 generate_topic_cache.py "$@" diff --git a/tools/sdg/topics/sdg_topic_cache.json b/tools/sdg/topics/sdg_topic_cache.json new file mode 100644 index 0000000000..09517c9f94 --- /dev/null +++ b/tools/sdg/topics/sdg_topic_cache.json @@ -0,0 +1,38143 @@ +{ + "nodes": [ + { + "dcid": [ + "dc/svpg/SDGAG_FLS_INDEX.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Global food loss index" + ], + "memberList": [ + "sdg/AG_FLS_INDEX" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_FLS_PCT.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Food loss percentage" + ], + "memberList": [ + "sdg/AG_FLS_PCT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_FOOD_WST.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Food waste" + ], + "memberList": [ + "sdg/AG_FOOD_WST" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_FOOD_WST.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Food waste by Sector" + ], + "memberList": [ + "sdg/AG_FOOD_WST.FOOD_WASTE_SECTOR--FWS_HHS", + "sdg/AG_FOOD_WST.FOOD_WASTE_SECTOR--FWS_OOHC", + "sdg/AG_FOOD_WST.FOOD_WASTE_SECTOR--FWS_RTL" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_FOOD_WST_PC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Food waste per capita" + ], + "memberList": [ + "sdg/AG_FOOD_WST_PC" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_FOOD_WST_PC.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Food waste per capita by Sector" + ], + "memberList": [ + "sdg/AG_FOOD_WST_PC.FOOD_WASTE_SECTOR--FWS_HHS", + "sdg/AG_FOOD_WST_PC.FOOD_WASTE_SECTOR--FWS_OOHC", + "sdg/AG_FOOD_WST_PC.FOOD_WASTE_SECTOR--FWS_RTL" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_FPA_CFPI.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Indicator of Food Price Anomalies (IFPA) by Consumer Price Index of Food" + ], + "memberList": [ + "sdg/AG_FPA_CFPI" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_FPA_COMM.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Indicator of Food Price Anomalies (IFPA) by Product" + ], + "memberList": [ + "sdg/AG_FPA_COMM.PRODUCT--CPC2_1_0111", + "sdg/AG_FPA_COMM.PRODUCT--CPC2_1_0112", + "sdg/AG_FPA_COMM.PRODUCT--CPC2_1_0113", + "sdg/AG_FPA_COMM.PRODUCT--CPC2_1_0114", + "sdg/AG_FPA_COMM.PRODUCT--CPC2_1_0118" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_FPA_HMFP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of countries recording abnormally high or moderately high food prices", + "according to the Indicator of Food Price Anomalies" + ], + "memberList": [ + "sdg/AG_FPA_HMFP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_FPA_HMFP.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of countries recording abnormally high or moderately high food prices", + "according to the Indicator of Food Price Anomalies by Price severity level" + ], + "memberList": [ + "sdg/AG_FPA_HMFP.PRICE_LEVEL_SEVERITY--SPL_A", + "sdg/AG_FPA_HMFP.PRICE_LEVEL_SEVERITY--SPL_M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_LND_AGRBIO.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of agricultural land area that has achieved an acceptable or desirable level of use of agro-biodiversity supportive practices" + ], + "memberList": [ + "sdg/AG_LND_AGRBIO" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_LND_AGRWAG.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of agricultural land area that has achieved an acceptable or desirable level of wage rate in agriculture" + ], + "memberList": [ + "sdg/AG_LND_AGRWAG" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_LND_DGRD.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of land that is degraded over total land area" + ], + "memberList": [ + "sdg/AG_LND_DGRD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_LND_FERTMG.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of agricultural land area that has achieved an acceptable or desirable level of management of fertilizers" + ], + "memberList": [ + "sdg/AG_LND_FERTMG" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_LND_FIES.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of agricultural land area that has achieved an acceptable or desirable level of food security" + ], + "memberList": [ + "sdg/AG_LND_FIES" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_LND_FOVH.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of agricultural land area that has achieved an acceptable or desirable level of farm output value per hectare" + ], + "memberList": [ + "sdg/AG_LND_FOVH" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_LND_FRST.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Forest area as a proportion of total land area" + ], + "memberList": [ + "sdg/AG_LND_FRST" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_LND_FRSTBIOPHA.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Above-ground biomass in forest" + ], + "memberList": [ + "sdg/AG_LND_FRSTBIOPHA" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_LND_FRSTCERT.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Forest area certified under an independently verified certification scheme" + ], + "memberList": [ + "sdg/AG_LND_FRSTCERT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_LND_FRSTCHG.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Annual forest area change rate" + ], + "memberList": [ + "sdg/AG_LND_FRSTCHG" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_LND_FRSTMGT.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of forest area with a long-term management plan" + ], + "memberList": [ + "sdg/AG_LND_FRSTMGT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_LND_FRSTN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Forest area" + ], + "memberList": [ + "sdg/AG_LND_FRSTN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_LND_FRSTPRCT.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of forest area within legally established protected areas" + ], + "memberList": [ + "sdg/AG_LND_FRSTPRCT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_LND_H2OAVAIL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of agricultural land area that has achieved an acceptable or desirable level of variation in water availability" + ], + "memberList": [ + "sdg/AG_LND_H2OAVAIL" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_LND_LNDSTR.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of agricultural land area that has achieved an acceptable or desirable level of secure tenure rights to agricultural land" + ], + "memberList": [ + "sdg/AG_LND_LNDSTR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_LND_NFI.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of agricultural land area that has achieved an acceptable or desirable level of net farm income" + ], + "memberList": [ + "sdg/AG_LND_NFI" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_LND_PSTCDSMG.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of agricultural land area that has achieved an acceptable or desirable level of management of pesticides" + ], + "memberList": [ + "sdg/AG_LND_PSTCDSMG" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_LND_RMM.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of agricultural land area that has achieved an acceptable or desirable level of risk mitigation mechanisms" + ], + "memberList": [ + "sdg/AG_LND_RMM" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_LND_SDGRD.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of agricultural land area that has achieved an acceptable or desirable level of soil degradation" + ], + "memberList": [ + "sdg/AG_LND_SDGRD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_LND_SUST.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of agricultural area under productive and sustainable agriculture" + ], + "memberList": [ + "sdg/AG_LND_SUST" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_LND_SUST_PRXCSS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Progress toward productive and sustainable agriculture", + "current status score (proxy)" + ], + "memberList": [ + "sdg/AG_LND_SUST_PRXCSS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_LND_SUST_PRXTS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Progress toward productive and sustainable agriculture", + "trend score (proxy)" + ], + "memberList": [ + "sdg/AG_LND_SUST_PRXTS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_LND_TOTL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Land area" + ], + "memberList": [ + "sdg/AG_LND_TOTL" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_PRD_AGVAS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Agriculture value added share of GDP" + ], + "memberList": [ + "sdg/AG_PRD_AGVAS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_PRD_FIESMS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Prevalence of moderate or severe food insecurity in the population" + ], + "memberList": [ + "sdg/AG_PRD_FIESMS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_PRD_FIESMS.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Prevalence of moderate or severe food insecurity in the population (15 years old and over) by Sex" + ], + "memberList": [ + "sdg/AG_PRD_FIESMS.AGE--Y_GE15__SEX--F", + "sdg/AG_PRD_FIESMS.AGE--Y_GE15__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_PRD_FIESMS.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Prevalence of moderate or severe food insecurity in the population (15 years old and over) by Type of location" + ], + "memberList": [ + "sdg/AG_PRD_FIESMS.AGE--Y_GE15__URBANIZATION--R", + "sdg/AG_PRD_FIESMS.AGE--Y_GE15__URBANIZATION--TSUB", + "sdg/AG_PRD_FIESMS.AGE--Y_GE15__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_PRD_FIESMSN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Population in moderate or severe food insecurity" + ], + "memberList": [ + "sdg/AG_PRD_FIESMSN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_PRD_FIESMSN.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Population in moderate or severe food insecurity (15 years old and over) by Sex" + ], + "memberList": [ + "sdg/AG_PRD_FIESMSN.AGE--Y_GE15__SEX--F", + "sdg/AG_PRD_FIESMSN.AGE--Y_GE15__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_PRD_FIESS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Prevalence of severe food insecurity in the population" + ], + "memberList": [ + "sdg/AG_PRD_FIESS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_PRD_FIESS.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Prevalence of severe food insecurity in the population (15 years old and over) by Sex" + ], + "memberList": [ + "sdg/AG_PRD_FIESS.AGE--Y_GE15__SEX--F", + "sdg/AG_PRD_FIESS.AGE--Y_GE15__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_PRD_FIESS.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Prevalence of severe food insecurity in the population (15 years old and over) by Type of location" + ], + "memberList": [ + "sdg/AG_PRD_FIESS.AGE--Y_GE15__URBANIZATION--R", + "sdg/AG_PRD_FIESS.AGE--Y_GE15__URBANIZATION--TSUB", + "sdg/AG_PRD_FIESS.AGE--Y_GE15__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_PRD_FIESSN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Population in severe food insecurity" + ], + "memberList": [ + "sdg/AG_PRD_FIESSN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_PRD_FIESSN.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Population in severe food insecurity (15 years old and over) by Sex" + ], + "memberList": [ + "sdg/AG_PRD_FIESSN.AGE--Y_GE15__SEX--F", + "sdg/AG_PRD_FIESSN.AGE--Y_GE15__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_PRD_ORTIND.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Agriculture orientation index for government expenditures" + ], + "memberList": [ + "sdg/AG_PRD_ORTIND" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_PRD_XSUBDY.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Agricultural export subsidies" + ], + "memberList": [ + "sdg/AG_PRD_XSUBDY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGAG_XPD_AGSGB.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Agriculture share of Government Expenditure" + ], + "memberList": [ + "sdg/AG_XPD_AGSGB" + ] + }, + { + "dcid": [ + "dc/svpg/SDGBN_CAB_XOKA_GD_ZS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Current account balance as a proportion of GDP" + ], + "memberList": [ + "sdg/BN_CAB_XOKA_GD_ZS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGBN_KLT_PTXL_CD.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Portfolio investment", + "net (Balance of Payments)" + ], + "memberList": [ + "sdg/BN_KLT_PTXL_CD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGBX_KLT_DINV_WD_GD_ZS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Foreign direct investment", + "net inflows", + "as a proportion of GDP" + ], + "memberList": [ + "sdg/BX_KLT_DINV_WD_GD_ZS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGBX_TRF_PWKR.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Volume of remittances as a proportion of total GDP" + ], + "memberList": [ + "sdg/BX_TRF_PWKR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_ENVTECH_EXP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Amount of tracked exported Environmentally Sound Technologies" + ], + "memberList": [ + "sdg/DC_ENVTECH_EXP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_ENVTECH_IMP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Amount of tracked imported Environmentally Sound Technologies" + ], + "memberList": [ + "sdg/DC_ENVTECH_IMP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_ENVTECH_INV.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total investment in Environment Sound Technologies" + ], + "memberList": [ + "sdg/DC_ENVTECH_INV" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_ENVTECH_INV.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total investment in Environment Sound Technologies by Major division of ISIC Rev. 4" + ], + "memberList": [ + "sdg/DC_ENVTECH_INV.ECONOMIC_ACTIVITY--ISIC4_A", + "sdg/DC_ENVTECH_INV.ECONOMIC_ACTIVITY--ISIC4_B", + "sdg/DC_ENVTECH_INV.ECONOMIC_ACTIVITY--ISIC4_C", + "sdg/DC_ENVTECH_INV.ECONOMIC_ACTIVITY--ISIC4_D", + "sdg/DC_ENVTECH_INV.ECONOMIC_ACTIVITY--ISIC4_E", + "sdg/DC_ENVTECH_INV.ECONOMIC_ACTIVITY--ISIC4_F", + "sdg/DC_ENVTECH_INV.ECONOMIC_ACTIVITY--ISIC4_H", + "sdg/DC_ENVTECH_INV.ECONOMIC_ACTIVITY--ISIC4_S" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_ENVTECH_REXP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Amount of tracked re-exported Environmentally Sound Technologies" + ], + "memberList": [ + "sdg/DC_ENVTECH_REXP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_ENVTECH_RIMP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Amount of tracked re-imported Environmentally Sound Technologies" + ], + "memberList": [ + "sdg/DC_ENVTECH_RIMP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_ENVTECH_TT.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total trade of tracked Environmentally Sound Technologies" + ], + "memberList": [ + "sdg/DC_ENVTECH_TT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_FIN_CLIMB.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Climate-specific financial support provided via bilateral", + "regional and other channels" + ], + "memberList": [ + "sdg/DC_FIN_CLIMB" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_FIN_CLIMB.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Climate-specific financial support provided via bilateral", + "regional and other channels by Type of support" + ], + "memberList": [ + "sdg/DC_FIN_CLIMB.CLIMATE_FINANCIAL_SUPPORT--TOS_ADAPTATION", + "sdg/DC_FIN_CLIMB.CLIMATE_FINANCIAL_SUPPORT--TOS_CROSS_CUTTING", + "sdg/DC_FIN_CLIMB.CLIMATE_FINANCIAL_SUPPORT--TOS_MITIGATION", + "sdg/DC_FIN_CLIMB.CLIMATE_FINANCIAL_SUPPORT--TOS_OTHER" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_FIN_CLIMM.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Climate-specific financial support provided via multilateral channels" + ], + "memberList": [ + "sdg/DC_FIN_CLIMM" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_FIN_CLIMM.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Climate-specific financial support provided via multilateral channels by Type of support" + ], + "memberList": [ + "sdg/DC_FIN_CLIMM.CLIMATE_FINANCIAL_SUPPORT--TOS_ADAPTATION", + "sdg/DC_FIN_CLIMM.CLIMATE_FINANCIAL_SUPPORT--TOS_CROSS_CUTTING", + "sdg/DC_FIN_CLIMM.CLIMATE_FINANCIAL_SUPPORT--TOS_MITIGATION", + "sdg/DC_FIN_CLIMM.CLIMATE_FINANCIAL_SUPPORT--TOS_OTHER" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_FIN_CLIMT.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total climate-specific financial support provided" + ], + "memberList": [ + "sdg/DC_FIN_CLIMT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_FIN_GEN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Core/general contributions provided to multilateral institutions" + ], + "memberList": [ + "sdg/DC_FIN_GEN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_FIN_TOT.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total financial support provided" + ], + "memberList": [ + "sdg/DC_FIN_TOT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_FTA_TOTAL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total official development assistance (gross disbursement) for technical cooperation" + ], + "memberList": [ + "sdg/DC_FTA_TOTAL" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_ODA_BDVDL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total outbound official development assistance for biodiversity" + ], + "memberList": [ + "sdg/DC_ODA_BDVDL" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_ODA_BDVL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total inbound official development assistance for biodiversity" + ], + "memberList": [ + "sdg/DC_ODA_BDVL" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_ODA_LDCG.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Net outbound official development assistance (ODA) to LDCs as a percentage of OECD-DAC donors' GNI" + ], + "memberList": [ + "sdg/DC_ODA_LDCG" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_ODA_LDCS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Net inbound official development assistance (ODA) to LDCs from OECD-DAC countries" + ], + "memberList": [ + "sdg/DC_ODA_LDCS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_ODA_LLDC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Net outbound official development assistance (ODA) to landlocked developing countries from OECD-DAC countries" + ], + "memberList": [ + "sdg/DC_ODA_LLDC" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_ODA_LLDCG.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Net outbound official development assistance (ODA) to landlocked developing countries as a percentage of OECD-DAC donors' GNI" + ], + "memberList": [ + "sdg/DC_ODA_LLDCG" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_ODA_POVDLG.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Outbound official development assistance grants for poverty reduction", + "as percentage of GNI" + ], + "memberList": [ + "sdg/DC_ODA_POVDLG" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_ODA_POVG.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Official development assistance grants for poverty reduction (percentage of GNI)" + ], + "memberList": [ + "sdg/DC_ODA_POVG" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_ODA_POVLG.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Inbound official development assistance grants for poverty reduction", + "as a percentage of GNI" + ], + "memberList": [ + "sdg/DC_ODA_POVLG" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_ODA_SIDS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Net outbound official development assistance (ODA) to small island states (SIDS) from OECD-DAC countries" + ], + "memberList": [ + "sdg/DC_ODA_SIDS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_ODA_SIDSG.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Net outbound official development assistance (ODA) to small island states (SIDS) as a percentage of OECD-DAC donors' GNI" + ], + "memberList": [ + "sdg/DC_ODA_SIDSG" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_ODA_TOTG.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Net outbound official development assistance (ODA) as a percentage of OECD-DAC donors' GNI" + ], + "memberList": [ + "sdg/DC_ODA_TOTG" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_ODA_TOTGGE.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Outbound official development assistance (ODA) as a percentage of OECD-DAC donors' GNI on grant equivalent basis" + ], + "memberList": [ + "sdg/DC_ODA_TOTGGE" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_ODA_TOTL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Net outbound official development assistance (ODA) from OECD-DAC countries" + ], + "memberList": [ + "sdg/DC_ODA_TOTL" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_ODA_TOTLGE.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Outbound official development assistance (ODA) from OECD-DAC countries on grant equivalent basis" + ], + "memberList": [ + "sdg/DC_ODA_TOTLGE" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_OSSD_GRT.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Gross receipts by developing countries of official sustainable development grants" + ], + "memberList": [ + "sdg/DC_OSSD_GRT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_OSSD_MPF.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Gross receipts by developing countries of mobilised private finance (MPF) - on an experimental basis" + ], + "memberList": [ + "sdg/DC_OSSD_MPF" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_OSSD_OFFCL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Gross receipts by developing countries of official concessional sustainable development loans" + ], + "memberList": [ + "sdg/DC_OSSD_OFFCL" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_OSSD_OFFNL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Gross receipts by developing countries of official non-concessional sustainable development loans" + ], + "memberList": [ + "sdg/DC_OSSD_OFFNL" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_OSSD_PRVGRT.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Gross receipts by developing countries of private grants" + ], + "memberList": [ + "sdg/DC_OSSD_PRVGRT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_TOF_AGRL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total inbound official flows (disbursements) for agriculture" + ], + "memberList": [ + "sdg/DC_TOF_AGRL" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_TOF_HLTHL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total inbound official development assistance to medical research and basic health sectors", + "gross disbursement" + ], + "memberList": [ + "sdg/DC_TOF_HLTHL" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_TOF_HLTHNT.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total inbound official development assistance to medical research and basic health sectors", + "net disbursement" + ], + "memberList": [ + "sdg/DC_TOF_HLTHNT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_TOF_INFRAL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total inbound official flows for infrastructure" + ], + "memberList": [ + "sdg/DC_TOF_INFRAL" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_TOF_SCHIPSL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total inbound official flows for scholarships" + ], + "memberList": [ + "sdg/DC_TOF_SCHIPSL" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_TOF_TRDCMDL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total outbound official flows (commitments) for Aid for Trade" + ], + "memberList": [ + "sdg/DC_TOF_TRDCMDL" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_TOF_TRDCML.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total inbound official flows (commitments) for Aid for Trade" + ], + "memberList": [ + "sdg/DC_TOF_TRDCML" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_TOF_TRDDBMDL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total outbound official flows (disbursement) for Aid for Trade" + ], + "memberList": [ + "sdg/DC_TOF_TRDDBMDL" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_TOF_TRDDBML.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total inbound official flows (disbursement) for Aid for Trade" + ], + "memberList": [ + "sdg/DC_TOF_TRDDBML" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_TOF_WASHL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total inbound official development assistance (gross disbursement) for water supply and sanitation" + ], + "memberList": [ + "sdg/DC_TOF_WASHL" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_TRF_TFDV.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total inbound resource flows for development" + ], + "memberList": [ + "sdg/DC_TRF_TFDV" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_TRF_TOTDL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total outbound assistance for development" + ], + "memberList": [ + "sdg/DC_TRF_TOTDL" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDC_TRF_TOTL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total inbound assistance for development" + ], + "memberList": [ + "sdg/DC_TRF_TOTL" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDI_ILL_IN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total value of inward illicit financial flows by Type of flow" + ], + "memberList": [ + "sdg/DI_ILL_IN.ILLICIT_FINANCIAL_FLOWS--ETF_TIP", + "sdg/DI_ILL_IN.ILLICIT_FINANCIAL_FLOWS--ILM_DRG" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDI_ILL_OUT.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total value of outward illicit financial flows by Type of flow" + ], + "memberList": [ + "sdg/DI_ILL_OUT.ILLICIT_FINANCIAL_FLOWS--ILM_DRG", + "sdg/DI_ILL_OUT.ILLICIT_FINANCIAL_FLOWS--ILM_SOM" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDP_DOD_DLD2_CR_CG_Z1.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Gross public sector debt", + "Central Government", + "as a proportion of GDP" + ], + "memberList": [ + "sdg/DP_DOD_DLD2_CR_CG_Z1" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDT_DOD_DECT_GN_ZS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "External debt stocks as a proportion of GNI" + ], + "memberList": [ + "sdg/DT_DOD_DECT_GN_ZS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGDT_TDS_DECT.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Debt service as a proportion of exports of goods and services" + ], + "memberList": [ + "sdg/DT_TDS_DECT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEG_ACS_ELEC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population with access to electricity" + ], + "memberList": [ + "sdg/EG_ACS_ELEC" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEG_ACS_ELEC.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population with access to electricity by Type of location" + ], + "memberList": [ + "sdg/EG_ACS_ELEC.URBANIZATION--R", + "sdg/EG_ACS_ELEC.URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEG_EGY_CLEAN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population with primary reliance on clean fuels and technology" + ], + "memberList": [ + "sdg/EG_EGY_CLEAN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEG_EGY_CLEAN.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population with primary reliance on clean fuels and technology by Type of location" + ], + "memberList": [ + "sdg/EG_EGY_CLEAN.URBANIZATION--R", + "sdg/EG_EGY_CLEAN.URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEG_EGY_PRIM.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Energy intensity level of primary energy" + ], + "memberList": [ + "sdg/EG_EGY_PRIM" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEG_EGY_RNEW.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Installed renewable\u00a0electricity-generating capacity" + ], + "memberList": [ + "sdg/EG_EGY_RNEW" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEG_EGY_RNEW.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Installed renewable\u00a0electricity-generating capacity by Type of renewable technology" + ], + "memberList": [ + "sdg/EG_EGY_RNEW.RENEWABLE_TECHNOLOGY--BIOENERGY", + "sdg/EG_EGY_RNEW.RENEWABLE_TECHNOLOGY--GEOTHERMAL", + "sdg/EG_EGY_RNEW.RENEWABLE_TECHNOLOGY--HYDROPOWER", + "sdg/EG_EGY_RNEW.RENEWABLE_TECHNOLOGY--MARINE", + "sdg/EG_EGY_RNEW.RENEWABLE_TECHNOLOGY--SOLAR", + "sdg/EG_EGY_RNEW.RENEWABLE_TECHNOLOGY--WIND" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEG_FEC_RNEW.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Share of renewable energy in the total final energy consumption" + ], + "memberList": [ + "sdg/EG_FEC_RNEW" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEG_IFF_RANDN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "International financial flows to developing countries in support of clean energy research and development and renewable energy production", + "including in hybrid systems" + ], + "memberList": [ + "sdg/EG_IFF_RANDN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEG_IFF_RANDN.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "International financial flows to developing countries in support of clean energy research and development and renewable energy production", + "including in hybrid systems by Type of renewable technology" + ], + "memberList": [ + "sdg/EG_IFF_RANDN.RENEWABLE_TECHNOLOGY--BIOENERGY", + "sdg/EG_IFF_RANDN.RENEWABLE_TECHNOLOGY--GEOTHERMAL", + "sdg/EG_IFF_RANDN.RENEWABLE_TECHNOLOGY--HYDROPOWER", + "sdg/EG_IFF_RANDN.RENEWABLE_TECHNOLOGY--MARINE", + "sdg/EG_IFF_RANDN.RENEWABLE_TECHNOLOGY--MULTIPLE", + "sdg/EG_IFF_RANDN.RENEWABLE_TECHNOLOGY--SOLAR", + "sdg/EG_IFF_RANDN.RENEWABLE_TECHNOLOGY--WIND" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEG_TBA_H2CO.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of transboundary basins (river and lake basins and aquifers) with an operational arrangement for water cooperation" + ], + "memberList": [ + "sdg/EG_TBA_H2CO" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEG_TBA_H2COAQ.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of transboundary aquifers with an operational arrangement for water cooperation" + ], + "memberList": [ + "sdg/EG_TBA_H2COAQ" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEG_TBA_H2CORL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of transboundary river and lake basins with an operational arrangement for water cooperation" + ], + "memberList": [ + "sdg/EG_TBA_H2CORL" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_ACS_URB_OPENSP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Average share of urban population with convenient access to open public spaces" + ], + "memberList": [ + "sdg/EN_ACS_URB_OPENSP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_ADAP_COM.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of countries with adaptation communications by Report" + ], + "memberList": [ + "sdg/EN_ADAP_COM.REPORT_ORDINAL--FIRST", + "sdg/EN_ADAP_COM.REPORT_ORDINAL--SECOND" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_ADAP_COM_DV.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of least developed countries and small island developing States with adaptation communications by Report" + ], + "memberList": [ + "sdg/EN_ADAP_COM_DV.REPORT_ORDINAL--FIRST" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_ATM_CO2.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Carbon dioxide emissions from fuel combustion" + ], + "memberList": [ + "sdg/EN_ATM_CO2" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_ATM_CO2.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Carbon dioxide emissions from fuel combustion" + ], + "memberList": [ + "sdg/EN_ATM_CO2.ECONOMIC_ACTIVITY--ISIC4_C10T32X19" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_ATM_CO2GDP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Carbon dioxide emissions per unit of GDP at purchaning power parity rates" + ], + "memberList": [ + "sdg/EN_ATM_CO2GDP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_ATM_CO2MVA.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Carbon dioxide emissions from manufacturing industries per unit of manufacturing value added by Major division of ISIC Rev. 4" + ], + "memberList": [ + "sdg/EN_ATM_CO2MVA.ECONOMIC_ACTIVITY--ISIC4_C" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_ATM_GHGT_AIP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total greenhouse gas emissions (excluding land use", + "land-use changes and forestry) for Annex I Parties to the United Nations Framework Convention on Climate Change" + ], + "memberList": [ + "sdg/EN_ATM_GHGT_AIP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_ATM_GHGT_NAIP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total greenhouse gas emissions (excluding land use", + "land-use changes and forestry) for non-Annex I Parties to the United Nations Framework Convention on Climate Change" + ], + "memberList": [ + "sdg/EN_ATM_GHGT_NAIP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_ATM_PM25.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Annual mean levels of fine particulate matter (population-weighted)" + ], + "memberList": [ + "sdg/EN_ATM_PM25" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_ATM_PM25.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Annual mean levels of fine particulate matter (population-weighted) by Type of location" + ], + "memberList": [ + "sdg/EN_ATM_PM25.URBANIZATION--CITY", + "sdg/EN_ATM_PM25.URBANIZATION--R", + "sdg/EN_ATM_PM25.URBANIZATION--TSUB", + "sdg/EN_ATM_PM25.URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_BIUREP_AIP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries with biennial reports", + "Annex I Parties to the United Nations Framework Convention on Climate Change by Report" + ], + "memberList": [ + "sdg/EN_BIUREP_AIP.REPORT_ORDINAL--FIFTH" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_BIUREP_NAIP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries with biennial update reports", + "non-Annex I Parties to the United Nations Framework Convention on Climate Change by Report" + ], + "memberList": [ + "sdg/EN_BIUREP_NAIP.REPORT_ORDINAL--FIFTH", + "sdg/EN_BIUREP_NAIP.REPORT_ORDINAL--FIRST", + "sdg/EN_BIUREP_NAIP.REPORT_ORDINAL--FOURTH", + "sdg/EN_BIUREP_NAIP.REPORT_ORDINAL--SECOND", + "sdg/EN_BIUREP_NAIP.REPORT_ORDINAL--THIRD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_BIUREP_NAIP_DV.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Least developed countries and small island developing States with biennial update reports", + "non-Annex I Parties to the United Nations Framework Convention on Climate Change by Report" + ], + "memberList": [ + "sdg/EN_BIUREP_NAIP_DV.REPORT_ORDINAL--FIFTH", + "sdg/EN_BIUREP_NAIP_DV.REPORT_ORDINAL--FIRST", + "sdg/EN_BIUREP_NAIP_DV.REPORT_ORDINAL--FOURTH", + "sdg/EN_BIUREP_NAIP_DV.REPORT_ORDINAL--SECOND", + "sdg/EN_BIUREP_NAIP_DV.REPORT_ORDINAL--THIRD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_EWT_COLLPCAP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Electronic waste collected per capita" + ], + "memberList": [ + "sdg/EN_EWT_COLLPCAP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_EWT_COLLR.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of electronic waste that is collected" + ], + "memberList": [ + "sdg/EN_EWT_COLLR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_EWT_COLLV.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total electronic waste collected" + ], + "memberList": [ + "sdg/EN_EWT_COLLV" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_EWT_GENPCAP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Electronic waste generated per capita" + ], + "memberList": [ + "sdg/EN_EWT_GENPCAP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_EWT_GENV.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total electronic waste generated" + ], + "memberList": [ + "sdg/EN_EWT_GENV" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_EWT_RCYPCAP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Electronic waste recycled per capita" + ], + "memberList": [ + "sdg/EN_EWT_RCYPCAP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_EWT_RCYR.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of electronic waste that is recycled" + ], + "memberList": [ + "sdg/EN_EWT_RCYR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_EWT_RCYV.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total electronic waste recycled" + ], + "memberList": [ + "sdg/EN_EWT_RCYV" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_H2O_GRAMBQ.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of groundwater bodies with good ambient water quality" + ], + "memberList": [ + "sdg/EN_H2O_GRAMBQ" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_H2O_OPAMBQ.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of open water bodies with good ambient water quality" + ], + "memberList": [ + "sdg/EN_H2O_OPAMBQ" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_H2O_RVAMBQ.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of river water bodies with good ambient water quality" + ], + "memberList": [ + "sdg/EN_H2O_RVAMBQ" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_H2O_WBAMBQ.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of bodies of water with good ambient water quality" + ], + "memberList": [ + "sdg/EN_H2O_WBAMBQ" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_HAZ_EXP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Hazardous waste exported" + ], + "memberList": [ + "sdg/EN_HAZ_EXP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_HAZ_GENGDP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Hazardous waste generated per unit of GDP" + ], + "memberList": [ + "sdg/EN_HAZ_GENGDP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_HAZ_GENV.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Hazardous waste generated" + ], + "memberList": [ + "sdg/EN_HAZ_GENV" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_HAZ_IMP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Hazardous waste imported" + ], + "memberList": [ + "sdg/EN_HAZ_IMP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_HAZ_PCAP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Hazardous waste generated", + "per capita" + ], + "memberList": [ + "sdg/EN_HAZ_PCAP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_HAZ_TREATV.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Hazardous waste treated by Type of waste treatment" + ], + "memberList": [ + "sdg/EN_HAZ_TREATV.WASTE_TREATMENT--INCINRT", + "sdg/EN_HAZ_TREATV.WASTE_TREATMENT--INCINRT_EGY", + "sdg/EN_HAZ_TREATV.WASTE_TREATMENT--LANDFIL", + "sdg/EN_HAZ_TREATV.WASTE_TREATMENT--LANDFILCTL", + "sdg/EN_HAZ_TREATV.WASTE_TREATMENT--OTHERWM" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_HAZ_TRTDISR.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of hazardous waste that is treated or disposed" + ], + "memberList": [ + "sdg/EN_HAZ_TRTDISR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_HAZ_TRTDISV.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Hazardous waste treated or disposed" + ], + "memberList": [ + "sdg/EN_HAZ_TRTDISV" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_LKRV_PWAC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Change in permanent water area of lakes and rivers" + ], + "memberList": [ + "sdg/EN_LKRV_PWAC" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_LKRV_PWAN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Permanent water area of lakes and rivers" + ], + "memberList": [ + "sdg/EN_LKRV_PWAN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_LKRV_PWAP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Permanent water area of lakes and rivers as a proportion of total land area" + ], + "memberList": [ + "sdg/EN_LKRV_PWAP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_LKRV_SWAC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Change in seasonal water area of lakes and rivers" + ], + "memberList": [ + "sdg/EN_LKRV_SWAC" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_LKRV_SWAN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Seasonal water area of lakes and rivers" + ], + "memberList": [ + "sdg/EN_LKRV_SWAN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_LKRV_SWAP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Seasonal water area of lakes and rivers as a proportion of total land area" + ], + "memberList": [ + "sdg/EN_LKRV_SWAP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_LKW_QLTRB.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Lake water quality: turbidity by Deviation level" + ], + "memberList": [ + "sdg/EN_LKW_QLTRB.DEVIATION_LEVEL--DL_EXTREME", + "sdg/EN_LKW_QLTRB.DEVIATION_LEVEL--DL_HIGH", + "sdg/EN_LKW_QLTRB.DEVIATION_LEVEL--DL_LOW", + "sdg/EN_LKW_QLTRB.DEVIATION_LEVEL--DL_MEDIUM" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_LKW_QLTRST.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Lake water quality: trophic state by Deviation level" + ], + "memberList": [ + "sdg/EN_LKW_QLTRST.DEVIATION_LEVEL--DL_EXTREME", + "sdg/EN_LKW_QLTRST.DEVIATION_LEVEL--DL_HIGH", + "sdg/EN_LKW_QLTRST.DEVIATION_LEVEL--DL_LOW", + "sdg/EN_LKW_QLTRST.DEVIATION_LEVEL--DL_MEDIUM" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_LND_CNSPOP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Ratio of land consumption rate to population growth rate" + ], + "memberList": [ + "sdg/EN_LND_CNSPOP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_LND_INDQTHSNG.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of urban population living in inadequate housing" + ], + "memberList": [ + "sdg/EN_LND_INDQTHSNG" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_LND_INDQTHSNG.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of urban population living in inadequate housing by Type of location" + ], + "memberList": [ + "sdg/EN_LND_INDQTHSNG.URBANIZATION--CITY", + "sdg/EN_LND_INDQTHSNG.URBANIZATION--TSUB", + "sdg/EN_LND_INDQTHSNG.URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_LND_SLUM.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of urban population living in slums by Type of location" + ], + "memberList": [ + "sdg/EN_LND_SLUM.URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_MAR_BEALITSQ.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Beach litter per square kilometer" + ], + "memberList": [ + "sdg/EN_MAR_BEALITSQ" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_MAR_BEALIT_BP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of beach litter originating from national land-based sources that ends in the beach" + ], + "memberList": [ + "sdg/EN_MAR_BEALIT_BP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_MAR_BEALIT_BV.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total beach litter originating from national land-based sources that ends in the beach" + ], + "memberList": [ + "sdg/EN_MAR_BEALIT_BV" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_MAR_BEALIT_BV.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total beach litter originating from national land-based sources that ends in the beach by Counterpart" + ], + "memberList": [ + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000040", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000050", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000060", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000090", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000100", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000120", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000130", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000150", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000170", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000210", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000220", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000230", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000240", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000270", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000280", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000290", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000340", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000350", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000380", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000410", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000420", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000430", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000460", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000470", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000480", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000510", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000550", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000560", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000600", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000610", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000620", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000630", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000660", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000670", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000680", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000700", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000710", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000720", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000730", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000750", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000780", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000790", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000810", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000820", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000830", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000840", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000890", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000900", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000910", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000940", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000950", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000960", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000970", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000980", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001000", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001010", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001040", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001050", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001060", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001080", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001100", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001110", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001140", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001150", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001170", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001190", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001200", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001220", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001230", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001250", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001270", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001280", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001290", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001300", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001310", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001320", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001340", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001350", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001370", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001380", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001400", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001410", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001430", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001440", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001450", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001470", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001480", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001490", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001520", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001540", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001570", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001620", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001640", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001650", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001660", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001690", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001700", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001720", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001750", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001770", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001840", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001860", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001870", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001880", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001910", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001930", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001940", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002000", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002010", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002020", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002040", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002050", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002090", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002120", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002160", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002170", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002190", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002250", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002270", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002290", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002300", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002310", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002350", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002370", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002380", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002400", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002410", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002420", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002430", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002450", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002460", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002470", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002500", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002530", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002630", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002640", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002690", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002710", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002730", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002750", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002800", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002820", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002860", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002880", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002890", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002910", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002950", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002960", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002980", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002990", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003020", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003030", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003040", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003060", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003090", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003100", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003110", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003130", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003140", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003160", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003170", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003190", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003220", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003250", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003260", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003270", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003300", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003340", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003360", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003380", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003390", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003400", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003460", + "sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003480" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_MAR_BEALIT_EXP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total beach litter originating from national land-based sources that is exported" + ], + "memberList": [ + "sdg/EN_MAR_BEALIT_EXP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_MAR_BEALIT_OP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of beach litter originating from national land-based sources that ends in the ocean" + ], + "memberList": [ + "sdg/EN_MAR_BEALIT_OP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_MAR_BEALIT_OV.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total beach litter originating from national land-based sources that ends in the ocean" + ], + "memberList": [ + "sdg/EN_MAR_BEALIT_OV" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_MAR_CHLANM.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Chlorophyll-a anomaly", + "remote sensing by Chlorophyll-a Concentration Frequency" + ], + "memberList": [ + "sdg/EN_MAR_CHLANM.CHLOROPHYLL_A_CONCENTRATION_FREQ--E", + "sdg/EN_MAR_CHLANM.CHLOROPHYLL_A_CONCENTRATION_FREQ--H", + "sdg/EN_MAR_CHLANM.CHLOROPHYLL_A_CONCENTRATION_FREQ--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_MAR_CHLDEV.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Chlorophyll-a deviations", + "remote sensing" + ], + "memberList": [ + "sdg/EN_MAR_CHLDEV" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_MAR_PLASDD.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Floating plastic debris density" + ], + "memberList": [ + "sdg/EN_MAR_PLASDD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_MAT_DOMCMPC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Domestic material consumption per capita" + ], + "memberList": [ + "sdg/EN_MAT_DOMCMPC" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_MAT_DOMCMPC.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Domestic material consumption per capita by Product" + ], + "memberList": [ + "sdg/EN_MAT_DOMCMPC.PRODUCT--MF_1", + "sdg/EN_MAT_DOMCMPC.PRODUCT--MF_11", + "sdg/EN_MAT_DOMCMPC.PRODUCT--MF_121", + "sdg/EN_MAT_DOMCMPC.PRODUCT--MF_122", + "sdg/EN_MAT_DOMCMPC.PRODUCT--MF_13", + "sdg/EN_MAT_DOMCMPC.PRODUCT--MF_14", + "sdg/EN_MAT_DOMCMPC.PRODUCT--MF_2", + "sdg/EN_MAT_DOMCMPC.PRODUCT--MF_21", + "sdg/EN_MAT_DOMCMPC.PRODUCT--MF_22", + "sdg/EN_MAT_DOMCMPC.PRODUCT--MF_3", + "sdg/EN_MAT_DOMCMPC.PRODUCT--MF_4", + "sdg/EN_MAT_DOMCMPC.PRODUCT--MF_41", + "sdg/EN_MAT_DOMCMPC.PRODUCT--MF_413", + "sdg/EN_MAT_DOMCMPC.PRODUCT--MF_421", + "sdg/EN_MAT_DOMCMPC.PRODUCT--MF_422", + "sdg/EN_MAT_DOMCMPC.PRODUCT--MF_AGG3A", + "sdg/EN_MAT_DOMCMPC.PRODUCT--MF_AGG3B" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_MAT_DOMCMPG.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Domestic material consumption per unit of GDP" + ], + "memberList": [ + "sdg/EN_MAT_DOMCMPG" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_MAT_DOMCMPG.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Domestic material consumption per unit of GDP by Product" + ], + "memberList": [ + "sdg/EN_MAT_DOMCMPG.PRODUCT--MF_1", + "sdg/EN_MAT_DOMCMPG.PRODUCT--MF_11", + "sdg/EN_MAT_DOMCMPG.PRODUCT--MF_121", + "sdg/EN_MAT_DOMCMPG.PRODUCT--MF_122", + "sdg/EN_MAT_DOMCMPG.PRODUCT--MF_13", + "sdg/EN_MAT_DOMCMPG.PRODUCT--MF_14", + "sdg/EN_MAT_DOMCMPG.PRODUCT--MF_2", + "sdg/EN_MAT_DOMCMPG.PRODUCT--MF_21", + "sdg/EN_MAT_DOMCMPG.PRODUCT--MF_22", + "sdg/EN_MAT_DOMCMPG.PRODUCT--MF_3", + "sdg/EN_MAT_DOMCMPG.PRODUCT--MF_4", + "sdg/EN_MAT_DOMCMPG.PRODUCT--MF_41", + "sdg/EN_MAT_DOMCMPG.PRODUCT--MF_413", + "sdg/EN_MAT_DOMCMPG.PRODUCT--MF_421", + "sdg/EN_MAT_DOMCMPG.PRODUCT--MF_422", + "sdg/EN_MAT_DOMCMPG.PRODUCT--MF_AGG3A", + "sdg/EN_MAT_DOMCMPG.PRODUCT--MF_AGG3B" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_MAT_DOMCMPT.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Domestic material consumption" + ], + "memberList": [ + "sdg/EN_MAT_DOMCMPT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_MAT_DOMCMPT.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Domestic material consumption by Product" + ], + "memberList": [ + "sdg/EN_MAT_DOMCMPT.PRODUCT--MF_1", + "sdg/EN_MAT_DOMCMPT.PRODUCT--MF_11", + "sdg/EN_MAT_DOMCMPT.PRODUCT--MF_121", + "sdg/EN_MAT_DOMCMPT.PRODUCT--MF_122", + "sdg/EN_MAT_DOMCMPT.PRODUCT--MF_13", + "sdg/EN_MAT_DOMCMPT.PRODUCT--MF_14", + "sdg/EN_MAT_DOMCMPT.PRODUCT--MF_2", + "sdg/EN_MAT_DOMCMPT.PRODUCT--MF_21", + "sdg/EN_MAT_DOMCMPT.PRODUCT--MF_22", + "sdg/EN_MAT_DOMCMPT.PRODUCT--MF_3", + "sdg/EN_MAT_DOMCMPT.PRODUCT--MF_4", + "sdg/EN_MAT_DOMCMPT.PRODUCT--MF_41", + "sdg/EN_MAT_DOMCMPT.PRODUCT--MF_413", + "sdg/EN_MAT_DOMCMPT.PRODUCT--MF_421", + "sdg/EN_MAT_DOMCMPT.PRODUCT--MF_422", + "sdg/EN_MAT_DOMCMPT.PRODUCT--MF_AGG3A", + "sdg/EN_MAT_DOMCMPT.PRODUCT--MF_AGG3B" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_MAT_FTPRPC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Material footprint per capita" + ], + "memberList": [ + "sdg/EN_MAT_FTPRPC" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_MAT_FTPRPG.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Material footprint per unit of GDP" + ], + "memberList": [ + "sdg/EN_MAT_FTPRPG" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_MAT_FTPRTN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Material footprint" + ], + "memberList": [ + "sdg/EN_MAT_FTPRTN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_MWT_COLLV.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Municipal waste collected" + ], + "memberList": [ + "sdg/EN_MWT_COLLV" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_MWT_EXP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Municipal waste exported" + ], + "memberList": [ + "sdg/EN_MWT_EXP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_MWT_GENV.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Municipal waste generated" + ], + "memberList": [ + "sdg/EN_MWT_GENV" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_MWT_IMP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Municipal waste imported" + ], + "memberList": [ + "sdg/EN_MWT_IMP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_MWT_RCYR.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of municipal waste recycled" + ], + "memberList": [ + "sdg/EN_MWT_RCYR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_MWT_RCYV.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Municipal waste recycled" + ], + "memberList": [ + "sdg/EN_MWT_RCYV" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_MWT_TREATR.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of municipal waste treated by Type of waste treatment" + ], + "memberList": [ + "sdg/EN_MWT_TREATR.WASTE_TREATMENT--COMPOST", + "sdg/EN_MWT_TREATR.WASTE_TREATMENT--INCINRT", + "sdg/EN_MWT_TREATR.WASTE_TREATMENT--INCINRT_EGY", + "sdg/EN_MWT_TREATR.WASTE_TREATMENT--LANDFIL", + "sdg/EN_MWT_TREATR.WASTE_TREATMENT--LANDFILCTL", + "sdg/EN_MWT_TREATR.WASTE_TREATMENT--OTHERWM" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_MWT_TREATV.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Municipal waste treated by type of treatment by Type of waste treatment" + ], + "memberList": [ + "sdg/EN_MWT_TREATV.WASTE_TREATMENT--COMPOST", + "sdg/EN_MWT_TREATV.WASTE_TREATMENT--INCINRT", + "sdg/EN_MWT_TREATV.WASTE_TREATMENT--INCINRT_EGY", + "sdg/EN_MWT_TREATV.WASTE_TREATMENT--LANDFIL", + "sdg/EN_MWT_TREATV.WASTE_TREATMENT--LANDFILCTL", + "sdg/EN_MWT_TREATV.WASTE_TREATMENT--OTHERWM" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_NAA_PLAN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries with national adaptation plans" + ], + "memberList": [ + "sdg/EN_NAA_PLAN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_NAA_PLAN_DV.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Least developed countries and small island developing States with national adaptation plans" + ], + "memberList": [ + "sdg/EN_NAA_PLAN_DV" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_NACOM_AIP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries with national communications", + "Annex I Parties to the United Nations Framework Convention on Climate Change by Report" + ], + "memberList": [ + "sdg/EN_NACOM_AIP.REPORT_ORDINAL--EIGHTH" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_NACOM_NAIP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries with national communications", + "non-Annex I Parties by Report" + ], + "memberList": [ + "sdg/EN_NACOM_NAIP.REPORT_ORDINAL--FIFTH", + "sdg/EN_NACOM_NAIP.REPORT_ORDINAL--FIRST", + "sdg/EN_NACOM_NAIP.REPORT_ORDINAL--FOURTH", + "sdg/EN_NACOM_NAIP.REPORT_ORDINAL--SECOND", + "sdg/EN_NACOM_NAIP.REPORT_ORDINAL--SIXTH", + "sdg/EN_NACOM_NAIP.REPORT_ORDINAL--THIRD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_NACOM_NAIP_DV.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Least developed countries and small island developing States with national communications", + "non-Annex I Parties to the United Nations Framework Convention on Climate Change by Report" + ], + "memberList": [ + "sdg/EN_NACOM_NAIP_DV.REPORT_ORDINAL--FIFTH", + "sdg/EN_NACOM_NAIP_DV.REPORT_ORDINAL--FIRST", + "sdg/EN_NACOM_NAIP_DV.REPORT_ORDINAL--FOURTH", + "sdg/EN_NACOM_NAIP_DV.REPORT_ORDINAL--SECOND", + "sdg/EN_NACOM_NAIP_DV.REPORT_ORDINAL--THIRD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_NAD_CONTR.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries with nationally determined contributions by Report" + ], + "memberList": [ + "sdg/EN_NAD_CONTR.REPORT_ORDINAL--FIRST", + "sdg/EN_NAD_CONTR.REPORT_ORDINAL--SECOND" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_NAD_CONTR_DV.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Least developed countries and small island developing States with nationally determined contributions by Report" + ], + "memberList": [ + "sdg/EN_NAD_CONTR_DV.REPORT_ORDINAL--FIRST", + "sdg/EN_NAD_CONTR_DV.REPORT_ORDINAL--SECOND" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_REF_WASCOL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Municipal Solid Waste collection coverage" + ], + "memberList": [ + "sdg/EN_REF_WASCOL" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_RSRV_MNWAC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Change in minimum reservoir water area" + ], + "memberList": [ + "sdg/EN_RSRV_MNWAC" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_RSRV_MNWAN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Minimum reservoir water area" + ], + "memberList": [ + "sdg/EN_RSRV_MNWAN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_RSRV_MNWAP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Minimum reservoir water area as a proportion of total land area" + ], + "memberList": [ + "sdg/EN_RSRV_MNWAP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_RSRV_MXWAN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Maxiumum reservoir water area" + ], + "memberList": [ + "sdg/EN_RSRV_MXWAN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_RSRV_MXWAP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Maximum reservoir water area as a proportion of total land area" + ], + "memberList": [ + "sdg/EN_RSRV_MXWAP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG", + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG", + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLDV" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (ADRIATIC", + "https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/europe/italy/#1668646611801-1bba7d03-5e19) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--380_C01" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (AEP MANAGEMENT PLAN FOR THE C\u00c3\u201dTE D\u00e2\u20ac\u2122IVOIRE BEACH SEINE FISHERY", + "PHASE 2", + "https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/africa/cote-divoire/#1667408017749-174e0caa-f6db1701873244450) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--384_C01" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (Absheron National Park", + "https://nationalparks.az/) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--031_C01" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.006" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (Anguniaqvia niqiyuam MPA Management Plan", + "https://www.dfo-mpo.gc.ca/oceans/mpa-zpm/anguniaqvia-niqiqyuam/index-eng.html) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLDV__MARINE_SPATATIAL_PLAN--124_C01" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.007" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (Banc-des-Am\u00c3\u00a9ricains MPA", + "https://www.dfo-mpo.gc.ca/oceans/mpa-zpm/american-americains/index-eng.html) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLDV__MARINE_SPATATIAL_PLAN--124_C02" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.008" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (Basin Head MPA Operational Management Plan 2021-2026", + "https://www.dfo-mpo.gc.ca/oceans/publications/basinhead-management-gestion-2021-2026/index-eng.html) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--124_C03" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.009" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (Beafort Sea Integrated Management Area", + "https://www.dfo-mpo.gc.ca/oceans/management-gestion/beaufort-eng.html) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--124_C04" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.010" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (COASTAL AND MARINE SPATIAL PLAN 2017-2030 (2017)", + "https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/americas/ecuador/) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--218_C01" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.011" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (CORAL REEF MANAGEMENT PLAN: KOH LAN", + "KOHKHOK AND KOH SAK", + "https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/asia/thailand/#1668566003904-24e6cdbd-ef11) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--764_C01" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.012" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (Constituci\u00c3\u00b3n de la Re\u00c3\u00bablica Dominicana", + "https://presidencia.gob.do/sites/default/files/statics/transparencia/base-legal/Constitucion-de-la-Republica-Dominicana-2015-actualizada.pdf) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--214_C01" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.013" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (DRAFT CENTRAL MARINE SPATIAL PLAN (2021)", + "https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/africa/namibia/) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--516_C01" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.014" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (Denmark\\'s maritime spatial plan", + "https://havplan.dk/en/page/info) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--208_C01" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.015" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (Detailed maritime spatial plan for waters adjacent to the seashore from ?eba to W?adys?awowo", + "https://www.umgdy.gov.pl/plany_morskie/projekt-planu-zagospodarowania-przestrzennego-dla-wod-przyleglych-do-brzegu-morskiego-na-odcinku-od-wladyslawowa-do-le) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--616_C06" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.016" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (ESTONIAN MARITIME SPATIAL PLAN", + "https://www.fin.ee/en/state-local-governments-spacial-planning/spatial-planning/maritime-spatial-planning) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--233_C01" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.017" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (East Marine Plans", + "East Marine Plans - GOV.UK (www.gov.uk)) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--826_C01" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.018" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (Eastport: marine protected areas management plan: 2013-2018", + "https://cat.fsl-bsf.scitech.gc.ca/record=4067529&searchscope=06) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--124_C05" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.019" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (Endeavour Hydrothermal Vents marine protected area management plan 2010-2015", + "https://cat.fsl-bsf.scitech.gc.ca/record=4016947&searchscope=06) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--124_C06" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.020" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (FINNISH MARITIME SPATIAL PLAN", + "https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/europe/finland/) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLDV__MARINE_SPATATIAL_PLAN--246_C01" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.021" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (Flood Risk Management Plan of the Black Sea River Basin District", + "https://www.bsbd.bg/bg/index_bg_2513977.html) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--100_C01" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.022" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (GRAND-BASSAM MARINE AND COASTAL SPACE MANAGEMENT PLAN", + "https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/africa/cote-divoire/#1667408017749-174e0caa-f6db1701873244450) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--384_C02" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.023" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (General development plans", + "https://www.mrrb.bg/bg/normativni-aktove/obsti-ustrojstveni-planove/) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--100_C02" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.024" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (Gilbert Bay: marine protected area management plan: 2013-2018", + "https://cat.fsl-bsf.scitech.gc.ca/record=4067531&searchscope=06) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--124_C07" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.025" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (Gulf of Bothnia - Maritime spatial plans", + "https://www.havochvatten.se/vagledning-foreskrifter-och-lagar/vagledningar/havsplaner/bottniska-viken.html) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--752_C01" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.026" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (Gulf of St. Lawrence Integrated Management Area", + "https://www.dfo-mpo.gc.ca/oceans/management-gestion/gulf-golfe-eng.html) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--124_C08" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.027" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (Gyzyl-Aghach National Park is the first Marine National Park in the Caspian region", + "https://nationalparks.az/) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--031_C02" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.028" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (HIIU COUNTY (HIIUMAA ISLAND AREA)", + "https://maakonnaplaneering.ee/maakonna-planeeringud/hiiumaa/hiiu-mereala-maakonnaplaneering/) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLDV__MARINE_SPATATIAL_PLAN--233_C02" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.029" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (Hecate Strait/Queen Charlotte Sound Glass Sponge Reefs Marine Protected Area", + "https://www.dfo-mpo.gc.ca/oceans/mpa-zpm/hecate-charlotte/index-eng.html) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLDV__MARINE_SPATATIAL_PLAN--124_C09" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.030" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (INTEGRATED COASTAL DEVELOPMENT AND MANAGEMENT PLAN", + "https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/africa/cote-divoire/#1667408017749-174e0caa-f6db1701873244450) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--384_C03" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.031" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (INTEGRATED MANAGEMENT PLAN FOR THE NORTH SEA 2015", + "https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/europe/netherlands/#1667408007329-bfdd569b-ad8a1684312314410) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--528_C01" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.032" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (INTEGRATED OCEAN MANAGEMENT PLAN FOR BARENTS SEA AND LOFETON ISLANDS (2006)", + "https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/europe/norway/#1601637626255-3ce6d0a0-a36d16627293923771684314021752) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--578_C01" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.033" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (INTEGRATED OCEAN MANAGEMENT PLAN FOR BARENTS SEA AND LOFETON ISLANDS (2011)", + "https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/europe/norway/#1601637626255-3ce6d0a0-a36d16627293923771684314021752) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--578_C02" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.034" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (INTEGRATED OCEAN MANAGEMENT PLAN FOR BARENTS SEA AND LOFETON ISLANDS (2015)", + "https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/europe/norway/#1601637626255-3ce6d0a0-a36d16627293923771684314021752) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--578_C03" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.035" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (INTEGRATED OCEAN MANAGEMENT PLAN FOR NORTH SEA (2013)", + "https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/europe/norway/#1601637626255-3ce6d0a0-a36d16627293923771684314021752) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--578_C04" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.036" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (INTEGRATED OCEAN MANAGEMENT PLAN FOR NORWEGIAN SEA (2009)", + "https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/europe/norway/#1601637626255-3ce6d0a0-a36d16627293923771684314021752) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--578_C05" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.037" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (INTEGRATED OCEAN MANAGEMENT PLAN FOR NORWEGIAN SEA (2017)", + "https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/europe/norway/#1601637626255-3ce6d0a0-a36d16627293923771684314021752) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--578_C06" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.038" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (INTERREGIONAL ZONING PLAN OF BONE BAY", + "https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/asia/indonesia/national-marine-spatial-plan/) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--360_C01" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.039" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (INTERREGIONAL ZONING PLAN OF THE BANDA SEA", + "https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/asia/indonesia/national-marine-spatial-plan/) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--360_C02" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.040" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (INTERREGIONAL ZONING PLAN OF THE FLORES SEA", + "https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/asia/indonesia/national-marine-spatial-plan/) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--360_C03" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.041" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (INTERREGIONAL ZONING PLAN OF THE MALACCA STRAIT", + "https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/asia/indonesia/national-marine-spatial-plan/) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--360_C04" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.042" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (INTERREGIONAL ZONING PLAN OF THE MALUKU SEA", + "https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/asia/indonesia/national-marine-spatial-plan/) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--360_C05" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.043" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (INTERREGIONAL ZONING PLAN OF THE NATUNA \u00e2\u20ac\u201c NORTH NATUNA SEA", + "https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/asia/indonesia/national-marine-spatial-plan/) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--360_C06" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.044" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (INTERREGIONAL ZONING PLAN OF THE SULAWESI SEA", + "https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/asia/indonesia/national-marine-spatial-plan/) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--360_C07" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.045" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (INTERREGIONAL ZONING PLAN OF TOMINI BAY", + "https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/asia/indonesia/national-marine-spatial-plan/) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--360_C08" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.046" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (IONIAN", + "https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/europe/italy/#1668646611801-1bba7d03-5e19) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--380_C02" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.047" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (ISRAEL\u00e2\u20ac\u2122S MEDITERRANEAN WATERS", + "https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/asia/israel/) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--376_C01" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.048" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (Integrated coastal zone management in Germany", + "https://www.umweltbundesamt.de/en/integrated-coastal-zone-management-in-germany) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--276_C01" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.049" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (Laurentian Channel MPA management plan", + "https://www.dfo-mpo.gc.ca/oceans/mpa-zpm/laurentian-laurentien/index-eng.html) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLDV__MARINE_SPATATIAL_PLAN--124_C10" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.050" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (MARINE SPATIAL PLAN FOR THE EXCLUSIVE ECONOMIC ZONE OF THE REPUBLIC OF MAURITIUS", + "https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/africa/mauritius/) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_INTPREP__MARINE_SPATATIAL_PLAN--480_C01" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.051" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (MARINE SPATIAL PLANNING IN KOH SI CHANG", + "https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/asia/thailand/#1668566003904-24e6cdbd-ef11) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--764_C02" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.052" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (MARINE SPATIAL PLANNING IN PHANG NGA BAY", + "https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/asia/thailand/#1668566003904-24e6cdbd-ef11) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_INTPREP__MARINE_SPATATIAL_PLAN--764_C03" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.053" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (MARITIME SPATIAL PLAN (POEM)", + "https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/africa/mozambique/) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--508_C01" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.054" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (MARITIME SPATIAL PLAN OF ROMANIA (DRAFT)", + "https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/europe/romania/) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--642_C01" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.055" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (MARITIME SPATIAL PLANS OF THE FIVE SPANISH MARINE SUBDIVISIONS (2023)", + "https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/europe/spain/) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--724_C01" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.056" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (Marine Spatial Planning is being prepared for but the work has not yet been initiated) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_INTPREP__MARINE_SPATATIAL_PLAN--831_C01" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.057" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (Marine Strategy of the Republic of Bulgaria", + "https://www.bsbd.bg/bg/m_env_and_action.html) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--100_C03" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.058" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (Maritime Spatial Plan for Szczecinski and Kamienski Lagoons", + "https://www.ums.gov.pl/plany-morskie/147-projekty-planow-zagospodarowania-przestrzennego-polskich-obszarow-morskich-morskich-wod-wewnetrznych-dla-zalewu-szczecinskiego-i-zalewu-kamienskieg) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--616_C01" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.059" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (Maritime Spatial Plan for the Marine Inland Waters", + "Territorial Sea and Exclusive Economic Zone Waters of the Republic of Latvia", + "https://drive.google.com/file/d/1mKigVjv6N03cjgPkwR5RSItcQezsn5zY/view) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--428_C01" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.060" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (Maritime Spatial Plan of the Republic of Bulgaria", + "https://www.mrrb.bg/bg/morski-prostranstven-plan-na-republika-bulgariya-2021-2035-g/) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--100_C04" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.061" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (Maritime Spatial Plan", + "https://www.bsh.de/EN/TOPICS/Offshore/Maritime_spatial_planning/Maritime_Spatial_Plan_2021/maritime-spatial-plan-2021_node.html) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--276_C02" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.062" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (Maritime Spatial Plans for Vistula Lagoon", + "https://www.umgdy.gov.pl/plany_morskie/projekt-planu-zagospodarowania-przestrzennego-zalewu-wislanego/) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--616_C03" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.063" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (Maritime spatial plan for the internal marine waters", + "the territorial sea and the exclusive economic zone on a scale of 1: 200", + "000", + "https://dziennikustaw.gov.pl/DU/2021/935) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--616_C02" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.064" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (Musquash Estuary: a management plan for the marine protected area and administered intertidal area", + "https://cat.fsl-bsf.scitech.gc.ca/record=4041841&searchscope=06) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--124_C11" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.065" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (NATIONAL ACTION PLAN FOR THE MANAGEMENT OF MARINE AND COASTAL AREAS: IMPLEMENTATION OF INTEGRATED COASTAL ZONE MANAGEMENT (ICZM) IN THE KRIBI-CAMPO REGION", + "https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/africa/cameroon/) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--120_C01" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.066" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (NATIONAL MARITIME SPATIAL PLANNING SITUATION PLAN (2019)) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--620_C01" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.067" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (NORTH SEA PROGRAMME (2022)", + "https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/europe/netherlands/#1667408007329-bfdd569b-ad8a1684312314410) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--528_C02" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.068" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (NORWAYS INTEGRATED OCEAN MANAGEMENT PLANS", + "BARENTS SEA", + "LOFOTEN AREA; THE NORWEGIAN SEA; AND THE NORTH SEA AND SKAGERRAK (2020)", + "https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/europe/norway/#1601637626255-3ce6d0a0-a36d16627293923771684314) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--578_C07" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.069" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (NSW coastal management framework", + "https://www.environment.nsw.gov.au/topics/water/coasts/coastal-management/framework) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--036_C01" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.070" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (Natura 2000 network in Bulgaria", + "https://natura2000.egov.bg/EsriBg.Natura.Public.Web.App/) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--100_C05" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.071" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (North East Marine Plans", + "https://www.gov.uk/government/publications/the-north-east-marine-plans-documents) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--826_C02" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.072" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (North Sea marine spatial planning", + "https://www.havochvatten.se/vagledning-foreskrifter-och-lagar/vagledningar/havsplaner/vasterhavet.html) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--752_C02" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.073" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (North West Marine Plans", + "The North West Marine Plans Documents - GOV.UK (www.gov.uk)) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--826_C03" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.074" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (PLANO DE ORDENAMENTO DO ESPA\u00c3\u2021O MARINHO (2023)", + "https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/africa/angola/) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--024_C01" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.075" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (POLICY DOCUMENT ON THE NORTH SEA 2009-2015 (SECTION 5.6 OF THE NATIONAL WATER PLAN) (2009)", + "https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/europe/netherlands/#1667408007329-bfdd569b-ad8a1684312314410) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--528_C03" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.076" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (POLICY DOCUMENT ON THE NORTH SEA 2016-2021 (APPENDIX 2 TO THE NATIONAL WATER PLAN) (2016)", + "https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/europe/netherlands/#1667408007329-bfdd569b-ad8a1684312314410) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--528_C04" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.077" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (POMIUAC ALTA GUAJIRA : Plan de Ordenaci\u00c3\u00b3n y Manejo Integrado de la Unidad Ambiental Costera de la Alta Guajira) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--170_C02" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.078" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (POMIUAC BAUD\u00c3\u201c-SAN JUAN: Plan de Ordenaci\u00c3\u00b3n y Manejo Integrado de la Unidad Ambiental Costera Baud\u00c3\u00b3 - San Juan", + "https://codechoco.gov.co) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--170_C03" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.079" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (POMIUAC CARIBE INSULAR : Plan de Ordenaci\u00c3\u00b3n y Manejo Integrado de la Unidad Ambiental Caribe Insular", + "https://www.coralina.gov.co) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--170_C04" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.080" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (POMIUAC DARIEN: Plan de Ordenaci\u00c3\u00b3n y Manejo Integrado de la Unidad Ambiental Costera del Dari\u00c3\u00a9n", + "https://codechoco.gov.co) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--170_C05" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.081" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (POMIUAC LLAS: Plan de Ordenaci\u00c3\u00b3n y Manejo Integrado de la Unidad Ambiental Costera Llanura Aluvial del Sur", + "https://crc.gov.co) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--170_C06" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.082" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (POMIUAC MAGDALENA : Plan de Ordenaci\u00c3\u00b3n y Manejo Integrado de la Unidad Ambiental Costera del R\u00c3\\xado Magdalena", + "complejo Canal del Dique - Sistema Lagunar de la Ci\u00c3\u00a9naga Grande de Santa Marta", + "https://www.parquesnacionales.gov.co) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--170_C07" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.083" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (POMIUAC MALAGA-BUENAVENTURA : Plan de Ordenaci\u00c3\u00b3n y Manejo Integrado de la Unidad Ambiental Costera del Complejo de M\u00c3\u00a1laga - Buenaventura", + "https://www.cvc.gov.co) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--170_C08" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.084" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (POMIUAC VNSNSM : Plan de Ordenaci\u00c3\u00b3n y Manejo Integrado de la Unidad Ambiental Costera de la Vertiente Norte de La Sierra Nevada de Santa Marta", + "https://www.corpamag.gov.co) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--170_C09" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.085" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (POMIUACPNCh: Plan de Ordenaci\u00c3\u00b3n y Manejo Integrado de la Unidad Ambiental Costera Pac\u00c3\\xadfico Norte Chocoano", + "https://codechoco.gov.co) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--170_C10" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.086" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (POMORSKI PROSTORSKI NA?RT SLOVENIJE / MARITIME SPATIAL PLAN OF SLOVENIA (2021)", + "http://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/europe/slovenia/) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--705_C01" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.087" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (Pacific North Coast Integrated Management Area", + "https://www.dfo-mpo.gc.ca/oceans/management-gestion/pncima-zgicnp-eng.html) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--124_C12" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.088" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (Pikialasorsuaq (North Water Polynya)", + "https://www.dfo-mpo.gc.ca/oceans/management-gestion/pikialasorsuaq-eng.html) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLDV__MARINE_SPATATIAL_PLAN--124_C13" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.089" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (Placentia Bay/Grand Banks Integrated Management Plan", + "https://www.dfo-mpo.gc.ca/oceans/management-gestion/placentia-eng.html) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--124_C14" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.090" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (Plan 5: POMIUAC MORROSQUILLO: Plan de Ordenaci\u00c3\u00b3n y Manejo Integrado de la Unidad Ambiental Costera de Estuarina del r\u00c3\\xado Sin\u00c3\u00ba y el Golfo de Morrosquillo", + "https://carsucre.gov.co) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--170_C01" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.091" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (Plan-de-Accion-Nacional-para-la-Gestion-Integral-de-Residuos-Marinos", + "https://ambiente.gob.do/wpfd_file/plan-de-accion-nacional-para-la-gestion-integral-de-residuos-marinos/) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--214_C02" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.092" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (Planeaci\u00c3\u00b3n estrat\u00c3\u00a9gica", + "https://anamar.gob.do/transparencia/index.php/plan-estrategico/planeacion-estrategica) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--214_C03" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.093" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (Planejamento Espacial Marinho", + "https://www.marinha.mil.br/secirm/psrm/pem) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_INTPREP__MARINE_SPATATIAL_PLAN--076_C01" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.094" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (P\u00c3\u201eRNU COUNTY (P\u00c3\u201eRNU BAY AREA)", + "https://maakonnaplaneering.ee/maakonna-planeeringud/parnumaa/parnu-mereala-maakonnaplaneering/) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLDV__MARINE_SPATATIAL_PLAN--233_C03" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.095" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (REGIONAL MARINE SPATIAL PLAN 2022-2025", + "https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/africa/madagascar/) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_INTPREP__MARINE_SPATATIAL_PLAN--450_C01" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.096" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (REGULATION OF GOVERNMENT NO. 32 YEAR 2019 ON NATIONAL MARINE SPATIAL PLANNING (2019)", + "https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/asia/indonesia/national-marine-spatial-plan/) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--360_C09" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.097" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (REGULATION OF PRESIDENT NO. 3 YEAR 2022 ON INTERREGIONAL ZONING PLAN OF JAVA SEA (2022)", + "https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/asia/indonesia/national-marine-spatial-plan/) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--360_C10" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.098" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (REGULATION OF PRESIDENT NO. 83 YEAR 2020 ON INTERREGIONAL ZONING PLAN OF MAKASSAR STRAIT (2020)", + "https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/asia/indonesia/national-marine-spatial-plan/) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--360_C11" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.099" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (ROYAL DECREE ESTABLISHING A MARINE SPATIAL PLAN", + "https://www.ejustice.just.fgov.be/mopdf/2014/03/28_1.pdf#Page2) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--056_C01" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.100" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (ROYAL DECREE ESTABLISHING THE MARINE SPATIAL PLANNING FOR THE PERIOD 2020 TO 2026 IN THE BELGIAN SEA-AREAS", + "https://www.health.belgium.be/en/royal-decree-msp-2020-english-courtesy-translation) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--056_C02" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.101" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (River Basin Management Plans of the Black Sea River Basin District", + "https://www.bsbd.bg/bg/index_bg_5493788.html) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--100_C06" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.102" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (SEYCHELLES MARINE SPATIAL PLAN (SMSP)", + "https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/africa/seychelles/) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLDV__MARINE_SPATATIAL_PLAN--690_C01" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.103" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (SGaan Kinghlas\u00e2\u20ac\u201cBowie Seamount Gin siigee tl\u00e2\u20ac\u2122a damaan kinggangs gin k\u00e2\u20ac\u2122aalaagangs Marine Protected Area Management Plan 2019", + "https://www.dfo-mpo.gc.ca/oceans/publications/sk-b-managementplan-plangestion/page01-eng.html) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--124_C16" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.104" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (SOUTHERN MARINE AREA PLAN (THE DRAFTING OF THE PLAN WILL COMMENCE IN APRIL 2023)", + "https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/africa/south-africa/#1667408007329-bfdd569b-ad8a) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_INTPREP__MARINE_SPATATIAL_PLAN--710_C01" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.105" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (Samur-Yalama National Park", + "https://nationalparks.az/) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--031_C03" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.106" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (Scotian Shelf", + "Atlantic Coast and Bay of Fundy regional oceans plan", + "https://www.dfo-mpo.gc.ca/oceans/management-gestion/scotian-ecossais-eng.html) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--124_C15" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.107" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (South East Marine Plan) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--826_C04" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.108" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (South Marine Plans", + "South Marine Plans - GOV.UK (www.gov.uk)) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--826_C05" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.109" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (South West Marine Plans", + "The South West Marine Plans Documents - GOV.UK (www.gov.uk)) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--826_C06" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.110" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (Spatial Plans for port area waters Szczecin", + "?winouj?cie", + "Police", + "Dziwn\u00c3\u00b3w", + "Trzebie?", + "?eba", + "Ustka", + "Rowy", + "Ko?obrzeg", + "Dar?owo", + "D?wirzyno", + "Elbl?g", + "Gda?sk", + "Gdynia", + "Hel", + "W?adys?awowo) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--616_C04" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.111" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (St. Anns Bank MPA", + "https://www.dfo-mpo.gc.ca/oceans/mpa-zpm/stanns-sainteanne/index-eng.html) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLDV__MARINE_SPATATIAL_PLAN--124_C17" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.112" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (Strategies", + "programs and plans", + "https://www.mrrb.bg/bg/normativni-aktove/strategii-programi-i-planove/) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--100_C07" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.113" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (TYRRHENIAN", + "https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/europe/italy/#1668646611801-1bba7d03-5e19) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--380_C03" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.114" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (Tarium Niryutait marine protected area: management plan", + "https://cat.fsl-bsf.scitech.gc.ca/record=4059552&searchscope=06) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--124_C18" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.115" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (The Baltic Sea spatial planning", + "https://www.havochvatten.se/vagledning-foreskrifter-och-lagar/vagledningar/havsplaner/ostersjon.html) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--752_C03" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.116" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (The Gully: marine protected area management plan", + "https://cat.fsl-bsf.scitech.gc.ca/record=4083556&searchscope=06) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--124_C19" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.117" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (The National center for wildlife already with other entities build the Road map of protected area to achive 2030 vision for the Kingdom) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--682_C01" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_ECSYBA.118" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas (The detailed maritime spatial plan for Gda?sk Bay", + "https://www.umgdy.gov.pl/plany_morskie/szczegolowy-projekt-planu-zagospodarowania-przestrzennego-zatoki-gdanskiej/) by Level of implementation" + ], + "memberList": [ + "sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--616_C05" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_FRMN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of companies publishing sustainability reports with disclosure by dimension" + ], + "memberList": [ + "sdg/EN_SCP_FRMN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_FRMN.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of companies publishing sustainability reports with disclosure by dimension by Major division of ISIC Rev. 4" + ], + "memberList": [ + "sdg/EN_SCP_FRMN.ECONOMIC_ACTIVITY--ISIC4_A", + "sdg/EN_SCP_FRMN.ECONOMIC_ACTIVITY--ISIC4_B", + "sdg/EN_SCP_FRMN.ECONOMIC_ACTIVITY--ISIC4_C", + "sdg/EN_SCP_FRMN.ECONOMIC_ACTIVITY--ISIC4_F", + "sdg/EN_SCP_FRMN.ECONOMIC_ACTIVITY--ISIC4_G", + "sdg/EN_SCP_FRMN.ECONOMIC_ACTIVITY--ISIC4_H", + "sdg/EN_SCP_FRMN.ECONOMIC_ACTIVITY--ISIC4_I", + "sdg/EN_SCP_FRMN.ECONOMIC_ACTIVITY--ISIC4_J", + "sdg/EN_SCP_FRMN.ECONOMIC_ACTIVITY--ISIC4_K", + "sdg/EN_SCP_FRMN.ECONOMIC_ACTIVITY--ISIC4_L", + "sdg/EN_SCP_FRMN.ECONOMIC_ACTIVITY--ISIC4_M", + "sdg/EN_SCP_FRMN.ECONOMIC_ACTIVITY--ISIC4_N", + "sdg/EN_SCP_FRMN.ECONOMIC_ACTIVITY--ISIC4_P", + "sdg/EN_SCP_FRMN.ECONOMIC_ACTIVITY--ISIC4_Q", + "sdg/EN_SCP_FRMN.ECONOMIC_ACTIVITY--ISIC4_R", + "sdg/EN_SCP_FRMN.ECONOMIC_ACTIVITY--ISIC4_S" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_SCP_FSHGDP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Sustainable fisheries as a proportion of GDP" + ], + "memberList": [ + "sdg/EN_SCP_FSHGDP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_TWT_GENV.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total waste generation" + ], + "memberList": [ + "sdg/EN_TWT_GENV" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_TWT_GENV.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total waste generation by Major division of ISIC Rev. 4" + ], + "memberList": [ + "sdg/EN_TWT_GENV.ECONOMIC_ACTIVITY--ISIC4_A", + "sdg/EN_TWT_GENV.ECONOMIC_ACTIVITY--ISIC4_B", + "sdg/EN_TWT_GENV.ECONOMIC_ACTIVITY--ISIC4_C", + "sdg/EN_TWT_GENV.ECONOMIC_ACTIVITY--ISIC4_D", + "sdg/EN_TWT_GENV.ECONOMIC_ACTIVITY--ISIC4_F", + "sdg/EN_TWT_GENV.ECONOMIC_ACTIVITY--ISIC4_S", + "sdg/EN_TWT_GENV.ECONOMIC_ACTIVITY--ISIC4_T" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_URB_OPENSP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Average share of the built-up area of cities that is open space for public use for all" + ], + "memberList": [ + "sdg/EN_URB_OPENSP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_WBE_HMWTL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Extent of human made wetlands" + ], + "memberList": [ + "sdg/EN_WBE_HMWTL" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_WBE_INWTL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Extent of inland wetlands" + ], + "memberList": [ + "sdg/EN_WBE_INWTL" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_WBE_MANGC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Mangrove total area change" + ], + "memberList": [ + "sdg/EN_WBE_MANGC" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_WBE_MANGN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Mangrove area" + ], + "memberList": [ + "sdg/EN_WBE_MANGN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_WBE_NDQTGRW.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Quantity of nationally derived groundwater" + ], + "memberList": [ + "sdg/EN_WBE_NDQTGRW" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_WBE_NDQTRVR.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Quantity of nationally derived water fromrivers" + ], + "memberList": [ + "sdg/EN_WBE_NDQTRVR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_WBE_WTLN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Wetlands area" + ], + "memberList": [ + "sdg/EN_WBE_WTLN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_WBE_WTLP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Wetlands area as a proportion of total land area" + ], + "memberList": [ + "sdg/EN_WBE_WTLP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_WWT_GEN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total wastewater generated" + ], + "memberList": [ + "sdg/EN_WWT_GEN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_WWT_GEN.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total wastewater generated by Private households" + ], + "memberList": [ + "sdg/EN_WWT_GEN.ECONOMIC_ACTIVITY--HH" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_WWT_GEN.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total wastewater generated by Major division of ISIC Rev. 4" + ], + "memberList": [ + "sdg/EN_WWT_GEN.ECONOMIC_ACTIVITY--ISIC4_A", + "sdg/EN_WWT_GEN.ECONOMIC_ACTIVITY--ISIC4_B", + "sdg/EN_WWT_GEN.ECONOMIC_ACTIVITY--ISIC4_C", + "sdg/EN_WWT_GEN.ECONOMIC_ACTIVITY--ISIC4_D", + "sdg/EN_WWT_GEN.ECONOMIC_ACTIVITY--ISIC4_E", + "sdg/EN_WWT_GEN.ECONOMIC_ACTIVITY--ISIC4_F" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_WWT_GEN.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total wastewater generated by Sector" + ], + "memberList": [ + "sdg/EN_WWT_GEN.ECONOMIC_ACTIVITY--ISIC4_BTFXE", + "sdg/EN_WWT_GEN.ECONOMIC_ACTIVITY--ISIC4_GTS", + "sdg/EN_WWT_GEN.ECONOMIC_ACTIVITY--ISIC4_GTS_HH" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_WWT_TREAT.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total wastewater treated" + ], + "memberList": [ + "sdg/EN_WWT_TREAT", + "sdg/EN_WWT_TREAT.ECONOMIC_ACTIVITY--ISIC4_BTFXE" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_WWT_TREATR.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of wastewater treated" + ], + "memberList": [ + "sdg/EN_WWT_TREATR", + "sdg/EN_WWT_TREATR.ECONOMIC_ACTIVITY--ISIC4_BTFXE" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_WWT_TREATR_SF.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of wastewater safely treated" + ], + "memberList": [ + "sdg/EN_WWT_TREATR_SF", + "sdg/EN_WWT_TREATR_SF.ECONOMIC_ACTIVITY--ISIC4_BTFXE" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_WWT_TREAT_SF.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total wastewater safely treated" + ], + "memberList": [ + "sdg/EN_WWT_TREAT_SF", + "sdg/EN_WWT_TREAT_SF.ECONOMIC_ACTIVITY--ISIC4_BTFXE" + ] + }, + { + "dcid": [ + "dc/svpg/SDGEN_WWT_WWDS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of safely treated domestic wastewater flows" + ], + "memberList": [ + "sdg/EN_WWT_WWDS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_BDY_ABT2NP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries that established national targets in accordance with Aichi Biodiversity Target 2 of the Strategic Plan for Biodiversity 2011-2020 in their National Biodiversity Strategy and Action Plans" + ], + "memberList": [ + "sdg/ER_BDY_ABT2NP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_BDY_ABT2NP.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries that established national targets in accordance with Aichi Biodiversity Target 2 of the Strategic Plan for Biodiversity 2011-2020 in their National Biodiversity Strategy and Action Plans by Status of national target" + ], + "memberList": [ + "sdg/ER_BDY_ABT2NP.LEVEL_STATUS--ABT2ACHIEVE", + "sdg/ER_BDY_ABT2NP.LEVEL_STATUS--ABT2DIGRESS", + "sdg/ER_BDY_ABT2NP.LEVEL_STATUS--ABT2EXCEED", + "sdg/ER_BDY_ABT2NP.LEVEL_STATUS--ABT2INSUFNT", + "sdg/ER_BDY_ABT2NP.LEVEL_STATUS--ABT2NONTLT", + "sdg/ER_BDY_ABT2NP.LEVEL_STATUS--ABT2NOPROG" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_BDY_SEEA.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries with integrated biodiversity values into national accounting and reporting systems", + "defined as implementation of the System of Environmental-Economic Accounting" + ], + "memberList": [ + "sdg/ER_BDY_SEEA" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_BDY_SEEA.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries with integrated biodiversity values into national accounting and reporting systems", + "defined as implementation of the System of Environmental-Economic Accounting by Status" + ], + "memberList": [ + "sdg/ER_BDY_SEEA.LEVEL_STATUS--LS_COMP", + "sdg/ER_BDY_SEEA.LEVEL_STATUS--LS_COMPDISSE", + "sdg/ER_BDY_SEEA.LEVEL_STATUS--LS_DISSEM" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_CBD_ABSCLRHS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries that have legislative", + "administrative and policy framework or measures reported to the Access and Benefit-Sharing Clearing-House" + ], + "memberList": [ + "sdg/ER_CBD_ABSCLRHS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_CBD_NAGOYA.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries that are parties to the Nagoya Protocol" + ], + "memberList": [ + "sdg/ER_CBD_NAGOYA" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_CBD_ORSPGRFA.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries that have legislative", + "administrative and policy framework or measures reported through the Online Reporting System on Compliance of the International Treaty on Plant Genetic Resources for Food and Agriculture (PGRFA)" + ], + "memberList": [ + "sdg/ER_CBD_ORSPGRFA" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_CBD_PTYPGRFA.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries that are contracting Parties to the International Treaty on Plant Genetic Resources for Food and Agriculture (PGRFA)" + ], + "memberList": [ + "sdg/ER_CBD_PTYPGRFA" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_CBD_SMTA.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total reported number of Standard Material Transfer Agreements (SMTAs) transferring plant genetic resources for food and agriculture to the country" + ], + "memberList": [ + "sdg/ER_CBD_SMTA" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_FFS_CMPT_CD.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Fossil-fuel subsidies (consumption and production)" + ], + "memberList": [ + "sdg/ER_FFS_CMPT_CD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_FFS_CMPT_GDP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Fossil-fuel subsidies (consumption and production) as a proportion of total GDP" + ], + "memberList": [ + "sdg/ER_FFS_CMPT_GDP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_FFS_CMPT_PC_CD.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Fossil-fuel subsidies (consumption and production) per capita" + ], + "memberList": [ + "sdg/ER_FFS_CMPT_PC_CD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_GRF_ANIMKPT.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of local breeds kept in the country" + ], + "memberList": [ + "sdg/ER_GRF_ANIMKPT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_GRF_ANIMKPT_TRB.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of transboundary breeds (including extinct ones)" + ], + "memberList": [ + "sdg/ER_GRF_ANIMKPT_TRB" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_GRF_ANIMRCNTN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of local breeds for which sufficient genetic resources are stored for reconstitution" + ], + "memberList": [ + "sdg/ER_GRF_ANIMRCNTN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_GRF_ANIMRCNTN_TRB.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of transboundary breeds for which sufficient genetic resources are stored for reconstitution" + ], + "memberList": [ + "sdg/ER_GRF_ANIMRCNTN_TRB" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_GRF_PLNTSTOR.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Plant genetic resources accessions stored ex situ" + ], + "memberList": [ + "sdg/ER_GRF_PLNTSTOR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_H2O_FWTL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of fish stocks within biologically sustainable levels (not overexploited)" + ], + "memberList": [ + "sdg/ER_H2O_FWTL" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_H2O_IWRMD.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Degree of implementation of integrated water resources management" + ], + "memberList": [ + "sdg/ER_H2O_IWRMD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_H2O_IWRMD_EE.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Degree of implementation of integrated water resources management: enabling environment" + ], + "memberList": [ + "sdg/ER_H2O_IWRMD_EE" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_H2O_IWRMD_FI.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Degree of implementation of integrated water resources management: financing" + ], + "memberList": [ + "sdg/ER_H2O_IWRMD_FI" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_H2O_IWRMD_IP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Degree of implementation of integrated water resources management: institutions and participation" + ], + "memberList": [ + "sdg/ER_H2O_IWRMD_IP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_H2O_IWRMD_MI.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Degree of implementation of integrated water resources management: management instruments" + ], + "memberList": [ + "sdg/ER_H2O_IWRMD_MI" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_H2O_IWRMP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of countries by category of implementation of integrated water resources management (IWRM) by Level of implementation" + ], + "memberList": [ + "sdg/ER_H2O_IWRMP.LEVEL_STATUS--HIGIMP", + "sdg/ER_H2O_IWRMP.LEVEL_STATUS--LOWIMP", + "sdg/ER_H2O_IWRMP.LEVEL_STATUS--MHIGIMP", + "sdg/ER_H2O_IWRMP.LEVEL_STATUS--MLOWIMP", + "sdg/ER_H2O_IWRMP.LEVEL_STATUS--VHIGIMP", + "sdg/ER_H2O_IWRMP.LEVEL_STATUS--VLOWIMP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_H2O_PARTIC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of countries with high level of users/communities participating in planning programs in rural drinking-water supply by Type of location" + ], + "memberList": [ + "sdg/ER_H2O_PARTIC.URBANIZATION--R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_H2O_PRDU.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries with procedures in law or policy for participation by service users/communities in planning program in rural drinking-water supply by Type of location" + ], + "memberList": [ + "sdg/ER_H2O_PRDU.URBANIZATION--R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_H2O_PROCED.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of countries with clearly defined procedures in law or policy for participation by service users/communities in planning program in rural drinking-water supply by Type of location" + ], + "memberList": [ + "sdg/ER_H2O_PROCED.URBANIZATION--R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_H2O_RURP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries with users/communities participating in planning programs in rural drinking-water supply", + "by level of participation by Type of location" + ], + "memberList": [ + "sdg/ER_H2O_RURP.URBANIZATION--R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_H2O_STRESS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Level of water stress: freshwater withdrawal as a proportion of available freshwater resources" + ], + "memberList": [ + "sdg/ER_H2O_STRESS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_H2O_STRESS.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Level of water stress: freshwater withdrawal as a proportion of available freshwater resources by Sector" + ], + "memberList": [ + "sdg/ER_H2O_STRESS.ECONOMIC_ACTIVITY--ISIC4_A01_A0210_A0322", + "sdg/ER_H2O_STRESS.ECONOMIC_ACTIVITY--ISIC4_BTFXE", + "sdg/ER_H2O_STRESS.ECONOMIC_ACTIVITY--ISIC4_GTT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_H2O_WUEYST.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Water use efficiency" + ], + "memberList": [ + "sdg/ER_H2O_WUEYST" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_H2O_WUEYST.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Water use efficiency by Sector" + ], + "memberList": [ + "sdg/ER_H2O_WUEYST.ECONOMIC_ACTIVITY--ISIC4_A01_A0210_A0322", + "sdg/ER_H2O_WUEYST.ECONOMIC_ACTIVITY--ISIC4_BTFXE", + "sdg/ER_H2O_WUEYST.ECONOMIC_ACTIVITY--ISIC4_GTT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_IAS_GLOFUN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Recipient countries of global funding with access to any funding from global financial mechanisms for projects related to invasive alien species\u00a0 management" + ], + "memberList": [ + "sdg/ER_IAS_GLOFUN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_IAS_GLOFUNP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of recipient countries of global funding with access to any funding from global financial mechanisms for projects related to invasive alien species\u00a0 management" + ], + "memberList": [ + "sdg/ER_IAS_GLOFUNP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_IAS_LEGIS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countriees with a legislation", + "regulation", + "or act related to the prevention of introduction and management of Invasive Alien Species" + ], + "memberList": [ + "sdg/ER_IAS_LEGIS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_IAS_NATBUD.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries with an allocation from the national budget to manage the threat of invasive alien species" + ], + "memberList": [ + "sdg/ER_IAS_NATBUD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_IAS_NATBUDP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of countries with allocation from the national budget to manage the threat of invasive alien species" + ], + "memberList": [ + "sdg/ER_IAS_NATBUDP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_IAS_NBSAP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries with alignment of National Biodiversity Strategy and Action Plan (NBSAP) targets to target 9 of the Aichi Biodiversity set out in the Strategic Plan for Biodiversity 2011-2020" + ], + "memberList": [ + "sdg/ER_IAS_NBSAP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_IAS_NBSAPP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of countries with alignment of National Biodiversity Strategy and Action Plan (NBSAP) targets to target 9 of the Aichi Biodiversity target 9 set out in the Strategic Plan for Biodiversity 2011-2020" + ], + "memberList": [ + "sdg/ER_IAS_NBSAPP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_MRN_MPA.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Average proportion of Marine Key Biodiversity Areas (KBAs) covered by protected areas" + ], + "memberList": [ + "sdg/ER_MRN_MPA" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_MTN_DGRDA.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Area of degraded mountain land" + ], + "memberList": [ + "sdg/ER_MTN_DGRDA" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_MTN_DGRDA.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Area of degraded mountain land by Bioclimatic belt" + ], + "memberList": [ + "sdg/ER_MTN_DGRDA.BIOCLIMATIC_BELT--ALPINE", + "sdg/ER_MTN_DGRDA.BIOCLIMATIC_BELT--MONTANE", + "sdg/ER_MTN_DGRDA.BIOCLIMATIC_BELT--NIVAL", + "sdg/ER_MTN_DGRDA.BIOCLIMATIC_BELT--REMAIN_MOUNT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_MTN_DGRDP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of degraded mountain land" + ], + "memberList": [ + "sdg/ER_MTN_DGRDP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_MTN_DGRDP.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of degraded mountain land by Bioclimatic belt" + ], + "memberList": [ + "sdg/ER_MTN_DGRDP.BIOCLIMATIC_BELT--ALPINE", + "sdg/ER_MTN_DGRDP.BIOCLIMATIC_BELT--MONTANE", + "sdg/ER_MTN_DGRDP.BIOCLIMATIC_BELT--NIVAL", + "sdg/ER_MTN_DGRDP.BIOCLIMATIC_BELT--REMAIN_MOUNT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_MTN_GRNCOV.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Area of mountain green cover by Type of land cover" + ], + "memberList": [ + "sdg/ER_MTN_GRNCOV.LAND_COVER--MGCI__BIOCLIMATIC_BELT--ALPINE", + "sdg/ER_MTN_GRNCOV.LAND_COVER--MGCI__BIOCLIMATIC_BELT--MONTANE", + "sdg/ER_MTN_GRNCOV.LAND_COVER--MGCI__BIOCLIMATIC_BELT--NIVAL", + "sdg/ER_MTN_GRNCOV.LAND_COVER--MGCI__BIOCLIMATIC_BELT--REMAIN_MOUNT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_MTN_GRNCOV.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Area of mountain green cover (Alpine) by Type of land cover" + ], + "memberList": [ + "sdg/ER_MTN_GRNCOV.LAND_COVER--ART__BIOCLIMATIC_BELT--ALPINE", + "sdg/ER_MTN_GRNCOV.LAND_COVER--CRP__BIOCLIMATIC_BELT--ALPINE", + "sdg/ER_MTN_GRNCOV.LAND_COVER--GRS__BIOCLIMATIC_BELT--ALPINE", + "sdg/ER_MTN_GRNCOV.LAND_COVER--IWB__BIOCLIMATIC_BELT--ALPINE", + "sdg/ER_MTN_GRNCOV.LAND_COVER--PSG__BIOCLIMATIC_BELT--ALPINE", + "sdg/ER_MTN_GRNCOV.LAND_COVER--SAF__BIOCLIMATIC_BELT--ALPINE", + "sdg/ER_MTN_GRNCOV.LAND_COVER--SHR__BIOCLIMATIC_BELT--ALPINE", + "sdg/ER_MTN_GRNCOV.LAND_COVER--SNV__BIOCLIMATIC_BELT--ALPINE", + "sdg/ER_MTN_GRNCOV.LAND_COVER--TBL__BIOCLIMATIC_BELT--ALPINE", + "sdg/ER_MTN_GRNCOV.LAND_COVER--TRE__BIOCLIMATIC_BELT--ALPINE" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_MTN_GRNCOV.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Area of mountain green cover (Montane) by Type of land cover" + ], + "memberList": [ + "sdg/ER_MTN_GRNCOV.LAND_COVER--ART__BIOCLIMATIC_BELT--MONTANE", + "sdg/ER_MTN_GRNCOV.LAND_COVER--CRP__BIOCLIMATIC_BELT--MONTANE", + "sdg/ER_MTN_GRNCOV.LAND_COVER--GRS__BIOCLIMATIC_BELT--MONTANE", + "sdg/ER_MTN_GRNCOV.LAND_COVER--IWB__BIOCLIMATIC_BELT--MONTANE", + "sdg/ER_MTN_GRNCOV.LAND_COVER--PSG__BIOCLIMATIC_BELT--MONTANE", + "sdg/ER_MTN_GRNCOV.LAND_COVER--SAF__BIOCLIMATIC_BELT--MONTANE", + "sdg/ER_MTN_GRNCOV.LAND_COVER--SHR__BIOCLIMATIC_BELT--MONTANE", + "sdg/ER_MTN_GRNCOV.LAND_COVER--SNV__BIOCLIMATIC_BELT--MONTANE", + "sdg/ER_MTN_GRNCOV.LAND_COVER--TBL__BIOCLIMATIC_BELT--MONTANE", + "sdg/ER_MTN_GRNCOV.LAND_COVER--TRE__BIOCLIMATIC_BELT--MONTANE" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_MTN_GRNCOV.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Area of mountain green cover (Nival) by Type of land cover" + ], + "memberList": [ + "sdg/ER_MTN_GRNCOV.LAND_COVER--ART__BIOCLIMATIC_BELT--NIVAL", + "sdg/ER_MTN_GRNCOV.LAND_COVER--CRP__BIOCLIMATIC_BELT--NIVAL", + "sdg/ER_MTN_GRNCOV.LAND_COVER--GRS__BIOCLIMATIC_BELT--NIVAL", + "sdg/ER_MTN_GRNCOV.LAND_COVER--IWB__BIOCLIMATIC_BELT--NIVAL", + "sdg/ER_MTN_GRNCOV.LAND_COVER--PSG__BIOCLIMATIC_BELT--NIVAL", + "sdg/ER_MTN_GRNCOV.LAND_COVER--SAF__BIOCLIMATIC_BELT--NIVAL", + "sdg/ER_MTN_GRNCOV.LAND_COVER--SHR__BIOCLIMATIC_BELT--NIVAL", + "sdg/ER_MTN_GRNCOV.LAND_COVER--SNV__BIOCLIMATIC_BELT--NIVAL", + "sdg/ER_MTN_GRNCOV.LAND_COVER--TBL__BIOCLIMATIC_BELT--NIVAL", + "sdg/ER_MTN_GRNCOV.LAND_COVER--TRE__BIOCLIMATIC_BELT--NIVAL" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_MTN_GRNCOV.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Area of mountain green cover (Remaining mountain area) by Type of land cover" + ], + "memberList": [ + "sdg/ER_MTN_GRNCOV.LAND_COVER--ART__BIOCLIMATIC_BELT--REMAIN_MOUNT", + "sdg/ER_MTN_GRNCOV.LAND_COVER--CRP__BIOCLIMATIC_BELT--REMAIN_MOUNT", + "sdg/ER_MTN_GRNCOV.LAND_COVER--GRS__BIOCLIMATIC_BELT--REMAIN_MOUNT", + "sdg/ER_MTN_GRNCOV.LAND_COVER--IWB__BIOCLIMATIC_BELT--REMAIN_MOUNT", + "sdg/ER_MTN_GRNCOV.LAND_COVER--SAF__BIOCLIMATIC_BELT--REMAIN_MOUNT", + "sdg/ER_MTN_GRNCOV.LAND_COVER--SHR__BIOCLIMATIC_BELT--REMAIN_MOUNT", + "sdg/ER_MTN_GRNCOV.LAND_COVER--SNV__BIOCLIMATIC_BELT--REMAIN_MOUNT", + "sdg/ER_MTN_GRNCOV.LAND_COVER--TBL__BIOCLIMATIC_BELT--REMAIN_MOUNT", + "sdg/ER_MTN_GRNCOV.LAND_COVER--TRE__BIOCLIMATIC_BELT--REMAIN_MOUNT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_MTN_GRNCOV.006" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Area of mountain green cover by Type of land cover" + ], + "memberList": [ + "sdg/ER_MTN_GRNCOV.LAND_COVER--ART", + "sdg/ER_MTN_GRNCOV.LAND_COVER--CRP", + "sdg/ER_MTN_GRNCOV.LAND_COVER--GRS", + "sdg/ER_MTN_GRNCOV.LAND_COVER--IWB", + "sdg/ER_MTN_GRNCOV.LAND_COVER--MGCI", + "sdg/ER_MTN_GRNCOV.LAND_COVER--PSG", + "sdg/ER_MTN_GRNCOV.LAND_COVER--SAF", + "sdg/ER_MTN_GRNCOV.LAND_COVER--SHR", + "sdg/ER_MTN_GRNCOV.LAND_COVER--SNV", + "sdg/ER_MTN_GRNCOV.LAND_COVER--TBL", + "sdg/ER_MTN_GRNCOV.LAND_COVER--TRE" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_MTN_GRNCVI.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Mountain Green Cover Index by Type of land cover" + ], + "memberList": [ + "sdg/ER_MTN_GRNCVI.LAND_COVER--MGCI__BIOCLIMATIC_BELT--ALPINE", + "sdg/ER_MTN_GRNCVI.LAND_COVER--MGCI__BIOCLIMATIC_BELT--MONTANE", + "sdg/ER_MTN_GRNCVI.LAND_COVER--MGCI__BIOCLIMATIC_BELT--NIVAL", + "sdg/ER_MTN_GRNCVI.LAND_COVER--MGCI__BIOCLIMATIC_BELT--REMAIN_MOUNT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_MTN_GRNCVI.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Mountain Green Cover Index (Alpine) by Type of land cover" + ], + "memberList": [ + "sdg/ER_MTN_GRNCVI.LAND_COVER--ART__BIOCLIMATIC_BELT--ALPINE", + "sdg/ER_MTN_GRNCVI.LAND_COVER--CRP__BIOCLIMATIC_BELT--ALPINE", + "sdg/ER_MTN_GRNCVI.LAND_COVER--GRS__BIOCLIMATIC_BELT--ALPINE", + "sdg/ER_MTN_GRNCVI.LAND_COVER--IWB__BIOCLIMATIC_BELT--ALPINE", + "sdg/ER_MTN_GRNCVI.LAND_COVER--PSG__BIOCLIMATIC_BELT--ALPINE", + "sdg/ER_MTN_GRNCVI.LAND_COVER--SAF__BIOCLIMATIC_BELT--ALPINE", + "sdg/ER_MTN_GRNCVI.LAND_COVER--SHR__BIOCLIMATIC_BELT--ALPINE", + "sdg/ER_MTN_GRNCVI.LAND_COVER--SNV__BIOCLIMATIC_BELT--ALPINE", + "sdg/ER_MTN_GRNCVI.LAND_COVER--TBL__BIOCLIMATIC_BELT--ALPINE", + "sdg/ER_MTN_GRNCVI.LAND_COVER--TRE__BIOCLIMATIC_BELT--ALPINE" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_MTN_GRNCVI.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Mountain Green Cover Index (Montane) by Type of land cover" + ], + "memberList": [ + "sdg/ER_MTN_GRNCVI.LAND_COVER--ART__BIOCLIMATIC_BELT--MONTANE", + "sdg/ER_MTN_GRNCVI.LAND_COVER--CRP__BIOCLIMATIC_BELT--MONTANE", + "sdg/ER_MTN_GRNCVI.LAND_COVER--GRS__BIOCLIMATIC_BELT--MONTANE", + "sdg/ER_MTN_GRNCVI.LAND_COVER--IWB__BIOCLIMATIC_BELT--MONTANE", + "sdg/ER_MTN_GRNCVI.LAND_COVER--PSG__BIOCLIMATIC_BELT--MONTANE", + "sdg/ER_MTN_GRNCVI.LAND_COVER--SAF__BIOCLIMATIC_BELT--MONTANE", + "sdg/ER_MTN_GRNCVI.LAND_COVER--SHR__BIOCLIMATIC_BELT--MONTANE", + "sdg/ER_MTN_GRNCVI.LAND_COVER--SNV__BIOCLIMATIC_BELT--MONTANE", + "sdg/ER_MTN_GRNCVI.LAND_COVER--TBL__BIOCLIMATIC_BELT--MONTANE", + "sdg/ER_MTN_GRNCVI.LAND_COVER--TRE__BIOCLIMATIC_BELT--MONTANE" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_MTN_GRNCVI.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Mountain Green Cover Index (Nival) by Type of land cover" + ], + "memberList": [ + "sdg/ER_MTN_GRNCVI.LAND_COVER--ART__BIOCLIMATIC_BELT--NIVAL", + "sdg/ER_MTN_GRNCVI.LAND_COVER--CRP__BIOCLIMATIC_BELT--NIVAL", + "sdg/ER_MTN_GRNCVI.LAND_COVER--GRS__BIOCLIMATIC_BELT--NIVAL", + "sdg/ER_MTN_GRNCVI.LAND_COVER--IWB__BIOCLIMATIC_BELT--NIVAL", + "sdg/ER_MTN_GRNCVI.LAND_COVER--PSG__BIOCLIMATIC_BELT--NIVAL", + "sdg/ER_MTN_GRNCVI.LAND_COVER--SAF__BIOCLIMATIC_BELT--NIVAL", + "sdg/ER_MTN_GRNCVI.LAND_COVER--SHR__BIOCLIMATIC_BELT--NIVAL", + "sdg/ER_MTN_GRNCVI.LAND_COVER--SNV__BIOCLIMATIC_BELT--NIVAL", + "sdg/ER_MTN_GRNCVI.LAND_COVER--TBL__BIOCLIMATIC_BELT--NIVAL", + "sdg/ER_MTN_GRNCVI.LAND_COVER--TRE__BIOCLIMATIC_BELT--NIVAL" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_MTN_GRNCVI.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Mountain Green Cover Index (Remaining mountain area) by Type of land cover" + ], + "memberList": [ + "sdg/ER_MTN_GRNCVI.LAND_COVER--ART__BIOCLIMATIC_BELT--REMAIN_MOUNT", + "sdg/ER_MTN_GRNCVI.LAND_COVER--CRP__BIOCLIMATIC_BELT--REMAIN_MOUNT", + "sdg/ER_MTN_GRNCVI.LAND_COVER--GRS__BIOCLIMATIC_BELT--REMAIN_MOUNT", + "sdg/ER_MTN_GRNCVI.LAND_COVER--IWB__BIOCLIMATIC_BELT--REMAIN_MOUNT", + "sdg/ER_MTN_GRNCVI.LAND_COVER--PSG__BIOCLIMATIC_BELT--REMAIN_MOUNT", + "sdg/ER_MTN_GRNCVI.LAND_COVER--SAF__BIOCLIMATIC_BELT--REMAIN_MOUNT", + "sdg/ER_MTN_GRNCVI.LAND_COVER--SHR__BIOCLIMATIC_BELT--REMAIN_MOUNT", + "sdg/ER_MTN_GRNCVI.LAND_COVER--SNV__BIOCLIMATIC_BELT--REMAIN_MOUNT", + "sdg/ER_MTN_GRNCVI.LAND_COVER--TBL__BIOCLIMATIC_BELT--REMAIN_MOUNT", + "sdg/ER_MTN_GRNCVI.LAND_COVER--TRE__BIOCLIMATIC_BELT--REMAIN_MOUNT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_MTN_GRNCVI.006" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Mountain Green Cover Index by Type of land cover" + ], + "memberList": [ + "sdg/ER_MTN_GRNCVI.LAND_COVER--ART", + "sdg/ER_MTN_GRNCVI.LAND_COVER--CRP", + "sdg/ER_MTN_GRNCVI.LAND_COVER--GRS", + "sdg/ER_MTN_GRNCVI.LAND_COVER--IWB", + "sdg/ER_MTN_GRNCVI.LAND_COVER--MGCI", + "sdg/ER_MTN_GRNCVI.LAND_COVER--PSG", + "sdg/ER_MTN_GRNCVI.LAND_COVER--SAF", + "sdg/ER_MTN_GRNCVI.LAND_COVER--SHR", + "sdg/ER_MTN_GRNCVI.LAND_COVER--SNV", + "sdg/ER_MTN_GRNCVI.LAND_COVER--TBL", + "sdg/ER_MTN_GRNCVI.LAND_COVER--TRE" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_MTN_TOTL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Mountain area" + ], + "memberList": [ + "sdg/ER_MTN_TOTL" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_MTN_TOTL.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Mountain area by Bioclimatic belt" + ], + "memberList": [ + "sdg/ER_MTN_TOTL.BIOCLIMATIC_BELT--ALPINE", + "sdg/ER_MTN_TOTL.BIOCLIMATIC_BELT--MONTANE", + "sdg/ER_MTN_TOTL.BIOCLIMATIC_BELT--NIVAL", + "sdg/ER_MTN_TOTL.BIOCLIMATIC_BELT--REMAIN_MOUNT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_NOEX_LBREDN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of local breeds (not extinct)" + ], + "memberList": [ + "sdg/ER_NOEX_LBREDN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_PTD_FRHWTR.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Average proportion of Freshwater Key Biodiversity Areas (KBAs) covered by protected areas" + ], + "memberList": [ + "sdg/ER_PTD_FRHWTR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_PTD_MTN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Average proportion of Mountain Key Biodiversity Areas (KBAs) covered by protected areas" + ], + "memberList": [ + "sdg/ER_PTD_MTN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_PTD_TERR.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Average proportion of Terrestrial Key Biodiversity Areas (KBAs) covered by protected areas" + ], + "memberList": [ + "sdg/ER_PTD_TERR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_RDE_OSEX.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "National ocean science expenditure as a share of total research and development funding" + ], + "memberList": [ + "sdg/ER_RDE_OSEX" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_REG_SSFRAR.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Degree of application of a legal/regulatory/policy/institutional framework which recognizes and protects access rights for small-scale fisheries" + ], + "memberList": [ + "sdg/ER_REG_SSFRAR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_REG_UNFCIM.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Degree of implementation of international instruments aiming to combat illegal", + "unreported and unregulated fishing" + ], + "memberList": [ + "sdg/ER_REG_UNFCIM" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_RSK_LBREDS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of local breeds classified as being at risk of extinction as a share of local breeds with known level of extinction risk" + ], + "memberList": [ + "sdg/ER_RSK_LBREDS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_RSK_LST.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Red List Index" + ], + "memberList": [ + "sdg/ER_RSK_LST" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_UNCLOS_IMPLE.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Score for the implementation of UNCLOS and its two implementing agreements" + ], + "memberList": [ + "sdg/ER_UNCLOS_IMPLE" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_UNCLOS_RATACC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Score for the ratification of and accession to UNCLOS and its two implementing agreements" + ], + "memberList": [ + "sdg/ER_UNCLOS_RATACC" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_UNK_LBREDN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of local breeds with unknown risk status" + ], + "memberList": [ + "sdg/ER_UNK_LBREDN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_WAT_PART.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries with users/communities participating in planning programs in water resources planning and management" + ], + "memberList": [ + "sdg/ER_WAT_PART" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_WAT_PARTIC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of countries with high level of users/communities participating in planning programs in water resources planning and management" + ], + "memberList": [ + "sdg/ER_WAT_PARTIC" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_WAT_PRDU.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries with procedures in law or policy for participation by service users/communities in planning program in water resources planning and management" + ], + "memberList": [ + "sdg/ER_WAT_PRDU" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_WAT_PROCED.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of countries with clearly defined procedures in law or policy for participation by service users/communities in planning program in water resources planning and management" + ], + "memberList": [ + "sdg/ER_WAT_PROCED" + ] + }, + { + "dcid": [ + "dc/svpg/SDGER_WLD_TRPOACH.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of traded wildlife that was poached or illicitly trafficked by Plants", + "animals and derived products" + ], + "memberList": [ + "sdg/ER_WLD_TRPOACH.PRODUCT--CITES_ANIMALS", + "sdg/ER_WLD_TRPOACH.PRODUCT--CITES_PLANTS", + "sdg/ER_WLD_TRPOACH.PRODUCT--CITES_T" + ] + }, + { + "dcid": [ + "dc/svpg/SDGFB_ATM_TOTL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of automated teller machines (ATMs) per 100", + "000 adults (15 years old and over)" + ], + "memberList": [ + "sdg/FB_ATM_TOTL.AGE--Y_GE15" + ] + }, + { + "dcid": [ + "dc/svpg/SDGFB_BNK_ACCSS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of adults (15 years and older) with an account at a financial institution or mobile-money-service provider by Age group" + ], + "memberList": [ + "sdg/FB_BNK_ACCSS.AGE--Y15T24", + "sdg/FB_BNK_ACCSS.AGE--Y_GE15", + "sdg/FB_BNK_ACCSS.AGE--Y_GE25" + ] + }, + { + "dcid": [ + "dc/svpg/SDGFB_BNK_ACCSS.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of adults (15 years and older) with an account at a financial institution or mobile-money-service provider by Education level" + ], + "memberList": [ + "sdg/FB_BNK_ACCSS.AGE--Y_GE15__EDUCATION_LEVEL--AGG_0_1", + "sdg/FB_BNK_ACCSS.AGE--Y_GE15__EDUCATION_LEVEL--AGG_GE2" + ] + }, + { + "dcid": [ + "dc/svpg/SDGFB_BNK_ACCSS.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of adults (15 years and older) with an account at a financial institution or mobile-money-service provider by Sex" + ], + "memberList": [ + "sdg/FB_BNK_ACCSS.AGE--Y_GE15__SEX--F", + "sdg/FB_BNK_ACCSS.AGE--Y_GE15__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGFB_BNK_ACCSS.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of adults (15 years and older) with an account at a financial institution or mobile-money-service provider by Type of location" + ], + "memberList": [ + "sdg/FB_BNK_ACCSS.AGE--Y_GE15__URBANIZATION--R", + "sdg/FB_BNK_ACCSS.AGE--Y_GE15__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGFB_BNK_ACCSS.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of adults (15 years and older) with an account at a financial institution or mobile-money-service provider by Quantile" + ], + "memberList": [ + "sdg/FB_BNK_ACCSS.AGE--Y_GE15__WEALTH_QUANTILE--BOTTOM40", + "sdg/FB_BNK_ACCSS.AGE--Y_GE15__WEALTH_QUANTILE--TOP60" + ] + }, + { + "dcid": [ + "dc/svpg/SDGFB_BNK_ACCSS_ILF.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of adults (15 years and older) active in labor force with an account at a financial institution or mobile-money-service provider by Age group" + ], + "memberList": [ + "sdg/FB_BNK_ACCSS_ILF.AGE--Y_GE15" + ] + }, + { + "dcid": [ + "dc/svpg/SDGFB_BNK_ACCSS_OLF.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of adults (15 years and older) out of labor force with an account at a financial institution or mobile-money-service provider" + ], + "memberList": [ + "sdg/FB_BNK_ACCSS_OLF.AGE--Y_GE15" + ] + }, + { + "dcid": [ + "dc/svpg/SDGFB_BNK_CAPA_ZS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Bank capital to assets ratio" + ], + "memberList": [ + "sdg/FB_BNK_CAPA_ZS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGFB_CBK_BRCH.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of commercial bank branches per 100", + "000 adults (15 years old and over)" + ], + "memberList": [ + "sdg/FB_CBK_BRCH.AGE--Y_GE15" + ] + }, + { + "dcid": [ + "dc/svpg/SDGFC_ACC_SSID.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of small-scale manufacturing industries with a loan or line of credit" + ], + "memberList": [ + "sdg/FC_ACC_SSID.ECONOMIC_ACTIVITY--ISIC4_C" + ] + }, + { + "dcid": [ + "dc/svpg/SDGFI_FSI_FSANL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Non-performing loans to total gross loans" + ], + "memberList": [ + "sdg/FI_FSI_FSANL" + ] + }, + { + "dcid": [ + "dc/svpg/SDGFI_FSI_FSERA.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Rate of return on assets" + ], + "memberList": [ + "sdg/FI_FSI_FSERA" + ] + }, + { + "dcid": [ + "dc/svpg/SDGFI_FSI_FSKA.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Ratio of regulatory capital to assets" + ], + "memberList": [ + "sdg/FI_FSI_FSKA" + ] + }, + { + "dcid": [ + "dc/svpg/SDGFI_FSI_FSKNL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Ratio of non-performing loans (net of provisions) to capital" + ], + "memberList": [ + "sdg/FI_FSI_FSKNL" + ] + }, + { + "dcid": [ + "dc/svpg/SDGFI_FSI_FSKRTC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Ratio of regulatory tier-1 capital to risk-weighted assets" + ], + "memberList": [ + "sdg/FI_FSI_FSKRTC" + ] + }, + { + "dcid": [ + "dc/svpg/SDGFI_FSI_FSLS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Ratio of liquid assets to short term liabilities" + ], + "memberList": [ + "sdg/FI_FSI_FSLS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGFI_FSI_FSSNO.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Ratio of net open position in foreign exchange to capital" + ], + "memberList": [ + "sdg/FI_FSI_FSSNO" + ] + }, + { + "dcid": [ + "dc/svpg/SDGFI_RES_TOTL_MO.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total\u00a0reserves\u00a0in\u00a0months\u00a0of\u00a0imports" + ], + "memberList": [ + "sdg/FI_RES_TOTL_MO" + ] + }, + { + "dcid": [ + "dc/svpg/SDGFM_LBL_BMNY_IR_ZS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Ratio of broad money to total reserves" + ], + "memberList": [ + "sdg/FM_LBL_BMNY_IR_ZS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGFM_LBL_BMNY_ZG.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Annual growth of broad money" + ], + "memberList": [ + "sdg/FM_LBL_BMNY_ZG" + ] + }, + { + "dcid": [ + "dc/svpg/SDGFP_CPI_TOTL_ZG.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Annual inflation (consumer prices)" + ], + "memberList": [ + "sdg/FP_CPI_TOTL_ZG" + ] + }, + { + "dcid": [ + "dc/svpg/SDGGB_POP_SCIERD.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of full-time-equivalent researchers per million inhabitants" + ], + "memberList": [ + "sdg/GB_POP_SCIERD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGGB_XPD_CULNAT_PB.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total public expenditure per capita on cultural and natural heritage at purchansing-power parity rates" + ], + "memberList": [ + "sdg/GB_XPD_CULNAT_PB" + ] + }, + { + "dcid": [ + "dc/svpg/SDGGB_XPD_CULNAT_PB.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total public expenditure per capita on cultural and natural heritage at purchansing-power parity rates by Government level" + ], + "memberList": [ + "sdg/GB_XPD_CULNAT_PB.GOVERNMENT_LEVEL--LOCAL", + "sdg/GB_XPD_CULNAT_PB.GOVERNMENT_LEVEL--NAT", + "sdg/GB_XPD_CULNAT_PB.GOVERNMENT_LEVEL--REG" + ] + }, + { + "dcid": [ + "dc/svpg/SDGGB_XPD_CULNAT_PBPV.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total public and private expenditure per capita on cultural and natural heritage at purchasing-power parity rates" + ], + "memberList": [ + "sdg/GB_XPD_CULNAT_PBPV" + ] + }, + { + "dcid": [ + "dc/svpg/SDGGB_XPD_CULNAT_PV.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total private expenditure per capita spent on cultural and natural heritage at purchasing-power parity rates" + ], + "memberList": [ + "sdg/GB_XPD_CULNAT_PV" + ] + }, + { + "dcid": [ + "dc/svpg/SDGGB_XPD_CUL_PBPV.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total public and private expenditure per capita on cultural heritage at purchasing-power parity rates" + ], + "memberList": [ + "sdg/GB_XPD_CUL_PBPV" + ] + }, + { + "dcid": [ + "dc/svpg/SDGGB_XPD_NAT_PBPV.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total public and private expenditure per capita on natural heritage at purchasing-power parity rates" + ], + "memberList": [ + "sdg/GB_XPD_NAT_PBPV" + ] + }, + { + "dcid": [ + "dc/svpg/SDGGB_XPD_RSDV.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Research and development expenditure as a proportion of GDP" + ], + "memberList": [ + "sdg/GB_XPD_RSDV" + ] + }, + { + "dcid": [ + "dc/svpg/SDGGC_BAL_CASH_GD_ZS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Cash surplus/deficit as a proportion of GDP" + ], + "memberList": [ + "sdg/GC_BAL_CASH_GD_ZS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGGC_GOB_TAXD.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of domestic budget funded by domestic taxes" + ], + "memberList": [ + "sdg/GC_GOB_TAXD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGGC_TAX_TOTL_GD_ZS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Tax revenue as a proportion of GDP" + ], + "memberList": [ + "sdg/GC_TAX_TOTL_GD_ZS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGGF_COM_PPPI.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Monetary amount committed to public-private partnerships for infrastructure in nominal terms" + ], + "memberList": [ + "sdg/GF_COM_PPPI" + ] + }, + { + "dcid": [ + "dc/svpg/SDGGF_COM_PPPI_KD.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Monetary amount committed to public-private partnerships for infrastructure in real terms" + ], + "memberList": [ + "sdg/GF_COM_PPPI_KD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGGF_FRN_FDI.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Foreign direct investment (FDI) inflows" + ], + "memberList": [ + "sdg/GF_FRN_FDI" + ] + }, + { + "dcid": [ + "dc/svpg/SDGGF_XPD_GBPC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Primary government expenditures as a proportion of original approved budget" + ], + "memberList": [ + "sdg/GF_XPD_GBPC" + ] + }, + { + "dcid": [ + "dc/svpg/SDGGR_G14_GDP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total bugetary revenue of the central government as a proportion of GDP" + ], + "memberList": [ + "sdg/GR_G14_GDP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGGR_G14_XDC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total government revenue", + "in local currency" + ], + "memberList": [ + "sdg/GR_G14_XDC" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIC_FRM_BRIB.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Incidence of bribery (proportion of firms experiencing at least one bribe payment request)" + ], + "memberList": [ + "sdg/IC_FRM_BRIB" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIC_GEN_MGTL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of women in managerial positions - previous definition (15 years old and over)" + ], + "memberList": [ + "sdg/IC_GEN_MGTL.AGE--Y_GE15__SEX--F" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIC_GEN_MGTL_19ICLS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of women in managerial positions - current definition (15 years old and over)" + ], + "memberList": [ + "sdg/IC_GEN_MGTL_19ICLS.AGE--Y_GE15__SEX--F" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIC_GEN_MGTN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of women in senior and middle management positions - previous definition (15 years old and over)" + ], + "memberList": [ + "sdg/IC_GEN_MGTN.AGE--Y_GE15__SEX--F" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIC_GEN_MGTN_19ICLS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of women in senior and middle management positions - current definition (15 years old and over)" + ], + "memberList": [ + "sdg/IC_GEN_MGTN_19ICLS.AGE--Y_GE15__SEX--F" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIQ_SPI_PIL4.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Performance index of data sources (Pillar 4 of Statistical Performance Indicators)" + ], + "memberList": [ + "sdg/IQ_SPI_PIL4" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIQ_SPI_PIL5.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Performance index of data Infrastructure (Pillar 5 of Statistical Performance Indicators)" + ], + "memberList": [ + "sdg/IQ_SPI_PIL5" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIS_RDP_FRGVOL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Freight volume by Mode of transport" + ], + "memberList": [ + "sdg/IS_RDP_FRGVOL.TRANSPORT_MODE--AIR", + "sdg/IS_RDP_FRGVOL.TRANSPORT_MODE--IWW", + "sdg/IS_RDP_FRGVOL.TRANSPORT_MODE--RAI", + "sdg/IS_RDP_FRGVOL.TRANSPORT_MODE--ROA" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIS_RDP_LULFRG.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Freight loaded and unloaded", + "maritime transport" + ], + "memberList": [ + "sdg/IS_RDP_LULFRG.TRANSPORT_MODE--SEA" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIS_RDP_PFVOL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Passenger volume by Mode of transport" + ], + "memberList": [ + "sdg/IS_RDP_PFVOL.TRANSPORT_MODE--AIR", + "sdg/IS_RDP_PFVOL.TRANSPORT_MODE--RAI", + "sdg/IS_RDP_PFVOL.TRANSPORT_MODE--ROA" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIS_RDP_PORFVOL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Container port traffic", + "maritime transport" + ], + "memberList": [ + "sdg/IS_RDP_PORFVOL.TRANSPORT_MODE--SEA" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIT_MOB_2GNTWK.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population covered by at least a 2G mobile network" + ], + "memberList": [ + "sdg/IT_MOB_2GNTWK" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIT_MOB_3GNTWK.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population covered by at least a 3G mobile network" + ], + "memberList": [ + "sdg/IT_MOB_3GNTWK" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIT_MOB_4GNTWK.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population covered by at least a 4G mobile network" + ], + "memberList": [ + "sdg/IT_MOB_4GNTWK" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIT_MOB_OWN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of individuals who own a mobile telephone" + ], + "memberList": [ + "sdg/IT_MOB_OWN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIT_MOB_OWN.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of individuals who own a mobile telephone by Sex" + ], + "memberList": [ + "sdg/IT_MOB_OWN.SEX--F", + "sdg/IT_MOB_OWN.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIT_NET_BBND.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Fixed broadband subscriptions per 100\u00a0inhabitants" + ], + "memberList": [ + "sdg/IT_NET_BBND" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIT_NET_BBND.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Fixed broadband subscriptions per 100\u00a0inhabitants by Internet speed" + ], + "memberList": [ + "sdg/IT_NET_BBND.INTERNET_SPEED--KBPS256T2000", + "sdg/IT_NET_BBND.INTERNET_SPEED--MBPS2T10", + "sdg/IT_NET_BBND.INTERNET_SPEED--MBPS_GE10" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIT_NET_BBNDN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of fixed broadband subscriptions" + ], + "memberList": [ + "sdg/IT_NET_BBNDN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIT_NET_BBNDN.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of fixed broadband subscriptions by Internet speed" + ], + "memberList": [ + "sdg/IT_NET_BBNDN.INTERNET_SPEED--KBPS256T2000", + "sdg/IT_NET_BBNDN.INTERNET_SPEED--MBPS2T10", + "sdg/IT_NET_BBNDN.INTERNET_SPEED--MBPS_GE10" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIT_USE_ii99.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of individuals using the Internet" + ], + "memberList": [ + "sdg/IT_USE_ii99" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIT_USE_ii99.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of individuals using the Internet by Sex" + ], + "memberList": [ + "sdg/IT_USE_ii99.SEX--F", + "sdg/IT_USE_ii99.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIU_COR_BRIB.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Prevalence rate of bribery" + ], + "memberList": [ + "sdg/IU_COR_BRIB" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIU_COR_BRIB.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Prevalence rate of bribery by Sex" + ], + "memberList": [ + "sdg/IU_COR_BRIB.SEX--F", + "sdg/IU_COR_BRIB.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIU_DMK_ICRS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who believe decision-making is inclusive and responsive" + ], + "memberList": [ + "sdg/IU_DMK_ICRS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIU_DMK_ICRS.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who believe decision-making is inclusive and responsive by Age group" + ], + "memberList": [ + "sdg/IU_DMK_ICRS.AGE--Y0T24", + "sdg/IU_DMK_ICRS.AGE--Y25T34", + "sdg/IU_DMK_ICRS.AGE--Y35T44", + "sdg/IU_DMK_ICRS.AGE--Y45T54", + "sdg/IU_DMK_ICRS.AGE--Y55T64", + "sdg/IU_DMK_ICRS.AGE--Y_GE65" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIU_DMK_ICRS.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who believe decision-making is inclusive and responsive by Disability status" + ], + "memberList": [ + "sdg/IU_DMK_ICRS.DISABILITY_STATUS--PD", + "sdg/IU_DMK_ICRS.DISABILITY_STATUS--PWD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIU_DMK_ICRS.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who believe decision-making is inclusive and responsive by Education level" + ], + "memberList": [ + "sdg/IU_DMK_ICRS.EDUCATION_LEVEL--AGG_2T3", + "sdg/IU_DMK_ICRS.EDUCATION_LEVEL--AGG_5T8" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIU_DMK_ICRS.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who believe decision-making is inclusive and responsive by Education level" + ], + "memberList": [ + "sdg/IU_DMK_ICRS.EDUCATION_LEVEL--ISCED11_1" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIU_DMK_ICRS.006" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who believe decision-making is inclusive and responsive by Population group" + ], + "memberList": [ + "sdg/IU_DMK_ICRS.POPULATION_GROUP--COL_1", + "sdg/IU_DMK_ICRS.POPULATION_GROUP--COL_2", + "sdg/IU_DMK_ICRS.POPULATION_GROUP--INDIGENOUS_POPULATIONS", + "sdg/IU_DMK_ICRS.POPULATION_GROUP--LVA_0", + "sdg/IU_DMK_ICRS.POPULATION_GROUP--LVA_1", + "sdg/IU_DMK_ICRS.POPULATION_GROUP--LVA_2" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIU_DMK_ICRS.007" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who believe decision-making is inclusive and responsive by Sex" + ], + "memberList": [ + "sdg/IU_DMK_ICRS.SEX--F", + "sdg/IU_DMK_ICRS.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIU_DMK_ICRS.008" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who believe decision-making is inclusive and responsive by Type of location" + ], + "memberList": [ + "sdg/IU_DMK_ICRS.URBANIZATION--R", + "sdg/IU_DMK_ICRS.URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIU_DMK_INCL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who believe decision-making is inclusive" + ], + "memberList": [ + "sdg/IU_DMK_INCL" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIU_DMK_INCL.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who believe decision-making is inclusive by Age group" + ], + "memberList": [ + "sdg/IU_DMK_INCL.AGE--Y0T24", + "sdg/IU_DMK_INCL.AGE--Y25T34", + "sdg/IU_DMK_INCL.AGE--Y35T44", + "sdg/IU_DMK_INCL.AGE--Y45T54", + "sdg/IU_DMK_INCL.AGE--Y55T64", + "sdg/IU_DMK_INCL.AGE--Y_GE65" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIU_DMK_INCL.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who believe decision-making is inclusive by Disability status" + ], + "memberList": [ + "sdg/IU_DMK_INCL.DISABILITY_STATUS--PD", + "sdg/IU_DMK_INCL.DISABILITY_STATUS--PWD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIU_DMK_INCL.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who believe decision-making is inclusive by Education level" + ], + "memberList": [ + "sdg/IU_DMK_INCL.EDUCATION_LEVEL--AGG_2T3", + "sdg/IU_DMK_INCL.EDUCATION_LEVEL--AGG_5T8" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIU_DMK_INCL.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who believe decision-making is inclusive by Education level" + ], + "memberList": [ + "sdg/IU_DMK_INCL.EDUCATION_LEVEL--ISCED11_1" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIU_DMK_INCL.006" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who believe decision-making is inclusive by Population group" + ], + "memberList": [ + "sdg/IU_DMK_INCL.POPULATION_GROUP--COL_1", + "sdg/IU_DMK_INCL.POPULATION_GROUP--COL_2", + "sdg/IU_DMK_INCL.POPULATION_GROUP--INDIGENOUS_POPULATIONS", + "sdg/IU_DMK_INCL.POPULATION_GROUP--LVA_0", + "sdg/IU_DMK_INCL.POPULATION_GROUP--LVA_1", + "sdg/IU_DMK_INCL.POPULATION_GROUP--LVA_2" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIU_DMK_INCL.007" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who believe decision-making is inclusive by Sex" + ], + "memberList": [ + "sdg/IU_DMK_INCL.SEX--F", + "sdg/IU_DMK_INCL.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIU_DMK_INCL.008" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who believe decision-making is inclusive by Type of location" + ], + "memberList": [ + "sdg/IU_DMK_INCL.URBANIZATION--R", + "sdg/IU_DMK_INCL.URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIU_DMK_RESP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who believe decision-making is responsive" + ], + "memberList": [ + "sdg/IU_DMK_RESP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIU_DMK_RESP.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who believe decision-making is responsive by Age group" + ], + "memberList": [ + "sdg/IU_DMK_RESP.AGE--Y0T24", + "sdg/IU_DMK_RESP.AGE--Y25T34", + "sdg/IU_DMK_RESP.AGE--Y35T44", + "sdg/IU_DMK_RESP.AGE--Y45T54", + "sdg/IU_DMK_RESP.AGE--Y55T64", + "sdg/IU_DMK_RESP.AGE--Y_GE65" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIU_DMK_RESP.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who believe decision-making is responsive by Disability status" + ], + "memberList": [ + "sdg/IU_DMK_RESP.DISABILITY_STATUS--PD", + "sdg/IU_DMK_RESP.DISABILITY_STATUS--PWD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIU_DMK_RESP.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who believe decision-making is responsive by Education level" + ], + "memberList": [ + "sdg/IU_DMK_RESP.EDUCATION_LEVEL--AGG_2T3", + "sdg/IU_DMK_RESP.EDUCATION_LEVEL--AGG_5T8" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIU_DMK_RESP.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who believe decision-making is responsive by Education level" + ], + "memberList": [ + "sdg/IU_DMK_RESP.EDUCATION_LEVEL--ISCED11_1", + "sdg/IU_DMK_RESP.EDUCATION_LEVEL--ISCED11_3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIU_DMK_RESP.006" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who believe decision-making is responsive by Population group" + ], + "memberList": [ + "sdg/IU_DMK_RESP.POPULATION_GROUP--COL_1", + "sdg/IU_DMK_RESP.POPULATION_GROUP--COL_2", + "sdg/IU_DMK_RESP.POPULATION_GROUP--INDIGENOUS_POPULATIONS", + "sdg/IU_DMK_RESP.POPULATION_GROUP--LVA_0", + "sdg/IU_DMK_RESP.POPULATION_GROUP--LVA_1", + "sdg/IU_DMK_RESP.POPULATION_GROUP--LVA_2", + "sdg/IU_DMK_RESP.POPULATION_GROUP--NZL_0", + "sdg/IU_DMK_RESP.POPULATION_GROUP--NZL_2", + "sdg/IU_DMK_RESP.POPULATION_GROUP--NZL_5" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIU_DMK_RESP.007" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who believe decision-making is responsive by Sex" + ], + "memberList": [ + "sdg/IU_DMK_RESP.SEX--F", + "sdg/IU_DMK_RESP.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIU_DMK_RESP.008" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who believe decision-making is responsive by Type of location" + ], + "memberList": [ + "sdg/IU_DMK_RESP.URBANIZATION--R", + "sdg/IU_DMK_RESP.URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGIU_DMK_RESP.009" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who believe decision-making is responsive (Rural population with primary education)" + ], + "memberList": [ + "sdg/IU_DMK_RESP.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1" + ] + }, + { + "dcid": [ + "dc/svpg/SDGNE_CON_GOVT_KD_ZG.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Annual growth of final consumption expenditure of the general government" + ], + "memberList": [ + "sdg/NE_CON_GOVT_KD_ZG" + ] + }, + { + "dcid": [ + "dc/svpg/SDGNE_CON_PRVT_KD_ZG.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Annual growth of final consumption expenditure of households and non-profit institutions serving households (NPISHs)" + ], + "memberList": [ + "sdg/NE_CON_PRVT_KD_ZG" + ] + }, + { + "dcid": [ + "dc/svpg/SDGNE_EXP_GNFS_KD_ZG.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Annual growth of exports of goods and services" + ], + "memberList": [ + "sdg/NE_EXP_GNFS_KD_ZG" + ] + }, + { + "dcid": [ + "dc/svpg/SDGNE_GDI_TOTL_KD_ZG.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Annual growth of the gross capital formation" + ], + "memberList": [ + "sdg/NE_GDI_TOTL_KD_ZG" + ] + }, + { + "dcid": [ + "dc/svpg/SDGNE_IMP_GNFS_KD_ZG.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Annual growth of imports of goods and services" + ], + "memberList": [ + "sdg/NE_IMP_GNFS_KD_ZG" + ] + }, + { + "dcid": [ + "dc/svpg/SDGNV_IND_SSIS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of small-scale manufacturing industries in total manufacturing value added" + ], + "memberList": [ + "sdg/NV_IND_SSIS.ECONOMIC_ACTIVITY--ISIC3_D", + "sdg/NV_IND_SSIS.ECONOMIC_ACTIVITY--ISIC4_C" + ] + }, + { + "dcid": [ + "dc/svpg/SDGNV_IND_TECH.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of medium and high-tech manufacturing value added in total value added" + ], + "memberList": [ + "sdg/NV_IND_TECH.ECONOMIC_ACTIVITY--ISIC3_D", + "sdg/NV_IND_TECH.ECONOMIC_ACTIVITY--ISIC4_C" + ] + }, + { + "dcid": [ + "dc/svpg/SDGNY_GDP_MKTP_KD_ZG.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Annual GDP growth" + ], + "memberList": [ + "sdg/NY_GDP_MKTP_KD_ZG" + ] + }, + { + "dcid": [ + "dc/svpg/SDGNY_GDP_PCAP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Annual growth rate of real GDP per capita" + ], + "memberList": [ + "sdg/NY_GDP_PCAP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGPA_NUS_ATLS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Alternative conversion factor used by the Development Economics Group (DEC)" + ], + "memberList": [ + "sdg/PA_NUS_ATLS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGPD_AGR_LSFP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Productivity of large-scale food producers (agricultural output per labour day at purchasing-power parity rates)" + ], + "memberList": [ + "sdg/PD_AGR_LSFP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGPD_AGR_LSFP.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Productivity of large-scale food producers (agricultural output per labour day at purchasing-power parity rates) by Sex" + ], + "memberList": [ + "sdg/PD_AGR_LSFP.SEX--F", + "sdg/PD_AGR_LSFP.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGPD_AGR_SSFP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Productivity of small-scale food producers (agricultural output per labour day at purchasing-power parity rates)" + ], + "memberList": [ + "sdg/PD_AGR_SSFP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGPD_AGR_SSFP.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Productivity of small-scale food producers (agricultural output per labour day at purchasing-power parity rates) by Sex" + ], + "memberList": [ + "sdg/PD_AGR_SSFP.SEX--F", + "sdg/PD_AGR_SSFP.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSD_CPA_UPRDP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries that have national urban policies or regional development plans that respond to population dynamics", + "ensure balanced territorial development", + "and increase local fiscal space" + ], + "memberList": [ + "sdg/SD_CPA_UPRDP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSD_MDP_ANDI.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Average proportion of deprivations experienced by multidimensionally poor people" + ], + "memberList": [ + "sdg/SD_MDP_ANDI" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSD_MDP_ANDI.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Average proportion of deprivations experienced by multidimensionally poor people by Type of location" + ], + "memberList": [ + "sdg/SD_MDP_ANDI.URBANIZATION--R", + "sdg/SD_MDP_ANDI.URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSD_MDP_ANDIHH.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Average share of weighted deprivations experienced by total households (intensity)" + ], + "memberList": [ + "sdg/SD_MDP_ANDIHH" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSD_MDP_ANDIHH.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Average share of weighted deprivations experienced by total households (intensity) by Type of location" + ], + "memberList": [ + "sdg/SD_MDP_ANDIHH.URBANIZATION--R", + "sdg/SD_MDP_ANDIHH.URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSD_MDP_CSMP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of children living in child-specific multidimensional poverty (under 18 years old)" + ], + "memberList": [ + "sdg/SD_MDP_CSMP.AGE--Y0T17" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSD_MDP_CSMP.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of children living in child-specific multidimensional poverty (under 18 years old) by Type of location" + ], + "memberList": [ + "sdg/SD_MDP_CSMP.AGE--Y0T17__URBANIZATION--R", + "sdg/SD_MDP_CSMP.AGE--Y0T17__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSD_MDP_MUHHC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of households living in multidimensional poverty" + ], + "memberList": [ + "sdg/SD_MDP_MUHHC" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSD_MDP_MUHHC.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of households living in multidimensional poverty by Type of location" + ], + "memberList": [ + "sdg/SD_MDP_MUHHC.URBANIZATION--R", + "sdg/SD_MDP_MUHHC.URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSD_XPD_ESED.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of total government spending on essential services", + "education" + ], + "memberList": [ + "sdg/SD_XPD_ESED" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSD_XPD_MNPO.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of government spending in health", + "direct social transfers and education which benefit the monetary poor" + ], + "memberList": [ + "sdg/SD_XPD_MNPO" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ACC_HNDWSH.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of schools with basic handwashing facilities by Education level" + ], + "memberList": [ + "sdg/SE_ACC_HNDWSH.EDUCATION_LEVEL--ISCED11_1", + "sdg/SE_ACC_HNDWSH.EDUCATION_LEVEL--ISCED11_2", + "sdg/SE_ACC_HNDWSH.EDUCATION_LEVEL--ISCED11_3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ACS_CMPTR.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of schools with access to\u00a0computers for pedagogical purposes by Education level" + ], + "memberList": [ + "sdg/SE_ACS_CMPTR.EDUCATION_LEVEL--AGG_2T3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ACS_CMPTR.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of schools with access to\u00a0computers for pedagogical purposes by Education level" + ], + "memberList": [ + "sdg/SE_ACS_CMPTR.EDUCATION_LEVEL--ISCED11_1", + "sdg/SE_ACS_CMPTR.EDUCATION_LEVEL--ISCED11_2", + "sdg/SE_ACS_CMPTR.EDUCATION_LEVEL--ISCED11_3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ACS_ELECT.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of schools with access to\u00a0electricity by Education level" + ], + "memberList": [ + "sdg/SE_ACS_ELECT.EDUCATION_LEVEL--ISCED11_1", + "sdg/SE_ACS_ELECT.EDUCATION_LEVEL--ISCED11_2", + "sdg/SE_ACS_ELECT.EDUCATION_LEVEL--ISCED11_3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ACS_H2O.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of schools with access to basic drinking water by Education level" + ], + "memberList": [ + "sdg/SE_ACS_H2O.EDUCATION_LEVEL--ISCED11_1", + "sdg/SE_ACS_H2O.EDUCATION_LEVEL--ISCED11_2", + "sdg/SE_ACS_H2O.EDUCATION_LEVEL--ISCED11_3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ACS_INTNT.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of schools with access to the internet for pedagogical purposes by Education level" + ], + "memberList": [ + "sdg/SE_ACS_INTNT.EDUCATION_LEVEL--AGG_2T3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ACS_INTNT.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of schools with access to the internet for pedagogical purposes by Education level" + ], + "memberList": [ + "sdg/SE_ACS_INTNT.EDUCATION_LEVEL--ISCED11_1", + "sdg/SE_ACS_INTNT.EDUCATION_LEVEL--ISCED11_2", + "sdg/SE_ACS_INTNT.EDUCATION_LEVEL--ISCED11_3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ACS_SANIT.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of schools with access to single-sex basic sanitation by Education level" + ], + "memberList": [ + "sdg/SE_ACS_SANIT.EDUCATION_LEVEL--ISCED11_1", + "sdg/SE_ACS_SANIT.EDUCATION_LEVEL--ISCED11_2", + "sdg/SE_ACS_SANIT.EDUCATION_LEVEL--ISCED11_3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old) by Type of skill" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y15T24__SKILL--DLDONLD", + "sdg/SE_ADT_ACTS.AGE--Y15T24__SKILL--FONLCRS", + "sdg/SE_ADT_ACTS.AGE--Y15T24__SKILL--GSINF", + "sdg/SE_ADT_ACTS.AGE--Y15T24__SKILL--GSPUR", + "sdg/SE_ADT_ACTS.AGE--Y15T24__SKILL--HLTHINF", + "sdg/SE_ADT_ACTS.AGE--Y15T24__SKILL--INTBNK", + "sdg/SE_ADT_ACTS.AGE--Y15T24__SKILL--ONLCNS", + "sdg/SE_ADT_ACTS.AGE--Y15T24__SKILL--ONLSFT", + "sdg/SE_ADT_ACTS.AGE--Y15T24__SKILL--SNTWK", + "sdg/SE_ADT_ACTS.AGE--Y15T24__SKILL--UPLD", + "sdg/SE_ADT_ACTS.AGE--Y15T24__SKILL--VOIP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old) by Type of skill" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y25T74__SKILL--DLDONLD", + "sdg/SE_ADT_ACTS.AGE--Y25T74__SKILL--FONLCRS", + "sdg/SE_ADT_ACTS.AGE--Y25T74__SKILL--GSINF", + "sdg/SE_ADT_ACTS.AGE--Y25T74__SKILL--GSPUR", + "sdg/SE_ADT_ACTS.AGE--Y25T74__SKILL--HLTHINF", + "sdg/SE_ADT_ACTS.AGE--Y25T74__SKILL--INTBNK", + "sdg/SE_ADT_ACTS.AGE--Y25T74__SKILL--ONLCNS", + "sdg/SE_ADT_ACTS.AGE--Y25T74__SKILL--ONLSFT", + "sdg/SE_ADT_ACTS.AGE--Y25T74__SKILL--SNTWK", + "sdg/SE_ADT_ACTS.AGE--Y25T74__SKILL--UPLD", + "sdg/SE_ADT_ACTS.AGE--Y25T74__SKILL--VOIP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over) by Type of skill" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SKILL--DLDONLD", + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SKILL--FONLCRS", + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SKILL--GSINF", + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SKILL--GSPUR", + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SKILL--HLTHINF", + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SKILL--INTBNK", + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SKILL--ONLCNS", + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SKILL--ONLSFT", + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SKILL--SNTWK", + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SKILL--UPLD", + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SKILL--VOIP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old) by Type of skill" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y0T14__SKILL--DLDONLD", + "sdg/SE_ADT_ACTS.AGE--Y0T14__SKILL--FONLCRS", + "sdg/SE_ADT_ACTS.AGE--Y0T14__SKILL--GSINF", + "sdg/SE_ADT_ACTS.AGE--Y0T14__SKILL--GSPUR", + "sdg/SE_ADT_ACTS.AGE--Y0T14__SKILL--HLTHINF", + "sdg/SE_ADT_ACTS.AGE--Y0T14__SKILL--INTBNK", + "sdg/SE_ADT_ACTS.AGE--Y0T14__SKILL--ONLCNS", + "sdg/SE_ADT_ACTS.AGE--Y0T14__SKILL--ONLSFT", + "sdg/SE_ADT_ACTS.AGE--Y0T14__SKILL--SNTWK", + "sdg/SE_ADT_ACTS.AGE--Y0T14__SKILL--UPLD", + "sdg/SE_ADT_ACTS.AGE--Y0T14__SKILL--VOIP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old) by Type of skill" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y15T24__SKILL--ICT_ATCH", + "sdg/SE_ADT_ACTS.AGE--Y15T24__SKILL--ICT_CDV", + "sdg/SE_ADT_ACTS.AGE--Y15T24__SKILL--ICT_CPT", + "sdg/SE_ADT_ACTS.AGE--Y15T24__SKILL--ICT_PRGM", + "sdg/SE_ADT_ACTS.AGE--Y15T24__SKILL--ICT_PRVCY", + "sdg/SE_ADT_ACTS.AGE--Y15T24__SKILL--ICT_PST", + "sdg/SE_ADT_ACTS.AGE--Y15T24__SKILL--ICT_SCRTY", + "sdg/SE_ADT_ACTS.AGE--Y15T24__SKILL--ICT_SFWR", + "sdg/SE_ADT_ACTS.AGE--Y15T24__SKILL--ICT_SSHT", + "sdg/SE_ADT_ACTS.AGE--Y15T24__SKILL--ICT_TRFF", + "sdg/SE_ADT_ACTS.AGE--Y15T24__SKILL--ICT_VRFY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.006" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old) by Type of skill" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y25T74__SKILL--ICT_ATCH", + "sdg/SE_ADT_ACTS.AGE--Y25T74__SKILL--ICT_CDV", + "sdg/SE_ADT_ACTS.AGE--Y25T74__SKILL--ICT_CPT", + "sdg/SE_ADT_ACTS.AGE--Y25T74__SKILL--ICT_PRGM", + "sdg/SE_ADT_ACTS.AGE--Y25T74__SKILL--ICT_PRVCY", + "sdg/SE_ADT_ACTS.AGE--Y25T74__SKILL--ICT_PST", + "sdg/SE_ADT_ACTS.AGE--Y25T74__SKILL--ICT_SCRTY", + "sdg/SE_ADT_ACTS.AGE--Y25T74__SKILL--ICT_SFWR", + "sdg/SE_ADT_ACTS.AGE--Y25T74__SKILL--ICT_SSHT", + "sdg/SE_ADT_ACTS.AGE--Y25T74__SKILL--ICT_TRFF", + "sdg/SE_ADT_ACTS.AGE--Y25T74__SKILL--ICT_VRFY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.007" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over) by Type of skill" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SKILL--ICT_ATCH", + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SKILL--ICT_CDV", + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SKILL--ICT_CPT", + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SKILL--ICT_PRGM", + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SKILL--ICT_PRVCY", + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SKILL--ICT_PST", + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SKILL--ICT_SCRTY", + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SKILL--ICT_SFWR", + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SKILL--ICT_SSHT", + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SKILL--ICT_TRFF", + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SKILL--ICT_VRFY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.008" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old) by Type of skill" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y0T14__SKILL--ICT_ATCH", + "sdg/SE_ADT_ACTS.AGE--Y0T14__SKILL--ICT_CDV", + "sdg/SE_ADT_ACTS.AGE--Y0T14__SKILL--ICT_CPT", + "sdg/SE_ADT_ACTS.AGE--Y0T14__SKILL--ICT_PRGM", + "sdg/SE_ADT_ACTS.AGE--Y0T14__SKILL--ICT_PRVCY", + "sdg/SE_ADT_ACTS.AGE--Y0T14__SKILL--ICT_PST", + "sdg/SE_ADT_ACTS.AGE--Y0T14__SKILL--ICT_SCRTY", + "sdg/SE_ADT_ACTS.AGE--Y0T14__SKILL--ICT_SFWR", + "sdg/SE_ADT_ACTS.AGE--Y0T14__SKILL--ICT_SSHT", + "sdg/SE_ADT_ACTS.AGE--Y0T14__SKILL--ICT_TRFF", + "sdg/SE_ADT_ACTS.AGE--Y0T14__SKILL--ICT_VRFY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.009" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old", + "Changing privacy settings on your device", + "account or app to limit the sharing of personal data and information (e.g. name", + "contact information", + "photos)) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--F__SKILL--ICT_PRVCY", + "sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--M__SKILL--ICT_PRVCY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.010" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old", + "Connecting and installing new devices) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--F__SKILL--ICT_CDV", + "sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--M__SKILL--ICT_CDV" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.011" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old", + "Creating electronic presentations with presentation software) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--F__SKILL--ICT_PST", + "sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--M__SKILL--ICT_PST" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.012" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old", + "Doing a formal online course) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--F__SKILL--FONLCRS", + "sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--M__SKILL--FONLCRS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.013" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old", + "Finding", + "downloading", + "installing and configuring software) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--F__SKILL--ICT_SFWR", + "sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--M__SKILL--ICT_SFWR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.014" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old", + "Getting information about goods or services online) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--F__SKILL--GSINF", + "sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--M__SKILL--GSINF" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.015" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old", + "Participating in social networks) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--F__SKILL--SNTWK", + "sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--M__SKILL--SNTWK" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.016" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old", + "Purchasing or ordering goods or services using the Internet) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--F__SKILL--GSPUR", + "sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--M__SKILL--GSPUR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.017" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old", + "Reading or downloading on-line newspapers", + "magazines", + "or electronic books) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--F__SKILL--DLDONLD", + "sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--M__SKILL--DLDONLD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.018" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old", + "Seeking health information (on injury", + "disease", + "nutrition", + "etc.)) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--F__SKILL--HLTHINF", + "sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--M__SKILL--HLTHINF" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.019" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old", + "Sending e-mails with attached files) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--F__SKILL--ICT_ATCH", + "sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--M__SKILL--ICT_ATCH" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.020" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old", + "Setting up effective security measures (e.g. strong passwords", + "log-in attempt notification) to protect devices and online accounts) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--F__SKILL--ICT_SCRTY", + "sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--M__SKILL--ICT_SCRTY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.021" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old", + "Taking part in on-line consultations or voting to define civic or political issues) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--F__SKILL--ONLCNS", + "sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--M__SKILL--ONLCNS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.022" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old", + "Telephoning over the Internet/VoIP) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--F__SKILL--VOIP", + "sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--M__SKILL--VOIP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.023" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old", + "Transferring files between a computer and other devices) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--F__SKILL--ICT_TRFF", + "sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--M__SKILL--ICT_TRFF" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.024" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old", + "Uploading self/user-created content to a website to be shared) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--F__SKILL--UPLD", + "sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--M__SKILL--UPLD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.025" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old", + "Using Internet banking) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--F__SKILL--INTBNK", + "sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--M__SKILL--INTBNK" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.026" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old", + "Using basic arithmetic formula in a spreadsheet) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--F__SKILL--ICT_SSHT", + "sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--M__SKILL--ICT_SSHT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.027" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old", + "Using copy and paste tools to duplicate or move information within a document) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--F__SKILL--ICT_CPT", + "sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--M__SKILL--ICT_CPT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.028" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old", + "Using software run over the Internet for editing text documents", + "spreadsheets or presentations) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--F__SKILL--ONLSFT", + "sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--M__SKILL--ONLSFT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.029" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old", + "Verifying the reliability of information found online) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--F__SKILL--ICT_VRFY", + "sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--M__SKILL--ICT_VRFY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.030" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old", + "Writing a computer program using a specialized programming language) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--F__SKILL--ICT_PRGM", + "sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--M__SKILL--ICT_PRGM" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.031" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old", + "Changing privacy settings on your device", + "account or app to limit the sharing of personal data and information (e.g. name", + "contact information", + "photos)) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--F__SKILL--ICT_PRVCY", + "sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--M__SKILL--ICT_PRVCY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.032" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old", + "Connecting and installing new devices) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--F__SKILL--ICT_CDV", + "sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--M__SKILL--ICT_CDV" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.033" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old", + "Creating electronic presentations with presentation software) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--F__SKILL--ICT_PST", + "sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--M__SKILL--ICT_PST" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.034" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old", + "Doing a formal online course) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--F__SKILL--FONLCRS", + "sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--M__SKILL--FONLCRS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.035" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old", + "Finding", + "downloading", + "installing and configuring software) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--F__SKILL--ICT_SFWR", + "sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--M__SKILL--ICT_SFWR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.036" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old", + "Getting information about goods or services online) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--F__SKILL--GSINF", + "sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--M__SKILL--GSINF" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.037" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old", + "Participating in social networks) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--F__SKILL--SNTWK", + "sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--M__SKILL--SNTWK" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.038" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old", + "Purchasing or ordering goods or services using the Internet) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--F__SKILL--GSPUR", + "sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--M__SKILL--GSPUR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.039" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old", + "Reading or downloading on-line newspapers", + "magazines", + "or electronic books) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--F__SKILL--DLDONLD", + "sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--M__SKILL--DLDONLD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.040" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old", + "Seeking health information (on injury", + "disease", + "nutrition", + "etc.)) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--F__SKILL--HLTHINF", + "sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--M__SKILL--HLTHINF" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.041" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old", + "Sending e-mails with attached files) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--F__SKILL--ICT_ATCH", + "sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--M__SKILL--ICT_ATCH" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.042" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old", + "Setting up effective security measures (e.g. strong passwords", + "log-in attempt notification) to protect devices and online accounts) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--F__SKILL--ICT_SCRTY", + "sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--M__SKILL--ICT_SCRTY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.043" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old", + "Taking part in on-line consultations or voting to define civic or political issues) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--F__SKILL--ONLCNS", + "sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--M__SKILL--ONLCNS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.044" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old", + "Telephoning over the Internet/VoIP) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--F__SKILL--VOIP", + "sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--M__SKILL--VOIP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.045" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old", + "Transferring files between a computer and other devices) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--F__SKILL--ICT_TRFF", + "sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--M__SKILL--ICT_TRFF" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.046" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old", + "Uploading self/user-created content to a website to be shared) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--F__SKILL--UPLD", + "sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--M__SKILL--UPLD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.047" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old", + "Using Internet banking) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--F__SKILL--INTBNK", + "sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--M__SKILL--INTBNK" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.048" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old", + "Using basic arithmetic formula in a spreadsheet) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--F__SKILL--ICT_SSHT", + "sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--M__SKILL--ICT_SSHT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.049" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old", + "Using copy and paste tools to duplicate or move information within a document) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--F__SKILL--ICT_CPT", + "sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--M__SKILL--ICT_CPT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.050" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old", + "Using software run over the Internet for editing text documents", + "spreadsheets or presentations) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--F__SKILL--ONLSFT", + "sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--M__SKILL--ONLSFT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.051" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old", + "Verifying the reliability of information found online) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--F__SKILL--ICT_VRFY", + "sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--M__SKILL--ICT_VRFY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.052" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old", + "Writing a computer program using a specialized programming language) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--F__SKILL--ICT_PRGM", + "sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--M__SKILL--ICT_PRGM" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.053" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over", + "Changing privacy settings on your device", + "account or app to limit the sharing of personal data and information (e.g. name", + "contact information", + "photos)) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--F__SKILL--ICT_PRVCY", + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--M__SKILL--ICT_PRVCY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.054" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over", + "Connecting and installing new devices) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--F__SKILL--ICT_CDV", + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--M__SKILL--ICT_CDV" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.055" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over", + "Creating electronic presentations with presentation software) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--F__SKILL--ICT_PST", + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--M__SKILL--ICT_PST" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.056" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over", + "Doing a formal online course) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--F__SKILL--FONLCRS", + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--M__SKILL--FONLCRS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.057" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over", + "Finding", + "downloading", + "installing and configuring software) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--F__SKILL--ICT_SFWR", + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--M__SKILL--ICT_SFWR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.058" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over", + "Getting information about goods or services online) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--F__SKILL--GSINF", + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--M__SKILL--GSINF" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.059" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over", + "Participating in social networks) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--F__SKILL--SNTWK", + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--M__SKILL--SNTWK" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.060" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over", + "Purchasing or ordering goods or services using the Internet) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--F__SKILL--GSPUR", + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--M__SKILL--GSPUR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.061" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over", + "Reading or downloading on-line newspapers", + "magazines", + "or electronic books) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--F__SKILL--DLDONLD", + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--M__SKILL--DLDONLD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.062" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over", + "Seeking health information (on injury", + "disease", + "nutrition", + "etc.)) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--F__SKILL--HLTHINF", + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--M__SKILL--HLTHINF" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.063" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over", + "Sending e-mails with attached files) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--F__SKILL--ICT_ATCH", + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--M__SKILL--ICT_ATCH" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.064" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over", + "Setting up effective security measures (e.g. strong passwords", + "log-in attempt notification) to protect devices and online accounts) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--F__SKILL--ICT_SCRTY", + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--M__SKILL--ICT_SCRTY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.065" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over", + "Taking part in on-line consultations or voting to define civic or political issues) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--F__SKILL--ONLCNS", + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--M__SKILL--ONLCNS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.066" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over", + "Telephoning over the Internet/VoIP) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--F__SKILL--VOIP", + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--M__SKILL--VOIP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.067" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over", + "Transferring files between a computer and other devices) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--F__SKILL--ICT_TRFF", + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--M__SKILL--ICT_TRFF" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.068" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over", + "Uploading self/user-created content to a website to be shared) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--F__SKILL--UPLD", + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--M__SKILL--UPLD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.069" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over", + "Using Internet banking) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--F__SKILL--INTBNK", + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--M__SKILL--INTBNK" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.070" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over", + "Using basic arithmetic formula in a spreadsheet) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--F__SKILL--ICT_SSHT", + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--M__SKILL--ICT_SSHT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.071" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over", + "Using copy and paste tools to duplicate or move information within a document) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--F__SKILL--ICT_CPT", + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--M__SKILL--ICT_CPT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.072" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over", + "Using software run over the Internet for editing text documents", + "spreadsheets or presentations) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--F__SKILL--ONLSFT", + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--M__SKILL--ONLSFT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.073" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over", + "Verifying the reliability of information found online) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--F__SKILL--ICT_VRFY", + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--M__SKILL--ICT_VRFY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.074" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over", + "Writing a computer program using a specialized programming language) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--F__SKILL--ICT_PRGM", + "sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--M__SKILL--ICT_PRGM" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.075" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old", + "Changing privacy settings on your device", + "account or app to limit the sharing of personal data and information (e.g. name", + "contact information", + "photos)) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--F__SKILL--ICT_PRVCY", + "sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--M__SKILL--ICT_PRVCY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.076" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old", + "Connecting and installing new devices) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--F__SKILL--ICT_CDV", + "sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--M__SKILL--ICT_CDV" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.077" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old", + "Creating electronic presentations with presentation software) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--F__SKILL--ICT_PST", + "sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--M__SKILL--ICT_PST" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.078" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old", + "Doing a formal online course) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--F__SKILL--FONLCRS", + "sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--M__SKILL--FONLCRS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.079" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old", + "Finding", + "downloading", + "installing and configuring software) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--F__SKILL--ICT_SFWR", + "sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--M__SKILL--ICT_SFWR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.080" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old", + "Getting information about goods or services online) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--F__SKILL--GSINF", + "sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--M__SKILL--GSINF" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.081" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old", + "Participating in social networks) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--F__SKILL--SNTWK", + "sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--M__SKILL--SNTWK" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.082" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old", + "Purchasing or ordering goods or services using the Internet) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--F__SKILL--GSPUR", + "sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--M__SKILL--GSPUR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.083" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old", + "Reading or downloading on-line newspapers", + "magazines", + "or electronic books) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--F__SKILL--DLDONLD", + "sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--M__SKILL--DLDONLD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.084" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old", + "Seeking health information (on injury", + "disease", + "nutrition", + "etc.)) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--F__SKILL--HLTHINF", + "sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--M__SKILL--HLTHINF" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.085" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old", + "Sending e-mails with attached files) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--F__SKILL--ICT_ATCH", + "sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--M__SKILL--ICT_ATCH" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.086" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old", + "Setting up effective security measures (e.g. strong passwords", + "log-in attempt notification) to protect devices and online accounts) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--F__SKILL--ICT_SCRTY", + "sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--M__SKILL--ICT_SCRTY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.087" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old", + "Taking part in on-line consultations or voting to define civic or political issues) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--F__SKILL--ONLCNS", + "sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--M__SKILL--ONLCNS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.088" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old", + "Telephoning over the Internet/VoIP) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--F__SKILL--VOIP", + "sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--M__SKILL--VOIP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.089" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old", + "Transferring files between a computer and other devices) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--F__SKILL--ICT_TRFF", + "sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--M__SKILL--ICT_TRFF" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.090" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old", + "Uploading self/user-created content to a website to be shared) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--F__SKILL--UPLD", + "sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--M__SKILL--UPLD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.091" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old", + "Using Internet banking) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--F__SKILL--INTBNK", + "sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--M__SKILL--INTBNK" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.092" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old", + "Using basic arithmetic formula in a spreadsheet) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--F__SKILL--ICT_SSHT", + "sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--M__SKILL--ICT_SSHT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.093" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old", + "Using copy and paste tools to duplicate or move information within a document) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--F__SKILL--ICT_CPT", + "sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--M__SKILL--ICT_CPT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.094" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old", + "Using software run over the Internet for editing text documents", + "spreadsheets or presentations) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--F__SKILL--ONLSFT", + "sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--M__SKILL--ONLSFT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.095" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old", + "Verifying the reliability of information found online) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--F__SKILL--ICT_VRFY", + "sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--M__SKILL--ICT_VRFY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.096" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old", + "Writing a computer program using a specialized programming language) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--F__SKILL--ICT_PRGM", + "sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--M__SKILL--ICT_PRGM" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.097" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills by Type of skill" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SKILL--DLDONLD", + "sdg/SE_ADT_ACTS.SKILL--FONLCRS", + "sdg/SE_ADT_ACTS.SKILL--GSINF", + "sdg/SE_ADT_ACTS.SKILL--GSPUR", + "sdg/SE_ADT_ACTS.SKILL--HLTHINF", + "sdg/SE_ADT_ACTS.SKILL--INTBNK", + "sdg/SE_ADT_ACTS.SKILL--ONLCNS", + "sdg/SE_ADT_ACTS.SKILL--ONLSFT", + "sdg/SE_ADT_ACTS.SKILL--SNTWK", + "sdg/SE_ADT_ACTS.SKILL--UPLD", + "sdg/SE_ADT_ACTS.SKILL--VOIP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.098" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills by Type of skill" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SKILL--ICT_ATCH", + "sdg/SE_ADT_ACTS.SKILL--ICT_CDV", + "sdg/SE_ADT_ACTS.SKILL--ICT_CPT", + "sdg/SE_ADT_ACTS.SKILL--ICT_PRGM", + "sdg/SE_ADT_ACTS.SKILL--ICT_PRVCY", + "sdg/SE_ADT_ACTS.SKILL--ICT_PST", + "sdg/SE_ADT_ACTS.SKILL--ICT_SCRTY", + "sdg/SE_ADT_ACTS.SKILL--ICT_SFWR", + "sdg/SE_ADT_ACTS.SKILL--ICT_SSHT", + "sdg/SE_ADT_ACTS.SKILL--ICT_TRFF", + "sdg/SE_ADT_ACTS.SKILL--ICT_VRFY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.099" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Changing privacy settings on your device", + "account or app to limit the sharing of personal data and information (e.g. name", + "contact information", + "photos)) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__SKILL--ICT_PRVCY", + "sdg/SE_ADT_ACTS.SEX--M__SKILL--ICT_PRVCY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.100" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Connecting and installing new devices) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__SKILL--ICT_CDV", + "sdg/SE_ADT_ACTS.SEX--M__SKILL--ICT_CDV" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.101" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Creating electronic presentations with presentation software) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__SKILL--ICT_PST", + "sdg/SE_ADT_ACTS.SEX--M__SKILL--ICT_PST" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.102" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Doing a formal online course) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__SKILL--FONLCRS", + "sdg/SE_ADT_ACTS.SEX--M__SKILL--FONLCRS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.103" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Finding", + "downloading", + "installing and configuring software) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__SKILL--ICT_SFWR", + "sdg/SE_ADT_ACTS.SEX--M__SKILL--ICT_SFWR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.104" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Getting information about goods or services online) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__SKILL--GSINF", + "sdg/SE_ADT_ACTS.SEX--M__SKILL--GSINF" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.105" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Participating in social networks) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__SKILL--SNTWK", + "sdg/SE_ADT_ACTS.SEX--M__SKILL--SNTWK" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.106" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Purchasing or ordering goods or services using the Internet) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__SKILL--GSPUR", + "sdg/SE_ADT_ACTS.SEX--M__SKILL--GSPUR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.107" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Reading or downloading on-line newspapers", + "magazines", + "or electronic books) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__SKILL--DLDONLD", + "sdg/SE_ADT_ACTS.SEX--M__SKILL--DLDONLD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.108" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Seeking health information (on injury", + "disease", + "nutrition", + "etc.)) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__SKILL--HLTHINF", + "sdg/SE_ADT_ACTS.SEX--M__SKILL--HLTHINF" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.109" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Sending e-mails with attached files) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__SKILL--ICT_ATCH", + "sdg/SE_ADT_ACTS.SEX--M__SKILL--ICT_ATCH" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.110" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Setting up effective security measures (e.g. strong passwords", + "log-in attempt notification) to protect devices and online accounts) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__SKILL--ICT_SCRTY", + "sdg/SE_ADT_ACTS.SEX--M__SKILL--ICT_SCRTY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.111" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Taking part in on-line consultations or voting to define civic or political issues) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__SKILL--ONLCNS", + "sdg/SE_ADT_ACTS.SEX--M__SKILL--ONLCNS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.112" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Telephoning over the Internet/VoIP) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__SKILL--VOIP", + "sdg/SE_ADT_ACTS.SEX--M__SKILL--VOIP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.113" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Transferring files between a computer and other devices) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__SKILL--ICT_TRFF", + "sdg/SE_ADT_ACTS.SEX--M__SKILL--ICT_TRFF" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.114" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Uploading self/user-created content to a website to be shared) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__SKILL--UPLD", + "sdg/SE_ADT_ACTS.SEX--M__SKILL--UPLD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.115" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Using Internet banking) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__SKILL--INTBNK", + "sdg/SE_ADT_ACTS.SEX--M__SKILL--INTBNK" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.116" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Using basic arithmetic formula in a spreadsheet) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__SKILL--ICT_SSHT", + "sdg/SE_ADT_ACTS.SEX--M__SKILL--ICT_SSHT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.117" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Using copy and paste tools to duplicate or move information within a document) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__SKILL--ICT_CPT", + "sdg/SE_ADT_ACTS.SEX--M__SKILL--ICT_CPT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.118" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Using software run over the Internet for editing text documents", + "spreadsheets or presentations) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__SKILL--ONLSFT", + "sdg/SE_ADT_ACTS.SEX--M__SKILL--ONLSFT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.119" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Verifying the reliability of information found online) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__SKILL--ICT_VRFY", + "sdg/SE_ADT_ACTS.SEX--M__SKILL--ICT_VRFY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.120" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Writing a computer program using a specialized programming language) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__SKILL--ICT_PRGM", + "sdg/SE_ADT_ACTS.SEX--M__SKILL--ICT_PRGM" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.121" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Changing privacy settings on your device", + "account or app to limit the sharing of personal data and information (e.g. name", + "contact information", + "photos)) by Type of location" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.URBANIZATION--R__SKILL--ICT_PRVCY", + "sdg/SE_ADT_ACTS.URBANIZATION--U__SKILL--ICT_PRVCY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.122" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Connecting and installing new devices) by Type of location" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.URBANIZATION--R__SKILL--ICT_CDV", + "sdg/SE_ADT_ACTS.URBANIZATION--U__SKILL--ICT_CDV" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.123" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Creating electronic presentations with presentation software) by Type of location" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.URBANIZATION--R__SKILL--ICT_PST", + "sdg/SE_ADT_ACTS.URBANIZATION--U__SKILL--ICT_PST" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.124" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Doing a formal online course) by Type of location" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.URBANIZATION--R__SKILL--FONLCRS", + "sdg/SE_ADT_ACTS.URBANIZATION--U__SKILL--FONLCRS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.125" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Finding", + "downloading", + "installing and configuring software) by Type of location" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.URBANIZATION--R__SKILL--ICT_SFWR", + "sdg/SE_ADT_ACTS.URBANIZATION--U__SKILL--ICT_SFWR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.126" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Getting information about goods or services online) by Type of location" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.URBANIZATION--R__SKILL--GSINF", + "sdg/SE_ADT_ACTS.URBANIZATION--U__SKILL--GSINF" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.127" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Participating in social networks) by Type of location" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.URBANIZATION--R__SKILL--SNTWK", + "sdg/SE_ADT_ACTS.URBANIZATION--U__SKILL--SNTWK" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.128" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Purchasing or ordering goods or services using the Internet) by Type of location" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.URBANIZATION--R__SKILL--GSPUR", + "sdg/SE_ADT_ACTS.URBANIZATION--U__SKILL--GSPUR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.129" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Reading or downloading on-line newspapers", + "magazines", + "or electronic books) by Type of location" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.URBANIZATION--R__SKILL--DLDONLD", + "sdg/SE_ADT_ACTS.URBANIZATION--U__SKILL--DLDONLD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.130" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Seeking health information (on injury", + "disease", + "nutrition", + "etc.)) by Type of location" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.URBANIZATION--R__SKILL--HLTHINF", + "sdg/SE_ADT_ACTS.URBANIZATION--U__SKILL--HLTHINF" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.131" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Sending e-mails with attached files) by Type of location" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.URBANIZATION--R__SKILL--ICT_ATCH", + "sdg/SE_ADT_ACTS.URBANIZATION--U__SKILL--ICT_ATCH" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.132" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Setting up effective security measures (e.g. strong passwords", + "log-in attempt notification) to protect devices and online accounts) by Type of location" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.URBANIZATION--R__SKILL--ICT_SCRTY", + "sdg/SE_ADT_ACTS.URBANIZATION--U__SKILL--ICT_SCRTY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.133" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Taking part in on-line consultations or voting to define civic or political issues) by Type of location" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.URBANIZATION--R__SKILL--ONLCNS", + "sdg/SE_ADT_ACTS.URBANIZATION--U__SKILL--ONLCNS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.134" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Telephoning over the Internet/VoIP) by Type of location" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.URBANIZATION--R__SKILL--VOIP", + "sdg/SE_ADT_ACTS.URBANIZATION--U__SKILL--VOIP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.135" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Transferring files between a computer and other devices) by Type of location" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.URBANIZATION--R__SKILL--ICT_TRFF", + "sdg/SE_ADT_ACTS.URBANIZATION--U__SKILL--ICT_TRFF" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.136" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Uploading self/user-created content to a website to be shared) by Type of location" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.URBANIZATION--R__SKILL--UPLD", + "sdg/SE_ADT_ACTS.URBANIZATION--U__SKILL--UPLD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.137" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Using Internet banking) by Type of location" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.URBANIZATION--R__SKILL--INTBNK", + "sdg/SE_ADT_ACTS.URBANIZATION--U__SKILL--INTBNK" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.138" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Using basic arithmetic formula in a spreadsheet) by Type of location" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.URBANIZATION--R__SKILL--ICT_SSHT", + "sdg/SE_ADT_ACTS.URBANIZATION--U__SKILL--ICT_SSHT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.139" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Using copy and paste tools to duplicate or move information within a document) by Type of location" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.URBANIZATION--R__SKILL--ICT_CPT", + "sdg/SE_ADT_ACTS.URBANIZATION--U__SKILL--ICT_CPT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.140" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Using software run over the Internet for editing text documents", + "spreadsheets or presentations) by Type of location" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.URBANIZATION--R__SKILL--ONLSFT", + "sdg/SE_ADT_ACTS.URBANIZATION--U__SKILL--ONLSFT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.141" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Verifying the reliability of information found online) by Type of location" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.URBANIZATION--R__SKILL--ICT_VRFY", + "sdg/SE_ADT_ACTS.URBANIZATION--U__SKILL--ICT_VRFY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.142" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Writing a computer program using a specialized programming language) by Type of location" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.URBANIZATION--R__SKILL--ICT_PRGM", + "sdg/SE_ADT_ACTS.URBANIZATION--U__SKILL--ICT_PRGM" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.143" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Changing privacy settings on your device", + "account or app to limit the sharing of personal data and information (e.g. name", + "contact information", + "photos)", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--R__SKILL--ICT_PRVCY", + "sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--R__SKILL--ICT_PRVCY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.144" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Changing privacy settings on your device", + "account or app to limit the sharing of personal data and information (e.g. name", + "contact information", + "photos)", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--U__SKILL--ICT_PRVCY", + "sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--U__SKILL--ICT_PRVCY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.145" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Connecting and installing new devices", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--R__SKILL--ICT_CDV", + "sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--R__SKILL--ICT_CDV" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.146" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Connecting and installing new devices", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--U__SKILL--ICT_CDV", + "sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--U__SKILL--ICT_CDV" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.147" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Creating electronic presentations with presentation software", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--R__SKILL--ICT_PST", + "sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--R__SKILL--ICT_PST" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.148" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Creating electronic presentations with presentation software", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--U__SKILL--ICT_PST", + "sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--U__SKILL--ICT_PST" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.149" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Doing a formal online course", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--R__SKILL--FONLCRS", + "sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--R__SKILL--FONLCRS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.150" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Doing a formal online course", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--U__SKILL--FONLCRS", + "sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--U__SKILL--FONLCRS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.151" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Finding", + "downloading", + "installing and configuring software", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--R__SKILL--ICT_SFWR", + "sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--R__SKILL--ICT_SFWR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.152" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Finding", + "downloading", + "installing and configuring software", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--U__SKILL--ICT_SFWR", + "sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--U__SKILL--ICT_SFWR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.153" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Getting information about goods or services online", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--R__SKILL--GSINF", + "sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--R__SKILL--GSINF" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.154" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Getting information about goods or services online", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--U__SKILL--GSINF", + "sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--U__SKILL--GSINF" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.155" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Participating in social networks", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--R__SKILL--SNTWK", + "sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--R__SKILL--SNTWK" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.156" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Participating in social networks", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--U__SKILL--SNTWK", + "sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--U__SKILL--SNTWK" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.157" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Purchasing or ordering goods or services using the Internet", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--R__SKILL--GSPUR", + "sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--R__SKILL--GSPUR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.158" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Purchasing or ordering goods or services using the Internet", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--U__SKILL--GSPUR", + "sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--U__SKILL--GSPUR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.159" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Reading or downloading on-line newspapers", + "magazines", + "or electronic books", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--R__SKILL--DLDONLD", + "sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--R__SKILL--DLDONLD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.160" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Reading or downloading on-line newspapers", + "magazines", + "or electronic books", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--U__SKILL--DLDONLD", + "sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--U__SKILL--DLDONLD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.161" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Seeking health information (on injury", + "disease", + "nutrition", + "etc.)", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--R__SKILL--HLTHINF", + "sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--R__SKILL--HLTHINF" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.162" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Seeking health information (on injury", + "disease", + "nutrition", + "etc.)", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--U__SKILL--HLTHINF", + "sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--U__SKILL--HLTHINF" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.163" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Sending e-mails with attached files", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--R__SKILL--ICT_ATCH", + "sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--R__SKILL--ICT_ATCH" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.164" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Sending e-mails with attached files", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--U__SKILL--ICT_ATCH", + "sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--U__SKILL--ICT_ATCH" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.165" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Setting up effective security measures (e.g. strong passwords", + "log-in attempt notification) to protect devices and online accounts", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--R__SKILL--ICT_SCRTY", + "sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--R__SKILL--ICT_SCRTY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.166" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Setting up effective security measures (e.g. strong passwords", + "log-in attempt notification) to protect devices and online accounts", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--U__SKILL--ICT_SCRTY", + "sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--U__SKILL--ICT_SCRTY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.167" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Taking part in on-line consultations or voting to define civic or political issues", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--R__SKILL--ONLCNS", + "sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--R__SKILL--ONLCNS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.168" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Taking part in on-line consultations or voting to define civic or political issues", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--U__SKILL--ONLCNS", + "sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--U__SKILL--ONLCNS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.169" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Telephoning over the Internet/VoIP", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--R__SKILL--VOIP", + "sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--R__SKILL--VOIP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.170" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Telephoning over the Internet/VoIP", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--U__SKILL--VOIP", + "sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--U__SKILL--VOIP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.171" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Transferring files between a computer and other devices", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--R__SKILL--ICT_TRFF", + "sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--R__SKILL--ICT_TRFF" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.172" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Transferring files between a computer and other devices", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--U__SKILL--ICT_TRFF", + "sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--U__SKILL--ICT_TRFF" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.173" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Uploading self/user-created content to a website to be shared", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--R__SKILL--UPLD", + "sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--R__SKILL--UPLD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.174" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Uploading self/user-created content to a website to be shared", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--U__SKILL--UPLD", + "sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--U__SKILL--UPLD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.175" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Using Internet banking", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--R__SKILL--INTBNK", + "sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--R__SKILL--INTBNK" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.176" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Using Internet banking", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--U__SKILL--INTBNK", + "sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--U__SKILL--INTBNK" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.177" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Using basic arithmetic formula in a spreadsheet", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--R__SKILL--ICT_SSHT", + "sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--R__SKILL--ICT_SSHT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.178" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Using basic arithmetic formula in a spreadsheet", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--U__SKILL--ICT_SSHT", + "sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--U__SKILL--ICT_SSHT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.179" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Using copy and paste tools to duplicate or move information within a document", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--R__SKILL--ICT_CPT", + "sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--R__SKILL--ICT_CPT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.180" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Using copy and paste tools to duplicate or move information within a document", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--U__SKILL--ICT_CPT", + "sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--U__SKILL--ICT_CPT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.181" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Using software run over the Internet for editing text documents", + "spreadsheets or presentations", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--R__SKILL--ONLSFT", + "sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--R__SKILL--ONLSFT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.182" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Using software run over the Internet for editing text documents", + "spreadsheets or presentations", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--U__SKILL--ONLSFT", + "sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--U__SKILL--ONLSFT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.183" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Verifying the reliability of information found online", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--R__SKILL--ICT_VRFY", + "sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--R__SKILL--ICT_VRFY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.184" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Verifying the reliability of information found online", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--U__SKILL--ICT_VRFY", + "sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--U__SKILL--ICT_VRFY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.185" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Writing a computer program using a specialized programming language", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--R__SKILL--ICT_PRGM", + "sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--R__SKILL--ICT_PRGM" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_ACTS.186" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (Writing a computer program using a specialized programming language", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--U__SKILL--ICT_PRGM", + "sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--U__SKILL--ICT_PRGM" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_EDUCTRN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Participation rate in formal and non-formal education and training by Age group" + ], + "memberList": [ + "sdg/SE_ADT_EDUCTRN.AGE--Y15T24", + "sdg/SE_ADT_EDUCTRN.AGE--Y15T64", + "sdg/SE_ADT_EDUCTRN.AGE--Y25T54", + "sdg/SE_ADT_EDUCTRN.AGE--Y55T64" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_EDUCTRN.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Participation rate in formal and non-formal education and training (15 to 24 years old) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_EDUCTRN.AGE--Y15T24__SEX--F", + "sdg/SE_ADT_EDUCTRN.AGE--Y15T24__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_EDUCTRN.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Participation rate in formal and non-formal education and training (15 to 64 years old) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_EDUCTRN.AGE--Y15T64__SEX--F", + "sdg/SE_ADT_EDUCTRN.AGE--Y15T64__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_EDUCTRN.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Participation rate in formal and non-formal education and training (25 to 54 years old) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_EDUCTRN.AGE--Y25T54__SEX--F", + "sdg/SE_ADT_EDUCTRN.AGE--Y25T54__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_EDUCTRN.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Participation rate in formal and non-formal education and training (55 to 64 years old) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_EDUCTRN.AGE--Y55T64__SEX--F", + "sdg/SE_ADT_EDUCTRN.AGE--Y55T64__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_FUNS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population achieving at least a fixed level of proficiency in functional skills (16 to 65 years old) by Type of skill" + ], + "memberList": [ + "sdg/SE_ADT_FUNS.AGE--Y16T65__SKILL--LTRCY", + "sdg/SE_ADT_FUNS.AGE--Y16T65__SKILL--NMRCY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_FUNS.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population achieving at least a fixed level of proficiency in functional skills (16 to 65 years old", + "Literacy) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_FUNS.AGE--Y16T65__SEX--F__SKILL--LTRCY", + "sdg/SE_ADT_FUNS.AGE--Y16T65__SEX--M__SKILL--LTRCY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ADT_FUNS.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population achieving at least a fixed level of proficiency in functional skills (16 to 65 years old", + "Numeracy) by Sex" + ], + "memberList": [ + "sdg/SE_ADT_FUNS.AGE--Y16T65__SEX--F__SKILL--NMRCY", + "sdg/SE_ADT_FUNS.AGE--Y16T65__SEX--M__SKILL--NMRCY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_AGP_CPRA.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted gender parity index for completion rate by Education level" + ], + "memberList": [ + "sdg/SE_AGP_CPRA.EDUCATION_LEVEL--ISCED11_1", + "sdg/SE_AGP_CPRA.EDUCATION_LEVEL--ISCED11_2", + "sdg/SE_AGP_CPRA.EDUCATION_LEVEL--ISCED11_3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_AGP_CPRA.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted gender parity index for completion rate (Rural) by Education level" + ], + "memberList": [ + "sdg/SE_AGP_CPRA.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1", + "sdg/SE_AGP_CPRA.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2", + "sdg/SE_AGP_CPRA.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_AGP_CPRA.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted gender parity index for completion rate (Urban) by Education level" + ], + "memberList": [ + "sdg/SE_AGP_CPRA.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1", + "sdg/SE_AGP_CPRA.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2", + "sdg/SE_AGP_CPRA.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_AGP_CPRA.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted gender parity index for completion rate (Fourth quintile) by Education level" + ], + "memberList": [ + "sdg/SE_AGP_CPRA.EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q4", + "sdg/SE_AGP_CPRA.EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q4", + "sdg/SE_AGP_CPRA.EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q4" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_AGP_CPRA.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted gender parity index for completion rate (Highest quintile) by Education level" + ], + "memberList": [ + "sdg/SE_AGP_CPRA.EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q5", + "sdg/SE_AGP_CPRA.EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q5", + "sdg/SE_AGP_CPRA.EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q5" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_AGP_CPRA.006" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted gender parity index for completion rate (Lowest quintile) by Education level" + ], + "memberList": [ + "sdg/SE_AGP_CPRA.EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q1", + "sdg/SE_AGP_CPRA.EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q1", + "sdg/SE_AGP_CPRA.EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q1" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_AGP_CPRA.007" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted gender parity index for completion rate (Middle quintile) by Education level" + ], + "memberList": [ + "sdg/SE_AGP_CPRA.EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q3", + "sdg/SE_AGP_CPRA.EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q3", + "sdg/SE_AGP_CPRA.EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_AGP_CPRA.008" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted gender parity index for completion rate (Second quintile) by Education level" + ], + "memberList": [ + "sdg/SE_AGP_CPRA.EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q2", + "sdg/SE_AGP_CPRA.EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q2", + "sdg/SE_AGP_CPRA.EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q2" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_AGP_CPRA.009" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted gender parity index for completion rate (Fourth quintile", + "Rural) by Education level" + ], + "memberList": [ + "sdg/SE_AGP_CPRA.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q4", + "sdg/SE_AGP_CPRA.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q4", + "sdg/SE_AGP_CPRA.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q4" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_AGP_CPRA.010" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted gender parity index for completion rate (Fourth quintile", + "Urban) by Education level" + ], + "memberList": [ + "sdg/SE_AGP_CPRA.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q4", + "sdg/SE_AGP_CPRA.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q4", + "sdg/SE_AGP_CPRA.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q4" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_AGP_CPRA.011" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted gender parity index for completion rate (Highest quintile", + "Rural) by Education level" + ], + "memberList": [ + "sdg/SE_AGP_CPRA.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q5", + "sdg/SE_AGP_CPRA.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q5", + "sdg/SE_AGP_CPRA.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q5" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_AGP_CPRA.012" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted gender parity index for completion rate (Highest quintile", + "Urban) by Education level" + ], + "memberList": [ + "sdg/SE_AGP_CPRA.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q5", + "sdg/SE_AGP_CPRA.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q5", + "sdg/SE_AGP_CPRA.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q5" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_AGP_CPRA.013" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted gender parity index for completion rate (Lowest quintile", + "Rural) by Education level" + ], + "memberList": [ + "sdg/SE_AGP_CPRA.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q1", + "sdg/SE_AGP_CPRA.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q1", + "sdg/SE_AGP_CPRA.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q1" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_AGP_CPRA.014" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted gender parity index for completion rate (Lowest quintile", + "Urban) by Education level" + ], + "memberList": [ + "sdg/SE_AGP_CPRA.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q1", + "sdg/SE_AGP_CPRA.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q1", + "sdg/SE_AGP_CPRA.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q1" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_AGP_CPRA.015" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted gender parity index for completion rate (Middle quintile", + "Rural) by Education level" + ], + "memberList": [ + "sdg/SE_AGP_CPRA.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q3", + "sdg/SE_AGP_CPRA.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q3", + "sdg/SE_AGP_CPRA.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_AGP_CPRA.016" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted gender parity index for completion rate (Middle quintile", + "Urban) by Education level" + ], + "memberList": [ + "sdg/SE_AGP_CPRA.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q3", + "sdg/SE_AGP_CPRA.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q3", + "sdg/SE_AGP_CPRA.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_AGP_CPRA.017" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted gender parity index for completion rate (Second quintile", + "Rural) by Education level" + ], + "memberList": [ + "sdg/SE_AGP_CPRA.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q2", + "sdg/SE_AGP_CPRA.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q2", + "sdg/SE_AGP_CPRA.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q2" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_AGP_CPRA.018" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted gender parity index for completion rate (Second quintile", + "Urban) by Education level" + ], + "memberList": [ + "sdg/SE_AGP_CPRA.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q2", + "sdg/SE_AGP_CPRA.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q2", + "sdg/SE_AGP_CPRA.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q2" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ALP_CPLR.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted location parity index for completion rate by Education level" + ], + "memberList": [ + "sdg/SE_ALP_CPLR.EDUCATION_LEVEL--ISCED11_1", + "sdg/SE_ALP_CPLR.EDUCATION_LEVEL--ISCED11_2", + "sdg/SE_ALP_CPLR.EDUCATION_LEVEL--ISCED11_3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ALP_CPLR.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted location parity index for completion rate (Female) by Education level" + ], + "memberList": [ + "sdg/SE_ALP_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_1", + "sdg/SE_ALP_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_2", + "sdg/SE_ALP_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ALP_CPLR.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted location parity index for completion rate (Male) by Education level" + ], + "memberList": [ + "sdg/SE_ALP_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_1", + "sdg/SE_ALP_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_2", + "sdg/SE_ALP_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ALP_CPLR.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted location parity index for completion rate (Fourth quintile) by Education level" + ], + "memberList": [ + "sdg/SE_ALP_CPLR.EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q4", + "sdg/SE_ALP_CPLR.EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q4", + "sdg/SE_ALP_CPLR.EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q4" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ALP_CPLR.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted location parity index for completion rate (Highest quintile) by Education level" + ], + "memberList": [ + "sdg/SE_ALP_CPLR.EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q5", + "sdg/SE_ALP_CPLR.EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q5", + "sdg/SE_ALP_CPLR.EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q5" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ALP_CPLR.006" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted location parity index for completion rate (Lowest quintile) by Education level" + ], + "memberList": [ + "sdg/SE_ALP_CPLR.EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q1", + "sdg/SE_ALP_CPLR.EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q1", + "sdg/SE_ALP_CPLR.EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q1" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ALP_CPLR.007" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted location parity index for completion rate (Middle quintile) by Education level" + ], + "memberList": [ + "sdg/SE_ALP_CPLR.EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q3", + "sdg/SE_ALP_CPLR.EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q3", + "sdg/SE_ALP_CPLR.EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ALP_CPLR.008" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted location parity index for completion rate (Second quintile) by Education level" + ], + "memberList": [ + "sdg/SE_ALP_CPLR.EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q2", + "sdg/SE_ALP_CPLR.EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q2", + "sdg/SE_ALP_CPLR.EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q2" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ALP_CPLR.009" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted location parity index for completion rate (Fourth quintile", + "Female) by Education level" + ], + "memberList": [ + "sdg/SE_ALP_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q4", + "sdg/SE_ALP_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q4", + "sdg/SE_ALP_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q4" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ALP_CPLR.010" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted location parity index for completion rate (Fourth quintile", + "Male) by Education level" + ], + "memberList": [ + "sdg/SE_ALP_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q4", + "sdg/SE_ALP_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q4", + "sdg/SE_ALP_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q4" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ALP_CPLR.011" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted location parity index for completion rate (Highest quintile", + "Female) by Education level" + ], + "memberList": [ + "sdg/SE_ALP_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q5", + "sdg/SE_ALP_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q5", + "sdg/SE_ALP_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q5" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ALP_CPLR.012" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted location parity index for completion rate (Highest quintile", + "Male) by Education level" + ], + "memberList": [ + "sdg/SE_ALP_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q5", + "sdg/SE_ALP_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q5", + "sdg/SE_ALP_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q5" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ALP_CPLR.013" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted location parity index for completion rate (Lowest quintile", + "Female) by Education level" + ], + "memberList": [ + "sdg/SE_ALP_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q1", + "sdg/SE_ALP_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q1", + "sdg/SE_ALP_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q1" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ALP_CPLR.014" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted location parity index for completion rate (Lowest quintile", + "Male) by Education level" + ], + "memberList": [ + "sdg/SE_ALP_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q1", + "sdg/SE_ALP_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q1", + "sdg/SE_ALP_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q1" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ALP_CPLR.015" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted location parity index for completion rate (Middle quintile", + "Female) by Education level" + ], + "memberList": [ + "sdg/SE_ALP_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q3", + "sdg/SE_ALP_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q3", + "sdg/SE_ALP_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ALP_CPLR.016" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted location parity index for completion rate (Middle quintile", + "Male) by Education level" + ], + "memberList": [ + "sdg/SE_ALP_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q3", + "sdg/SE_ALP_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q3", + "sdg/SE_ALP_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ALP_CPLR.017" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted location parity index for completion rate (Second quintile", + "Female) by Education level" + ], + "memberList": [ + "sdg/SE_ALP_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q2", + "sdg/SE_ALP_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q2", + "sdg/SE_ALP_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q2" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_ALP_CPLR.018" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted location parity index for completion rate (Second quintile", + "Male) by Education level" + ], + "memberList": [ + "sdg/SE_ALP_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q2", + "sdg/SE_ALP_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q2", + "sdg/SE_ALP_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q2" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_AWP_CPRA.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted wealth parity index for completion rate by Education level" + ], + "memberList": [ + "sdg/SE_AWP_CPRA.EDUCATION_LEVEL--ISCED11_1", + "sdg/SE_AWP_CPRA.EDUCATION_LEVEL--ISCED11_2", + "sdg/SE_AWP_CPRA.EDUCATION_LEVEL--ISCED11_3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_AWP_CPRA.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted wealth parity index for completion rate (Female) by Education level" + ], + "memberList": [ + "sdg/SE_AWP_CPRA.SEX--F__EDUCATION_LEVEL--ISCED11_1", + "sdg/SE_AWP_CPRA.SEX--F__EDUCATION_LEVEL--ISCED11_2", + "sdg/SE_AWP_CPRA.SEX--F__EDUCATION_LEVEL--ISCED11_3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_AWP_CPRA.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted wealth parity index for completion rate (Male) by Education level" + ], + "memberList": [ + "sdg/SE_AWP_CPRA.SEX--M__EDUCATION_LEVEL--ISCED11_1", + "sdg/SE_AWP_CPRA.SEX--M__EDUCATION_LEVEL--ISCED11_2", + "sdg/SE_AWP_CPRA.SEX--M__EDUCATION_LEVEL--ISCED11_3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_AWP_CPRA.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted wealth parity index for completion rate (Rural) by Education level" + ], + "memberList": [ + "sdg/SE_AWP_CPRA.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1", + "sdg/SE_AWP_CPRA.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2", + "sdg/SE_AWP_CPRA.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_AWP_CPRA.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted wealth parity index for completion rate (Urban) by Education level" + ], + "memberList": [ + "sdg/SE_AWP_CPRA.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1", + "sdg/SE_AWP_CPRA.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2", + "sdg/SE_AWP_CPRA.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_AWP_CPRA.006" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted wealth parity index for completion rate (Rural", + "Female) by Education level" + ], + "memberList": [ + "sdg/SE_AWP_CPRA.SEX--F__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1", + "sdg/SE_AWP_CPRA.SEX--F__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2", + "sdg/SE_AWP_CPRA.SEX--F__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_AWP_CPRA.007" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted wealth parity index for completion rate (Rural", + "Male) by Education level" + ], + "memberList": [ + "sdg/SE_AWP_CPRA.SEX--M__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1", + "sdg/SE_AWP_CPRA.SEX--M__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2", + "sdg/SE_AWP_CPRA.SEX--M__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_AWP_CPRA.008" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted wealth parity index for completion rate (Urban", + "Female) by Education level" + ], + "memberList": [ + "sdg/SE_AWP_CPRA.SEX--F__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1", + "sdg/SE_AWP_CPRA.SEX--F__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2", + "sdg/SE_AWP_CPRA.SEX--F__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_AWP_CPRA.009" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted wealth parity index for completion rate (Urban", + "Male) by Education level" + ], + "memberList": [ + "sdg/SE_AWP_CPRA.SEX--M__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1", + "sdg/SE_AWP_CPRA.SEX--M__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2", + "sdg/SE_AWP_CPRA.SEX--M__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_DEV_ONTRK.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of children aged 24\u221259 months who are developmentally on track in at least three of the following domains: literacy-numeracy", + "physical development", + "social-emotional development", + "and learning by Age group" + ], + "memberList": [ + "sdg/SE_DEV_ONTRK.AGE--M24T59", + "sdg/SE_DEV_ONTRK.AGE--M36T47", + "sdg/SE_DEV_ONTRK.AGE--M36T59" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_DEV_ONTRK.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of children aged 24\u221259 months who are developmentally on track in at least three of the following domains: literacy-numeracy", + "physical development", + "social-emotional development", + "and learning by Sex" + ], + "memberList": [ + "sdg/SE_DEV_ONTRK.AGE--M24T59__SEX--F", + "sdg/SE_DEV_ONTRK.AGE--M24T59__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_DEV_ONTRK.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of children aged 36\u221247 months who are developmentally on track in at least three of the following domains: literacy-numeracy", + "physical development", + "social-emotional development", + "and learning by Sex" + ], + "memberList": [ + "sdg/SE_DEV_ONTRK.AGE--M36T47__SEX--F", + "sdg/SE_DEV_ONTRK.AGE--M36T47__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_DEV_ONTRK.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of children aged 36\u221259 months who are developmentally on track in at least three of the following domains: literacy-numeracy", + "physical development", + "social-emotional development", + "and learning (36 to 59 months old) by Sex" + ], + "memberList": [ + "sdg/SE_DEV_ONTRK.AGE--M36T59__SEX--F", + "sdg/SE_DEV_ONTRK.AGE--M36T59__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_GCEDESD_CUR.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Extent to which global citizenship education and education for sustainable development are mainstreamed in curricula" + ], + "memberList": [ + "sdg/SE_GCEDESD_CUR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_GCEDESD_NEP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Extent to which global citizenship education and education for sustainable development are mainstreamed in national education policies" + ], + "memberList": [ + "sdg/SE_GCEDESD_NEP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_GCEDESD_SAS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Extent to which global citizenship education and education for sustainable development are mainstreamed in student assessment" + ], + "memberList": [ + "sdg/SE_GCEDESD_SAS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_GCEDESD_TED.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Extent to which global citizenship education and education for sustainable development are mainstreamed in teacher education" + ], + "memberList": [ + "sdg/SE_GCEDESD_TED" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_GPI_ICTS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Gender parity index for youth/adults with information and communications technology (ICT) skills by Type of skill" + ], + "memberList": [ + "sdg/SE_GPI_ICTS.SKILL--DLDONLD", + "sdg/SE_GPI_ICTS.SKILL--FONLCRS", + "sdg/SE_GPI_ICTS.SKILL--GSINF", + "sdg/SE_GPI_ICTS.SKILL--GSPUR", + "sdg/SE_GPI_ICTS.SKILL--HLTHINF", + "sdg/SE_GPI_ICTS.SKILL--INTBNK", + "sdg/SE_GPI_ICTS.SKILL--ONLSFT", + "sdg/SE_GPI_ICTS.SKILL--SNTWK", + "sdg/SE_GPI_ICTS.SKILL--UPLD", + "sdg/SE_GPI_ICTS.SKILL--VOIP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_GPI_ICTS.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Gender parity index for youth/adults with information and communications technology (ICT) skills by Type of skill" + ], + "memberList": [ + "sdg/SE_GPI_ICTS.SKILL--ICT_ATCH", + "sdg/SE_GPI_ICTS.SKILL--ICT_CDV", + "sdg/SE_GPI_ICTS.SKILL--ICT_CMFL", + "sdg/SE_GPI_ICTS.SKILL--ICT_CPT", + "sdg/SE_GPI_ICTS.SKILL--ICT_PRGM", + "sdg/SE_GPI_ICTS.SKILL--ICT_PRVCY", + "sdg/SE_GPI_ICTS.SKILL--ICT_PST", + "sdg/SE_GPI_ICTS.SKILL--ICT_SCRTY", + "sdg/SE_GPI_ICTS.SKILL--ICT_SFWR", + "sdg/SE_GPI_ICTS.SKILL--ICT_SSHT", + "sdg/SE_GPI_ICTS.SKILL--ICT_TRFF", + "sdg/SE_GPI_ICTS.SKILL--ICT_VRFY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_GPI_PART.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted gender parity index for participation rate in formal and non-formal education and training by Age group" + ], + "memberList": [ + "sdg/SE_GPI_PART.AGE--Y15T24", + "sdg/SE_GPI_PART.AGE--Y15T64", + "sdg/SE_GPI_PART.AGE--Y25T54", + "sdg/SE_GPI_PART.AGE--Y55T64" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_GPI_PTNPRE.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted gender parity index for participation rate in organized learning (one year before the official primary entry age)" + ], + "memberList": [ + "sdg/SE_GPI_PTNPRE" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_GPI_TCAQ.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted gender parity index for the proportion of teachers with the minimum required qualifications by Education level" + ], + "memberList": [ + "sdg/SE_GPI_TCAQ.EDUCATION_LEVEL--AGG_2T3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_GPI_TCAQ.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted gender parity index for the proportion of teachers with the minimum required qualifications by Education level" + ], + "memberList": [ + "sdg/SE_GPI_TCAQ.EDUCATION_LEVEL--ISCED11_02", + "sdg/SE_GPI_TCAQ.EDUCATION_LEVEL--ISCED11_1", + "sdg/SE_GPI_TCAQ.EDUCATION_LEVEL--ISCED11_2", + "sdg/SE_GPI_TCAQ.EDUCATION_LEVEL--ISCED11_3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_IMP_FPOF.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted immigration status parity index for achieving at least a fixed level of proficiency in functional skills (16 to 65 years old) by Type of skill" + ], + "memberList": [ + "sdg/SE_IMP_FPOF.AGE--Y16T65__SKILL--LTRCY", + "sdg/SE_IMP_FPOF.AGE--Y16T65__SKILL--NMRCY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_INF_DSBL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of schools with access to adapted infrastructure and materials for students with disabilities by Education level" + ], + "memberList": [ + "sdg/SE_INF_DSBL.EDUCATION_LEVEL--ISCED11_1", + "sdg/SE_INF_DSBL.EDUCATION_LEVEL--ISCED11_2", + "sdg/SE_INF_DSBL.EDUCATION_LEVEL--ISCED11_3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_LGP_ACHI.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted language test parity index for achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in mathematics) by Education level" + ], + "memberList": [ + "sdg/SE_LGP_ACHI.EDUCATION_LEVEL--ISCED11A_0_G23__SKILL--MATH", + "sdg/SE_LGP_ACHI.EDUCATION_LEVEL--ISCED11_1__SKILL--MATH", + "sdg/SE_LGP_ACHI.EDUCATION_LEVEL--ISCED11_2__SKILL--MATH" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_LGP_ACHI.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted language test parity index for achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in reading) by Education level" + ], + "memberList": [ + "sdg/SE_LGP_ACHI.EDUCATION_LEVEL--ISCED11A_0_G23__SKILL--READ", + "sdg/SE_LGP_ACHI.EDUCATION_LEVEL--ISCED11_1__SKILL--READ", + "sdg/SE_LGP_ACHI.EDUCATION_LEVEL--ISCED11_2__SKILL--READ" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_NAP_ACHI.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted immigration status parity index for achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in mathematics) by Education level" + ], + "memberList": [ + "sdg/SE_NAP_ACHI.EDUCATION_LEVEL--ISCED11A_0_G23__SKILL--MATH", + "sdg/SE_NAP_ACHI.EDUCATION_LEVEL--ISCED11_1__SKILL--MATH", + "sdg/SE_NAP_ACHI.EDUCATION_LEVEL--ISCED11_2__SKILL--MATH" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_NAP_ACHI.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted immigration status parity index for achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in reading) by Education level" + ], + "memberList": [ + "sdg/SE_NAP_ACHI.EDUCATION_LEVEL--ISCED11A_0_G23__SKILL--READ", + "sdg/SE_NAP_ACHI.EDUCATION_LEVEL--ISCED11_1__SKILL--READ", + "sdg/SE_NAP_ACHI.EDUCATION_LEVEL--ISCED11_2__SKILL--READ" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_PRE_PARTN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Participation rate in organized learning (one year before the official primary entry age)" + ], + "memberList": [ + "sdg/SE_PRE_PARTN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_PRE_PARTN.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Participation rate in organized learning (one year before the official primary entry age) by Sex" + ], + "memberList": [ + "sdg/SE_PRE_PARTN.SEX--F", + "sdg/SE_PRE_PARTN.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.EDUCATION_LEVEL--ISCED11_1", + "sdg/SE_TOT_CPLR.EDUCATION_LEVEL--ISCED11_2", + "sdg/SE_TOT_CPLR.EDUCATION_LEVEL--ISCED11_3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Female) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_1", + "sdg/SE_TOT_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_2", + "sdg/SE_TOT_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Male) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_1", + "sdg/SE_TOT_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_2", + "sdg/SE_TOT_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Rural) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1", + "sdg/SE_TOT_CPLR.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2", + "sdg/SE_TOT_CPLR.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Urban) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1", + "sdg/SE_TOT_CPLR.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2", + "sdg/SE_TOT_CPLR.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.006" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Rural", + "Female) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1", + "sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2", + "sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.007" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Rural", + "Male) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1", + "sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2", + "sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.008" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Urban", + "Female) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1", + "sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2", + "sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.009" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Urban", + "Male) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1", + "sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2", + "sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.010" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Fourth quintile) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q4", + "sdg/SE_TOT_CPLR.EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q4", + "sdg/SE_TOT_CPLR.EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q4" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.011" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Highest quintile) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q5", + "sdg/SE_TOT_CPLR.EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q5", + "sdg/SE_TOT_CPLR.EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q5" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.012" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Lowest quintile) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q1", + "sdg/SE_TOT_CPLR.EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q1", + "sdg/SE_TOT_CPLR.EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q1" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.013" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Middle quintile) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q3", + "sdg/SE_TOT_CPLR.EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q3", + "sdg/SE_TOT_CPLR.EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.014" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Second quintile) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q2", + "sdg/SE_TOT_CPLR.EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q2", + "sdg/SE_TOT_CPLR.EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q2" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.015" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Fourth quintile", + "Female) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q4", + "sdg/SE_TOT_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q4", + "sdg/SE_TOT_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q4" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.016" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Fourth quintile", + "Male) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q4", + "sdg/SE_TOT_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q4", + "sdg/SE_TOT_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q4" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.017" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Highest quintile", + "Female) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q5", + "sdg/SE_TOT_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q5", + "sdg/SE_TOT_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q5" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.018" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Highest quintile", + "Male) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q5", + "sdg/SE_TOT_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q5", + "sdg/SE_TOT_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q5" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.019" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Lowest quintile", + "Female) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q1", + "sdg/SE_TOT_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q1", + "sdg/SE_TOT_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q1" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.020" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Lowest quintile", + "Male) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q1", + "sdg/SE_TOT_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q1", + "sdg/SE_TOT_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q1" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.021" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Middle quintile", + "Female) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q3", + "sdg/SE_TOT_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q3", + "sdg/SE_TOT_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.022" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Middle quintile", + "Male) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q3", + "sdg/SE_TOT_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q3", + "sdg/SE_TOT_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.023" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Second quintile", + "Female) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q2", + "sdg/SE_TOT_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q2", + "sdg/SE_TOT_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q2" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.024" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Second quintile", + "Male) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q2", + "sdg/SE_TOT_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q2", + "sdg/SE_TOT_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q2" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.025" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Fourth quintile", + "Rural) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q4", + "sdg/SE_TOT_CPLR.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q4", + "sdg/SE_TOT_CPLR.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q4" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.026" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Fourth quintile", + "Urban) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q4", + "sdg/SE_TOT_CPLR.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q4", + "sdg/SE_TOT_CPLR.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q4" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.027" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Highest quintile", + "Rural) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q5", + "sdg/SE_TOT_CPLR.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q5", + "sdg/SE_TOT_CPLR.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q5" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.028" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Highest quintile", + "Urban) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q5", + "sdg/SE_TOT_CPLR.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q5", + "sdg/SE_TOT_CPLR.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q5" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.029" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Lowest quintile", + "Rural) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q1", + "sdg/SE_TOT_CPLR.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q1", + "sdg/SE_TOT_CPLR.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q1" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.030" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Lowest quintile", + "Urban) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q1", + "sdg/SE_TOT_CPLR.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q1", + "sdg/SE_TOT_CPLR.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q1" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.031" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Middle quintile", + "Rural) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q3", + "sdg/SE_TOT_CPLR.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q3", + "sdg/SE_TOT_CPLR.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.032" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Middle quintile", + "Urban) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q3", + "sdg/SE_TOT_CPLR.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q3", + "sdg/SE_TOT_CPLR.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.033" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Second quintile", + "Rural) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q2", + "sdg/SE_TOT_CPLR.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q2", + "sdg/SE_TOT_CPLR.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q2" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.034" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Second quintile", + "Urban) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q2", + "sdg/SE_TOT_CPLR.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q2", + "sdg/SE_TOT_CPLR.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q2" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.035" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Fourth quintile", + "Rural", + "Female) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q4", + "sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q4", + "sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q4" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.036" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Fourth quintile", + "Rural", + "Male) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q4", + "sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q4", + "sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q4" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.037" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Fourth quintile", + "Urban", + "Female) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q4", + "sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q4", + "sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q4" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.038" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Fourth quintile", + "Urban", + "Male) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q4", + "sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q4", + "sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q4" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.039" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Highest quintile", + "Rural", + "Female) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q5", + "sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q5", + "sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q5" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.040" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Highest quintile", + "Rural", + "Male) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q5", + "sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q5", + "sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q5" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.041" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Highest quintile", + "Urban", + "Female) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q5", + "sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q5", + "sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q5" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.042" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Highest quintile", + "Urban", + "Male) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q5", + "sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q5", + "sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q5" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.043" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Lowest quintile", + "Rural", + "Female) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q1", + "sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q1", + "sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q1" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.044" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Lowest quintile", + "Rural", + "Male) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q1", + "sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q1", + "sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q1" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.045" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Lowest quintile", + "Urban", + "Female) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q1", + "sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q1", + "sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q1" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.046" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Lowest quintile", + "Urban", + "Male) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q1", + "sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q1", + "sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q1" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.047" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Middle quintile", + "Rural", + "Female) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q3", + "sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q3", + "sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.048" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Middle quintile", + "Rural", + "Male) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q3", + "sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q3", + "sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.049" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Middle quintile", + "Urban", + "Female) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q3", + "sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q3", + "sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.050" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Middle quintile", + "Urban", + "Male) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q3", + "sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q3", + "sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.051" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Second quintile", + "Rural", + "Female) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q2", + "sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q2", + "sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q2" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.052" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Second quintile", + "Rural", + "Male) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q2", + "sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q2", + "sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q2" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.053" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Second quintile", + "Urban", + "Female) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q2", + "sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q2", + "sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q2" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_CPLR.054" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "School completion rate (Second quintile", + "Urban", + "Male) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q2", + "sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q2", + "sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q2" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_GPI.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted gender parity index for achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in mathematics) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_GPI.EDUCATION_LEVEL--ISCED11A_0_G23__SKILL--MATH", + "sdg/SE_TOT_GPI.EDUCATION_LEVEL--ISCED11_1__SKILL--MATH", + "sdg/SE_TOT_GPI.EDUCATION_LEVEL--ISCED11_2__SKILL--MATH" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_GPI.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted gender parity index for achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in reading) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_GPI.EDUCATION_LEVEL--ISCED11A_0_G23__SKILL--READ", + "sdg/SE_TOT_GPI.EDUCATION_LEVEL--ISCED11_1__SKILL--READ", + "sdg/SE_TOT_GPI.EDUCATION_LEVEL--ISCED11_2__SKILL--READ" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_GPI_FS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted gender parity index for achieving at least a fixed level of proficiency in functional skills (16 to 65 years old) by Type of skill" + ], + "memberList": [ + "sdg/SE_TOT_GPI_FS.AGE--Y16T65__SKILL--LTRCY", + "sdg/SE_TOT_GPI_FS.AGE--Y16T65__SKILL--NMRCY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_PRFL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of children and young people achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in mathematics) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_PRFL.EDUCATION_LEVEL--ISCED11A_0_G23__SKILL--MATH", + "sdg/SE_TOT_PRFL.EDUCATION_LEVEL--ISCED11_1__SKILL--MATH", + "sdg/SE_TOT_PRFL.EDUCATION_LEVEL--ISCED11_2__SKILL--MATH" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_PRFL.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of children and young people achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in reading) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_PRFL.EDUCATION_LEVEL--ISCED11A_0_G23__SKILL--READ", + "sdg/SE_TOT_PRFL.EDUCATION_LEVEL--ISCED11_1__SKILL--READ", + "sdg/SE_TOT_PRFL.EDUCATION_LEVEL--ISCED11_2__SKILL--READ" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_PRFL.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of children and young people achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in mathematics", + "Female) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_PRFL.SEX--F__EDUCATION_LEVEL--ISCED11A_0_G23__SKILL--MATH", + "sdg/SE_TOT_PRFL.SEX--F__EDUCATION_LEVEL--ISCED11_1__SKILL--MATH", + "sdg/SE_TOT_PRFL.SEX--F__EDUCATION_LEVEL--ISCED11_2__SKILL--MATH" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_PRFL.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of children and young people achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in mathematics", + "Male) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_PRFL.SEX--M__EDUCATION_LEVEL--ISCED11A_0_G23__SKILL--MATH", + "sdg/SE_TOT_PRFL.SEX--M__EDUCATION_LEVEL--ISCED11_1__SKILL--MATH", + "sdg/SE_TOT_PRFL.SEX--M__EDUCATION_LEVEL--ISCED11_2__SKILL--MATH" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_PRFL.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of children and young people achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in reading", + "Female) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_PRFL.SEX--F__EDUCATION_LEVEL--ISCED11A_0_G23__SKILL--READ", + "sdg/SE_TOT_PRFL.SEX--F__EDUCATION_LEVEL--ISCED11_1__SKILL--READ", + "sdg/SE_TOT_PRFL.SEX--F__EDUCATION_LEVEL--ISCED11_2__SKILL--READ" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_PRFL.006" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of children and young people achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in reading", + "Male) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_PRFL.SEX--M__EDUCATION_LEVEL--ISCED11A_0_G23__SKILL--READ", + "sdg/SE_TOT_PRFL.SEX--M__EDUCATION_LEVEL--ISCED11_1__SKILL--READ", + "sdg/SE_TOT_PRFL.SEX--M__EDUCATION_LEVEL--ISCED11_2__SKILL--READ" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_RUPI.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted rural to urban parity index for achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in mathematics) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_RUPI.EDUCATION_LEVEL--ISCED11A_0_G23__SKILL--MATH", + "sdg/SE_TOT_RUPI.EDUCATION_LEVEL--ISCED11_1__SKILL--MATH", + "sdg/SE_TOT_RUPI.EDUCATION_LEVEL--ISCED11_2__SKILL--MATH" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_RUPI.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted rural to urban parity index for achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in reading) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_RUPI.EDUCATION_LEVEL--ISCED11A_0_G23__SKILL--READ", + "sdg/SE_TOT_RUPI.EDUCATION_LEVEL--ISCED11_1__SKILL--READ", + "sdg/SE_TOT_RUPI.EDUCATION_LEVEL--ISCED11_2__SKILL--READ" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_SESPI.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted low to high socio-economic parity index for achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in mathematics) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_SESPI.EDUCATION_LEVEL--ISCED11A_0_G23__SKILL--MATH", + "sdg/SE_TOT_SESPI.EDUCATION_LEVEL--ISCED11_1__SKILL--MATH", + "sdg/SE_TOT_SESPI.EDUCATION_LEVEL--ISCED11_2__SKILL--MATH" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_SESPI.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted low to high socio-economic parity index for achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in reading) by Education level" + ], + "memberList": [ + "sdg/SE_TOT_SESPI.EDUCATION_LEVEL--ISCED11A_0_G23__SKILL--READ", + "sdg/SE_TOT_SESPI.EDUCATION_LEVEL--ISCED11_1__SKILL--READ", + "sdg/SE_TOT_SESPI.EDUCATION_LEVEL--ISCED11_2__SKILL--READ" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TOT_SESPI_FS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adjusted low to high socio-economic parity status index for achieving at least a fixed level of proficiency in functional skills (16 to 65 years old) by Type of skill" + ], + "memberList": [ + "sdg/SE_TOT_SESPI_FS.AGE--Y16T65__SKILL--LTRCY", + "sdg/SE_TOT_SESPI_FS.AGE--Y16T65__SKILL--NMRCY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TRA_GRDL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of teachers with the minimum required qualifications (Pre-primary education) by Sex" + ], + "memberList": [ + "sdg/SE_TRA_GRDL.EDUCATION_LEVEL--ISCED11_02", + "sdg/SE_TRA_GRDL.SEX--F__EDUCATION_LEVEL--ISCED11_02", + "sdg/SE_TRA_GRDL.SEX--M__EDUCATION_LEVEL--ISCED11_02" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TRA_GRDL.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of teachers with the minimum required qualifications (Primary education) by Sex" + ], + "memberList": [ + "sdg/SE_TRA_GRDL.EDUCATION_LEVEL--ISCED11_1", + "sdg/SE_TRA_GRDL.SEX--F__EDUCATION_LEVEL--ISCED11_1", + "sdg/SE_TRA_GRDL.SEX--M__EDUCATION_LEVEL--ISCED11_1" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TRA_GRDL.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of teachers with the minimum required qualifications (Secondary education) by Sex" + ], + "memberList": [ + "sdg/SE_TRA_GRDL.EDUCATION_LEVEL--AGG_2T3", + "sdg/SE_TRA_GRDL.SEX--F__EDUCATION_LEVEL--AGG_2T3", + "sdg/SE_TRA_GRDL.SEX--M__EDUCATION_LEVEL--AGG_2T3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TRA_GRDL.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of teachers with the minimum required qualifications (Lower secondary education) by Sex" + ], + "memberList": [ + "sdg/SE_TRA_GRDL.EDUCATION_LEVEL--ISCED11_2", + "sdg/SE_TRA_GRDL.SEX--F__EDUCATION_LEVEL--ISCED11_2", + "sdg/SE_TRA_GRDL.SEX--M__EDUCATION_LEVEL--ISCED11_2" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSE_TRA_GRDL.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of teachers with the minimum required qualifications (Upper secondary education) by Sex" + ], + "memberList": [ + "sdg/SE_TRA_GRDL.EDUCATION_LEVEL--ISCED11_3", + "sdg/SE_TRA_GRDL.SEX--F__EDUCATION_LEVEL--ISCED11_3", + "sdg/SE_TRA_GRDL.SEX--M__EDUCATION_LEVEL--ISCED11_3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_CPA_MIGRP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of countries with migration policies to facilitate orderly", + "safe", + "regular and responsible migration and mobility of people" + ], + "memberList": [ + "sdg/SG_CPA_MIGRP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_CPA_MIGRP.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of countries with migration policies to facilitate orderly", + "safe", + "regular and responsible migration and mobility of people by Policy domain" + ], + "memberList": [ + "sdg/SG_CPA_MIGRP.POLICY_DOMAINS--PD_1", + "sdg/SG_CPA_MIGRP.POLICY_DOMAINS--PD_2", + "sdg/SG_CPA_MIGRP.POLICY_DOMAINS--PD_3", + "sdg/SG_CPA_MIGRP.POLICY_DOMAINS--PD_4", + "sdg/SG_CPA_MIGRP.POLICY_DOMAINS--PD_5", + "sdg/SG_CPA_MIGRP.POLICY_DOMAINS--PD_6" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_CPA_MIGRS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries with migration policies to facilitate orderly", + "safe", + "regular and responsible migration and mobility of people" + ], + "memberList": [ + "sdg/SG_CPA_MIGRS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_CPA_MIGRS.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries with migration policies to facilitate orderly", + "safe", + "regular and responsible migration and mobility of people by Policy domain" + ], + "memberList": [ + "sdg/SG_CPA_MIGRS.POLICY_DOMAINS--PD_1", + "sdg/SG_CPA_MIGRS.POLICY_DOMAINS--PD_2", + "sdg/SG_CPA_MIGRS.POLICY_DOMAINS--PD_3", + "sdg/SG_CPA_MIGRS.POLICY_DOMAINS--PD_4", + "sdg/SG_CPA_MIGRS.POLICY_DOMAINS--PD_5", + "sdg/SG_CPA_MIGRS.POLICY_DOMAINS--PD_6" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_CPA_OFDI.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of countries with an outward investment promotion scheme which can benefit developing countries", + "including LDCs" + ], + "memberList": [ + "sdg/SG_CPA_OFDI" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_CPA_OFDI.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of countries with an outward investment promotion scheme which can benefit developing countries", + "including LDCs by OFDI Scheme" + ], + "memberList": [ + "sdg/SG_CPA_OFDI.OFDI_SCHEME--DC_PARTICIPATION", + "sdg/SG_CPA_OFDI.OFDI_SCHEME--FIS_FIN_SUPPORT", + "sdg/SG_CPA_OFDI.OFDI_SCHEME--INV_FACILITATION", + "sdg/SG_CPA_OFDI.OFDI_SCHEME--INV_GUARANTEES" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_CPA_SDEVP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Mechanisms in place to enhance policy coherence for sustainable development" + ], + "memberList": [ + "sdg/SG_CPA_SDEVP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_JDC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of positions held by persons under 45 years of age in the judiciary", + "compared to national distributions" + ], + "memberList": [ + "sdg/SG_DMK_JDC.AGE--Y0T44__OCCUPATION--ISCO08_2612", + "sdg/SG_DMK_JDC.AGE--Y0T44__OCCUPATION--ISCO08_2619R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_JDC.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of positions held by persons with disability in the judiciary", + "compared to national distributions" + ], + "memberList": [ + "sdg/SG_DMK_JDC.OCCUPATION--ISCO08_2612__DISABILITY_STATUS--PD", + "sdg/SG_DMK_JDC.OCCUPATION--ISCO08_2619R__DISABILITY_STATUS--PD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_JDC.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of positions held by persons of Afro descent in the judiciary", + "compared to national distributions" + ], + "memberList": [ + "sdg/SG_DMK_JDC.OCCUPATION--ISCO08_2612__POPULATION_GROUP--URY_0", + "sdg/SG_DMK_JDC.OCCUPATION--ISCO08_2619R__POPULATION_GROUP--URY_0" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_JDC.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of positions held by Arabs in the judiciary", + "compared to national distributions" + ], + "memberList": [ + "sdg/SG_DMK_JDC.OCCUPATION--ISCO08_2612__POPULATION_GROUP--ISR_0", + "sdg/SG_DMK_JDC.OCCUPATION--ISCO08_2619R__POPULATION_GROUP--ISR_0" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_JDC.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of positions held by immigrants", + "persons with Norwegian-born to immigrant parents", + "and others in the judiciary", + "compared to national distributions" + ], + "memberList": [ + "sdg/SG_DMK_JDC.OCCUPATION--ISCO08_2612__POPULATION_GROUP--NOR_3", + "sdg/SG_DMK_JDC.OCCUPATION--ISCO08_2619R__POPULATION_GROUP--NOR_3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_JDC.006" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of positions held by immigrants and descendants from non-western countries in the judiciary", + "compared to national distributions" + ], + "memberList": [ + "sdg/SG_DMK_JDC.OCCUPATION--ISCO08_2612__POPULATION_GROUP--DNK_2", + "sdg/SG_DMK_JDC.OCCUPATION--ISCO08_2619R__POPULATION_GROUP--DNK_2" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_JDC.007" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of positions held by immigrants and descendants from western countries in the judiciary", + "compared to national distributions" + ], + "memberList": [ + "sdg/SG_DMK_JDC.OCCUPATION--ISCO08_2612__POPULATION_GROUP--DNK_3", + "sdg/SG_DMK_JDC.OCCUPATION--ISCO08_2619R__POPULATION_GROUP--DNK_3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_JDC.008" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of positions held by Norweigians in the judiciary", + "compared to national distributions" + ], + "memberList": [ + "sdg/SG_DMK_JDC.OCCUPATION--ISCO08_2612__POPULATION_GROUP--NOR_0", + "sdg/SG_DMK_JDC.OCCUPATION--ISCO08_2619R__POPULATION_GROUP--NOR_0" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_JDC.009" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of positions held by persons of Danish origin in the judiciary", + "compared to national distributions" + ], + "memberList": [ + "sdg/SG_DMK_JDC.OCCUPATION--ISCO08_2612__POPULATION_GROUP--DNK_1", + "sdg/SG_DMK_JDC.OCCUPATION--ISCO08_2619R__POPULATION_GROUP--DNK_1" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_JDC.010" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportions of positions in the judiciary compared to national distributions (Unspecified) by Professionals (ISCO08 - 2)" + ], + "memberList": [ + "sdg/SG_DMK_JDC.OCCUPATION--ISCO08_2612__POPULATION_GROUP--LSO_0", + "sdg/SG_DMK_JDC.OCCUPATION--ISCO08_2619R__POPULATION_GROUP--LSO_0" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_JDC.011" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of positions held by women in the judiciary", + "compared to national distributions" + ], + "memberList": [ + "sdg/SG_DMK_JDC.SEX--F__OCCUPATION--ISCO08_2612", + "sdg/SG_DMK_JDC.SEX--F__OCCUPATION--ISCO08_2619R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_JDC_CNS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportions of positions held by persons under 45 years of age in the Constitutional Court" + ], + "memberList": [ + "sdg/SG_DMK_JDC_CNS.AGE--Y0T44__OCCUPATION--ISCO08_2612", + "sdg/SG_DMK_JDC_CNS.AGE--Y0T44__OCCUPATION--ISCO08_2619R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_JDC_CNS.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportions of positions held by persons with disability in the Constitutional Court" + ], + "memberList": [ + "sdg/SG_DMK_JDC_CNS.OCCUPATION--ISCO08_2612__DISABILITY_STATUS--PD", + "sdg/SG_DMK_JDC_CNS.OCCUPATION--ISCO08_2619R__DISABILITY_STATUS--PD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_JDC_CNS.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportions of positions held by Arabs in the Constitutional Court" + ], + "memberList": [ + "sdg/SG_DMK_JDC_CNS.OCCUPATION--ISCO08_2612__POPULATION_GROUP--ISR_0" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_JDC_CNS.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportions of positions held by women in the Constitutional Court" + ], + "memberList": [ + "sdg/SG_DMK_JDC_CNS.SEX--F__OCCUPATION--ISCO08_2612", + "sdg/SG_DMK_JDC_CNS.SEX--F__OCCUPATION--ISCO08_2619R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_JDC_HGR.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportions of positions held by persons under 45 years of age in the Higher Courts" + ], + "memberList": [ + "sdg/SG_DMK_JDC_HGR.AGE--Y0T44__OCCUPATION--ISCO08_2612", + "sdg/SG_DMK_JDC_HGR.AGE--Y0T44__OCCUPATION--ISCO08_2619R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_JDC_HGR.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportions of positions held by persons with disability in the Higher Courts" + ], + "memberList": [ + "sdg/SG_DMK_JDC_HGR.OCCUPATION--ISCO08_2612__DISABILITY_STATUS--PD", + "sdg/SG_DMK_JDC_HGR.OCCUPATION--ISCO08_2619R__DISABILITY_STATUS--PD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_JDC_HGR.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportions of positions held by Arabs in the Higher Courts" + ], + "memberList": [ + "sdg/SG_DMK_JDC_HGR.OCCUPATION--ISCO08_2612__POPULATION_GROUP--ISR_0" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_JDC_HGR.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportions of positions held by unspecified minority groups in the Higher Courts" + ], + "memberList": [ + "sdg/SG_DMK_JDC_HGR.OCCUPATION--ISCO08_2612__POPULATION_GROUP--LSO_0", + "sdg/SG_DMK_JDC_HGR.OCCUPATION--ISCO08_2619R__POPULATION_GROUP--LSO_0" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_JDC_HGR.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportions of positions held by women in the Higher Courts" + ], + "memberList": [ + "sdg/SG_DMK_JDC_HGR.SEX--F__OCCUPATION--ISCO08_2612", + "sdg/SG_DMK_JDC_HGR.SEX--F__OCCUPATION--ISCO08_2619R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_JDC_LWR.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportions of positions held by persons under 45 years of age in the Lower Courts" + ], + "memberList": [ + "sdg/SG_DMK_JDC_LWR.AGE--Y0T44__OCCUPATION--ISCO08_2612", + "sdg/SG_DMK_JDC_LWR.AGE--Y0T44__OCCUPATION--ISCO08_2619R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_JDC_LWR.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportions of positions held by persons with disability in the Lower Courts" + ], + "memberList": [ + "sdg/SG_DMK_JDC_LWR.OCCUPATION--ISCO08_2612__DISABILITY_STATUS--PD", + "sdg/SG_DMK_JDC_LWR.OCCUPATION--ISCO08_2619R__DISABILITY_STATUS--PD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_JDC_LWR.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportions of positions held by Arabs in the Lower Courts" + ], + "memberList": [ + "sdg/SG_DMK_JDC_LWR.OCCUPATION--ISCO08_2612__POPULATION_GROUP--ISR_0", + "sdg/SG_DMK_JDC_LWR.OCCUPATION--ISCO08_2619R__POPULATION_GROUP--ISR_0" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_JDC_LWR.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportions of positions held by unspecified minority groups in the Lower Courts" + ], + "memberList": [ + "sdg/SG_DMK_JDC_LWR.OCCUPATION--ISCO08_2612__POPULATION_GROUP--LSO_0" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_JDC_LWR.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportions of positions held by women in the Lower Courts" + ], + "memberList": [ + "sdg/SG_DMK_JDC_LWR.SEX--F__OCCUPATION--ISCO08_2612", + "sdg/SG_DMK_JDC_LWR.SEX--F__OCCUPATION--ISCO08_2619R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_PARLCC_JC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of chairs of permanent parliamentary committees held by women 46 years old and over: Joint Committees" + ], + "memberList": [ + "sdg/SG_DMK_PARLCC_JC.AGE--Y_GE46__SEX--F__PARLIAMENTARY_COMMITTEES--FAFF", + "sdg/SG_DMK_PARLCC_JC.AGE--Y_GE46__SEX--F__PARLIAMENTARY_COMMITTEES--FIN", + "sdg/SG_DMK_PARLCC_JC.AGE--Y_GE46__SEX--F__PARLIAMENTARY_COMMITTEES--GEQ", + "sdg/SG_DMK_PARLCC_JC.AGE--Y_GE46__SEX--F__PARLIAMENTARY_COMMITTEES--HR", + "sdg/SG_DMK_PARLCC_JC.AGE--Y_GE46__SEX--F__PARLIAMENTARY_COMMITTEES--HR_GEQ" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_PARLCC_JC.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of chairs of permanent parliamentary committees held by men 46 years old and over: Joint Committees" + ], + "memberList": [ + "sdg/SG_DMK_PARLCC_JC.AGE--Y_GE46__SEX--M__PARLIAMENTARY_COMMITTEES--DEF", + "sdg/SG_DMK_PARLCC_JC.AGE--Y_GE46__SEX--M__PARLIAMENTARY_COMMITTEES--FAFF_DEF", + "sdg/SG_DMK_PARLCC_JC.AGE--Y_GE46__SEX--M__PARLIAMENTARY_COMMITTEES--FIN", + "sdg/SG_DMK_PARLCC_JC.AGE--Y_GE46__SEX--M__PARLIAMENTARY_COMMITTEES--GEQ", + "sdg/SG_DMK_PARLCC_JC.AGE--Y_GE46__SEX--M__PARLIAMENTARY_COMMITTEES--HR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_PARLCC_JC.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of chairs of permanent parliamentary committees held by women of unknown age: Joint Committees" + ], + "memberList": [ + "sdg/SG_DMK_PARLCC_JC.AGE--_U__SEX--F__PARLIAMENTARY_COMMITTEES--FAFF", + "sdg/SG_DMK_PARLCC_JC.AGE--_U__SEX--F__PARLIAMENTARY_COMMITTEES--FIN", + "sdg/SG_DMK_PARLCC_JC.AGE--_U__SEX--F__PARLIAMENTARY_COMMITTEES--GEQ", + "sdg/SG_DMK_PARLCC_JC.AGE--_U__SEX--F__PARLIAMENTARY_COMMITTEES--HR_GEQ" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_PARLCC_JC.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of chairs of permanent parliamentary committees held by men of unknown age: Joint Committees" + ], + "memberList": [ + "sdg/SG_DMK_PARLCC_JC.AGE--_U__SEX--M__PARLIAMENTARY_COMMITTEES--DEF", + "sdg/SG_DMK_PARLCC_JC.AGE--_U__SEX--M__PARLIAMENTARY_COMMITTEES--HR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_PARLCC_JC.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of chairs of permanent parliamentary committees held by women 46 years old and over: Joint Committees" + ], + "memberList": [ + "sdg/SG_DMK_PARLCC_JC.AGE--Y0T45__SEX--F__PARLIAMENTARY_COMMITTEES--GEQ", + "sdg/SG_DMK_PARLCC_JC.AGE--Y0T45__SEX--F__PARLIAMENTARY_COMMITTEES--HR_GEQ" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_PARLCC_JC.006" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of chairs of permanent parliamentary committees held by men 46 years old and over: Joint Committees" + ], + "memberList": [ + "sdg/SG_DMK_PARLCC_JC.AGE--Y0T45__SEX--M__PARLIAMENTARY_COMMITTEES--GEQ", + "sdg/SG_DMK_PARLCC_JC.AGE--Y0T45__SEX--M__PARLIAMENTARY_COMMITTEES--HR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_PARLCC_LC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of chairs of permanent parliamentary committees held by women 46 years old and over: Lower Chamber or Unicameral Committees" + ], + "memberList": [ + "sdg/SG_DMK_PARLCC_LC.AGE--Y_GE46__SEX--F__PARLIAMENTARY_COMMITTEES--DEF", + "sdg/SG_DMK_PARLCC_LC.AGE--Y_GE46__SEX--F__PARLIAMENTARY_COMMITTEES--FAFF", + "sdg/SG_DMK_PARLCC_LC.AGE--Y_GE46__SEX--F__PARLIAMENTARY_COMMITTEES--FAFF_DEF", + "sdg/SG_DMK_PARLCC_LC.AGE--Y_GE46__SEX--F__PARLIAMENTARY_COMMITTEES--FIN", + "sdg/SG_DMK_PARLCC_LC.AGE--Y_GE46__SEX--F__PARLIAMENTARY_COMMITTEES--GEQ", + "sdg/SG_DMK_PARLCC_LC.AGE--Y_GE46__SEX--F__PARLIAMENTARY_COMMITTEES--HR", + "sdg/SG_DMK_PARLCC_LC.AGE--Y_GE46__SEX--F__PARLIAMENTARY_COMMITTEES--HR_GEQ" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_PARLCC_LC.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of chairs of permanent parliamentary committees held by men 46 years old and over: Lower Chamber or Unicameral Committees" + ], + "memberList": [ + "sdg/SG_DMK_PARLCC_LC.AGE--Y_GE46__SEX--M__PARLIAMENTARY_COMMITTEES--DEF", + "sdg/SG_DMK_PARLCC_LC.AGE--Y_GE46__SEX--M__PARLIAMENTARY_COMMITTEES--FAFF", + "sdg/SG_DMK_PARLCC_LC.AGE--Y_GE46__SEX--M__PARLIAMENTARY_COMMITTEES--FAFF_DEF", + "sdg/SG_DMK_PARLCC_LC.AGE--Y_GE46__SEX--M__PARLIAMENTARY_COMMITTEES--FIN", + "sdg/SG_DMK_PARLCC_LC.AGE--Y_GE46__SEX--M__PARLIAMENTARY_COMMITTEES--GEQ", + "sdg/SG_DMK_PARLCC_LC.AGE--Y_GE46__SEX--M__PARLIAMENTARY_COMMITTEES--HR", + "sdg/SG_DMK_PARLCC_LC.AGE--Y_GE46__SEX--M__PARLIAMENTARY_COMMITTEES--HR_GEQ" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_PARLCC_LC.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of chairs of permanent parliamentary committees held by persons 46 yeras old and whose sex information is unknown: Lower Chamber or Unicameral Committees" + ], + "memberList": [ + "sdg/SG_DMK_PARLCC_LC.AGE--Y_GE46__SEX--_U__PARLIAMENTARY_COMMITTEES--GEQ" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_PARLCC_LC.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of chairs of permanent parliamentary committees held by persons whose age and sex information is not available: Lower Chamber or Unicameral Committees" + ], + "memberList": [ + "sdg/SG_DMK_PARLCC_LC.AGE--_X__SEX--_X__PARLIAMENTARY_COMMITTEES--DEF", + "sdg/SG_DMK_PARLCC_LC.AGE--_X__SEX--_X__PARLIAMENTARY_COMMITTEES--FAFF", + "sdg/SG_DMK_PARLCC_LC.AGE--_X__SEX--_X__PARLIAMENTARY_COMMITTEES--FIN", + "sdg/SG_DMK_PARLCC_LC.AGE--_X__SEX--_X__PARLIAMENTARY_COMMITTEES--GEQ", + "sdg/SG_DMK_PARLCC_LC.AGE--_X__SEX--_X__PARLIAMENTARY_COMMITTEES--HR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_PARLCC_LC.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of chairs of permanent parliamentary committees held by women whose age information is unknown: Lower Chamber or Unicameral Committees" + ], + "memberList": [ + "sdg/SG_DMK_PARLCC_LC.AGE--_U__SEX--F__PARLIAMENTARY_COMMITTEES--DEF", + "sdg/SG_DMK_PARLCC_LC.AGE--_U__SEX--F__PARLIAMENTARY_COMMITTEES--FAFF", + "sdg/SG_DMK_PARLCC_LC.AGE--_U__SEX--F__PARLIAMENTARY_COMMITTEES--FAFF_DEF", + "sdg/SG_DMK_PARLCC_LC.AGE--_U__SEX--F__PARLIAMENTARY_COMMITTEES--FIN", + "sdg/SG_DMK_PARLCC_LC.AGE--_U__SEX--F__PARLIAMENTARY_COMMITTEES--GEQ", + "sdg/SG_DMK_PARLCC_LC.AGE--_U__SEX--F__PARLIAMENTARY_COMMITTEES--HR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_PARLCC_LC.006" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of chairs of permanent parliamentary committees held by men whose age information is unknown: Lower Chamber or Unicameral Committees" + ], + "memberList": [ + "sdg/SG_DMK_PARLCC_LC.AGE--_U__SEX--M__PARLIAMENTARY_COMMITTEES--DEF", + "sdg/SG_DMK_PARLCC_LC.AGE--_U__SEX--M__PARLIAMENTARY_COMMITTEES--FAFF", + "sdg/SG_DMK_PARLCC_LC.AGE--_U__SEX--M__PARLIAMENTARY_COMMITTEES--FAFF_DEF", + "sdg/SG_DMK_PARLCC_LC.AGE--_U__SEX--M__PARLIAMENTARY_COMMITTEES--FAFF_DEF_HR", + "sdg/SG_DMK_PARLCC_LC.AGE--_U__SEX--M__PARLIAMENTARY_COMMITTEES--FIN", + "sdg/SG_DMK_PARLCC_LC.AGE--_U__SEX--M__PARLIAMENTARY_COMMITTEES--GEQ", + "sdg/SG_DMK_PARLCC_LC.AGE--_U__SEX--M__PARLIAMENTARY_COMMITTEES--HR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_PARLCC_LC.007" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of chairs of permanent parliamentary committees held by persons whose age and sex information is not available: Lower Chamber or Unicameral Committees" + ], + "memberList": [ + "sdg/SG_DMK_PARLCC_LC.AGE--_U__SEX--_U__PARLIAMENTARY_COMMITTEES--DEF", + "sdg/SG_DMK_PARLCC_LC.AGE--_U__SEX--_U__PARLIAMENTARY_COMMITTEES--FAFF", + "sdg/SG_DMK_PARLCC_LC.AGE--_U__SEX--_U__PARLIAMENTARY_COMMITTEES--FIN", + "sdg/SG_DMK_PARLCC_LC.AGE--_U__SEX--_U__PARLIAMENTARY_COMMITTEES--GEQ", + "sdg/SG_DMK_PARLCC_LC.AGE--_U__SEX--_U__PARLIAMENTARY_COMMITTEES--HR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_PARLCC_LC.008" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of chairs of permanent parliamentary committees held by women under 46 years old: Lower Chamber or Unicameral Committees" + ], + "memberList": [ + "sdg/SG_DMK_PARLCC_LC.AGE--Y0T45__SEX--F__PARLIAMENTARY_COMMITTEES--DEF", + "sdg/SG_DMK_PARLCC_LC.AGE--Y0T45__SEX--F__PARLIAMENTARY_COMMITTEES--FAFF", + "sdg/SG_DMK_PARLCC_LC.AGE--Y0T45__SEX--F__PARLIAMENTARY_COMMITTEES--FAFF_DEF", + "sdg/SG_DMK_PARLCC_LC.AGE--Y0T45__SEX--F__PARLIAMENTARY_COMMITTEES--FIN", + "sdg/SG_DMK_PARLCC_LC.AGE--Y0T45__SEX--F__PARLIAMENTARY_COMMITTEES--GEQ", + "sdg/SG_DMK_PARLCC_LC.AGE--Y0T45__SEX--F__PARLIAMENTARY_COMMITTEES--HR", + "sdg/SG_DMK_PARLCC_LC.AGE--Y0T45__SEX--F__PARLIAMENTARY_COMMITTEES--HR_GEQ" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_PARLCC_LC.009" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of chairs of permanent parliamentary committees held by men under 46 years old: Lower Chamber or Unicameral Committees" + ], + "memberList": [ + "sdg/SG_DMK_PARLCC_LC.AGE--Y0T45__SEX--M__PARLIAMENTARY_COMMITTEES--DEF", + "sdg/SG_DMK_PARLCC_LC.AGE--Y0T45__SEX--M__PARLIAMENTARY_COMMITTEES--FAFF", + "sdg/SG_DMK_PARLCC_LC.AGE--Y0T45__SEX--M__PARLIAMENTARY_COMMITTEES--FAFF_DEF", + "sdg/SG_DMK_PARLCC_LC.AGE--Y0T45__SEX--M__PARLIAMENTARY_COMMITTEES--FAFF_DEF_FIN", + "sdg/SG_DMK_PARLCC_LC.AGE--Y0T45__SEX--M__PARLIAMENTARY_COMMITTEES--FIN", + "sdg/SG_DMK_PARLCC_LC.AGE--Y0T45__SEX--M__PARLIAMENTARY_COMMITTEES--GEQ", + "sdg/SG_DMK_PARLCC_LC.AGE--Y0T45__SEX--M__PARLIAMENTARY_COMMITTEES--HR", + "sdg/SG_DMK_PARLCC_LC.AGE--Y0T45__SEX--M__PARLIAMENTARY_COMMITTEES--HR_GEQ" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_PARLCC_UC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of chairs of permanent parliamentary committees held by women years old and over: Upper Chamber Committees" + ], + "memberList": [ + "sdg/SG_DMK_PARLCC_UC.AGE--Y_GE46__SEX--F__PARLIAMENTARY_COMMITTEES--DEF", + "sdg/SG_DMK_PARLCC_UC.AGE--Y_GE46__SEX--F__PARLIAMENTARY_COMMITTEES--FAFF", + "sdg/SG_DMK_PARLCC_UC.AGE--Y_GE46__SEX--F__PARLIAMENTARY_COMMITTEES--FAFF_DEF", + "sdg/SG_DMK_PARLCC_UC.AGE--Y_GE46__SEX--F__PARLIAMENTARY_COMMITTEES--FAFF_DEF_FIN", + "sdg/SG_DMK_PARLCC_UC.AGE--Y_GE46__SEX--F__PARLIAMENTARY_COMMITTEES--FAFF_DEF_HR", + "sdg/SG_DMK_PARLCC_UC.AGE--Y_GE46__SEX--F__PARLIAMENTARY_COMMITTEES--FAFF_HR", + "sdg/SG_DMK_PARLCC_UC.AGE--Y_GE46__SEX--F__PARLIAMENTARY_COMMITTEES--FIN", + "sdg/SG_DMK_PARLCC_UC.AGE--Y_GE46__SEX--F__PARLIAMENTARY_COMMITTEES--GEQ", + "sdg/SG_DMK_PARLCC_UC.AGE--Y_GE46__SEX--F__PARLIAMENTARY_COMMITTEES--HR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_PARLCC_UC.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of chairs of permanent parliamentary committees held by men 46 years old and over: Upper Chamber Committees" + ], + "memberList": [ + "sdg/SG_DMK_PARLCC_UC.AGE--Y_GE46__SEX--M__PARLIAMENTARY_COMMITTEES--DEF", + "sdg/SG_DMK_PARLCC_UC.AGE--Y_GE46__SEX--M__PARLIAMENTARY_COMMITTEES--FAFF", + "sdg/SG_DMK_PARLCC_UC.AGE--Y_GE46__SEX--M__PARLIAMENTARY_COMMITTEES--FAFF_DEF", + "sdg/SG_DMK_PARLCC_UC.AGE--Y_GE46__SEX--M__PARLIAMENTARY_COMMITTEES--FIN", + "sdg/SG_DMK_PARLCC_UC.AGE--Y_GE46__SEX--M__PARLIAMENTARY_COMMITTEES--GEQ", + "sdg/SG_DMK_PARLCC_UC.AGE--Y_GE46__SEX--M__PARLIAMENTARY_COMMITTEES--HR", + "sdg/SG_DMK_PARLCC_UC.AGE--Y_GE46__SEX--M__PARLIAMENTARY_COMMITTEES--HR_GEQ" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_PARLCC_UC.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of chairs of permanent parliamentary committees held by persons whose age and sex information is not available: Upper Chamber Committees" + ], + "memberList": [ + "sdg/SG_DMK_PARLCC_UC.AGE--_X__SEX--_X__PARLIAMENTARY_COMMITTEES--DEF", + "sdg/SG_DMK_PARLCC_UC.AGE--_X__SEX--_X__PARLIAMENTARY_COMMITTEES--FAFF", + "sdg/SG_DMK_PARLCC_UC.AGE--_X__SEX--_X__PARLIAMENTARY_COMMITTEES--FIN", + "sdg/SG_DMK_PARLCC_UC.AGE--_X__SEX--_X__PARLIAMENTARY_COMMITTEES--GEQ", + "sdg/SG_DMK_PARLCC_UC.AGE--_X__SEX--_X__PARLIAMENTARY_COMMITTEES--HR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_PARLCC_UC.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of chairs of permanent parliamentary committees held by women whose age information is unknown: Upper Chamber Committees" + ], + "memberList": [ + "sdg/SG_DMK_PARLCC_UC.AGE--_U__SEX--F__PARLIAMENTARY_COMMITTEES--FAFF", + "sdg/SG_DMK_PARLCC_UC.AGE--_U__SEX--F__PARLIAMENTARY_COMMITTEES--FAFF_DEF", + "sdg/SG_DMK_PARLCC_UC.AGE--_U__SEX--F__PARLIAMENTARY_COMMITTEES--FIN", + "sdg/SG_DMK_PARLCC_UC.AGE--_U__SEX--F__PARLIAMENTARY_COMMITTEES--GEQ" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_PARLCC_UC.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of chairs of permanent parliamentary committees held by men whose age information is unknown: Upper Chamber Committees" + ], + "memberList": [ + "sdg/SG_DMK_PARLCC_UC.AGE--_U__SEX--M__PARLIAMENTARY_COMMITTEES--DEF", + "sdg/SG_DMK_PARLCC_UC.AGE--_U__SEX--M__PARLIAMENTARY_COMMITTEES--FAFF", + "sdg/SG_DMK_PARLCC_UC.AGE--_U__SEX--M__PARLIAMENTARY_COMMITTEES--FAFF_DEF", + "sdg/SG_DMK_PARLCC_UC.AGE--_U__SEX--M__PARLIAMENTARY_COMMITTEES--FIN", + "sdg/SG_DMK_PARLCC_UC.AGE--_U__SEX--M__PARLIAMENTARY_COMMITTEES--GEQ", + "sdg/SG_DMK_PARLCC_UC.AGE--_U__SEX--M__PARLIAMENTARY_COMMITTEES--HR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_PARLCC_UC.006" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of chairs of permanent parliamentary committees held by persons whose age and sex information is unknown: Upper Chamber Committees" + ], + "memberList": [ + "sdg/SG_DMK_PARLCC_UC.AGE--_U__SEX--_U__PARLIAMENTARY_COMMITTEES--DEF", + "sdg/SG_DMK_PARLCC_UC.AGE--_U__SEX--_U__PARLIAMENTARY_COMMITTEES--FAFF", + "sdg/SG_DMK_PARLCC_UC.AGE--_U__SEX--_U__PARLIAMENTARY_COMMITTEES--FIN", + "sdg/SG_DMK_PARLCC_UC.AGE--_U__SEX--_U__PARLIAMENTARY_COMMITTEES--GEQ", + "sdg/SG_DMK_PARLCC_UC.AGE--_U__SEX--_U__PARLIAMENTARY_COMMITTEES--HR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_PARLCC_UC.007" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of chairs of permanent parliamentary committees held by women under 46 years old: Upper Chamber Committees" + ], + "memberList": [ + "sdg/SG_DMK_PARLCC_UC.AGE--Y0T45__SEX--F__PARLIAMENTARY_COMMITTEES--FAFF", + "sdg/SG_DMK_PARLCC_UC.AGE--Y0T45__SEX--F__PARLIAMENTARY_COMMITTEES--FAFF_DEF", + "sdg/SG_DMK_PARLCC_UC.AGE--Y0T45__SEX--F__PARLIAMENTARY_COMMITTEES--FAFF_HR", + "sdg/SG_DMK_PARLCC_UC.AGE--Y0T45__SEX--F__PARLIAMENTARY_COMMITTEES--FIN", + "sdg/SG_DMK_PARLCC_UC.AGE--Y0T45__SEX--F__PARLIAMENTARY_COMMITTEES--GEQ", + "sdg/SG_DMK_PARLCC_UC.AGE--Y0T45__SEX--F__PARLIAMENTARY_COMMITTEES--HR", + "sdg/SG_DMK_PARLCC_UC.AGE--Y0T45__SEX--F__PARLIAMENTARY_COMMITTEES--HR_GEQ" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_PARLCC_UC.008" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of chairs of permanent parliamentary committees held by male under 46 years old: Upper Chamber Committees" + ], + "memberList": [ + "sdg/SG_DMK_PARLCC_UC.AGE--Y0T45__SEX--M__PARLIAMENTARY_COMMITTEES--DEF", + "sdg/SG_DMK_PARLCC_UC.AGE--Y0T45__SEX--M__PARLIAMENTARY_COMMITTEES--FAFF", + "sdg/SG_DMK_PARLCC_UC.AGE--Y0T45__SEX--M__PARLIAMENTARY_COMMITTEES--FAFF_DEF", + "sdg/SG_DMK_PARLCC_UC.AGE--Y0T45__SEX--M__PARLIAMENTARY_COMMITTEES--FIN", + "sdg/SG_DMK_PARLCC_UC.AGE--Y0T45__SEX--M__PARLIAMENTARY_COMMITTEES--GEQ", + "sdg/SG_DMK_PARLCC_UC.AGE--Y0T45__SEX--M__PARLIAMENTARY_COMMITTEES--HR", + "sdg/SG_DMK_PARLCC_UC.AGE--Y0T45__SEX--M__PARLIAMENTARY_COMMITTEES--HR_GEQ" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_PARLMP_LC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Female representation ratio in parliament (proportion of women in parliament divided by the proportion of women in the national population\u00a0eligible by age): Lower chamber or unicameral" + ], + "memberList": [ + "sdg/SG_DMK_PARLMP_LC" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_PARLMP_UC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Female representation ratio in parliament (proportion of women in parliament divided by the proportion of women in the national population\u00a0eligible by age): Upper chamber" + ], + "memberList": [ + "sdg/SG_DMK_PARLMP_UC" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_PARLSP_LC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of persons 46 years and over who are speakers in parliement", + "by sex: Lower Chamber or Unicameral Committees" + ], + "memberList": [ + "sdg/SG_DMK_PARLSP_LC.AGE--Y_GE46__SEX--F", + "sdg/SG_DMK_PARLSP_LC.AGE--Y_GE46__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_PARLSP_LC.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of persons whose age information is unknown or not available who are speakers in parliement", + "by sex: Lower Chamber or Unicameral Committees" + ], + "memberList": [ + "sdg/SG_DMK_PARLSP_LC.AGE--_U__SEX--F", + "sdg/SG_DMK_PARLSP_LC.AGE--_U__SEX--M", + "sdg/SG_DMK_PARLSP_LC.AGE--_X__SEX--_X" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_PARLSP_LC.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of persons under 46 years old who are speakers in parliement", + "by sex: Lower Chamber or Unicameral Committees" + ], + "memberList": [ + "sdg/SG_DMK_PARLSP_LC.AGE--Y0T45__SEX--F", + "sdg/SG_DMK_PARLSP_LC.AGE--Y0T45__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_PARLSP_LC.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of speakers in parliamen: Lower Chamber or Unicameral by Sex" + ], + "memberList": [ + "sdg/SG_DMK_PARLSP_LC.SEX--F", + "sdg/SG_DMK_PARLSP_LC.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_PARLSP_UC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of persons 46 years old and over who are speakers in parliement", + "by sex: Upper Chamber Committees" + ], + "memberList": [ + "sdg/SG_DMK_PARLSP_UC.AGE--Y_GE46__SEX--F", + "sdg/SG_DMK_PARLSP_UC.AGE--Y_GE46__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_PARLSP_UC.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of persons whose age information is unknown or not available who are speakers in parliement", + "by sex: Upper Chamber Committees" + ], + "memberList": [ + "sdg/SG_DMK_PARLSP_UC.AGE--_U__SEX--F", + "sdg/SG_DMK_PARLSP_UC.AGE--_U__SEX--M", + "sdg/SG_DMK_PARLSP_UC.AGE--_X__SEX--_X" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_PARLSP_UC.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of persons under 46 years old who are speakers in parliement", + "by sex: Upper Chamber Committees" + ], + "memberList": [ + "sdg/SG_DMK_PARLSP_UC.AGE--Y0T45__SEX--F", + "sdg/SG_DMK_PARLSP_UC.AGE--Y0T45__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_PARLSP_UC.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of speakers in parliament: Upper Chamber by Sex" + ], + "memberList": [ + "sdg/SG_DMK_PARLSP_UC.SEX--F", + "sdg/SG_DMK_PARLSP_UC.SEX--M", + "sdg/SG_DMK_PARLSP_UC.SEX--_X" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_PARLYN_LC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of youth in parliament (age 45 or below): Lower Chamber or Unicameral by Age group" + ], + "memberList": [ + "sdg/SG_DMK_PARLYN_LC.AGE--Y0T45" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_PARLYN_UC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of youth in parliament (age 45 or below): Upper Chamber by Age group" + ], + "memberList": [ + "sdg/SG_DMK_PARLYN_UC.AGE--Y0T45" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_PARLYP_LC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth in parliament (age 45 or below): Lower Chamber or Unicameral by Age group" + ], + "memberList": [ + "sdg/SG_DMK_PARLYP_LC.AGE--Y0T45" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_PARLYP_UC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth in parliament (age 45 or below): Upper Chamber by Age group" + ], + "memberList": [ + "sdg/SG_DMK_PARLYP_UC.AGE--Y0T45" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_PARLYR_LC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Youth representation ratio in parliament (proportion of members in parliament aged 45 or below divided by the share of individuals aged 45 or below in the national population eligible by age): Lower Chamber or Unicameral by Age group" + ], + "memberList": [ + "sdg/SG_DMK_PARLYR_LC.AGE--Y0T45" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_PARLYR_UC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Youth representation ratio in parliament (proportion of members in parliament aged 45 or below divided by the share of individuals aged 45 or below in the national population eligible by age): Upper Chamber or Unicameral by Age group" + ], + "memberList": [ + "sdg/SG_DMK_PARLYR_UC.AGE--Y0T45" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_PSRVC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of positions in the public service held by specific groups compared to national distributions" + ], + "memberList": [ + "sdg/SG_DMK_PSRVC.AGE--Y0T34__OCCUPATION--AGG_PSP", + "sdg/SG_DMK_PSRVC.OCCUPATION--AGG_PSP", + "sdg/SG_DMK_PSRVC.OCCUPATION--AGG_PSP__DISABILITY_STATUS--PD", + "sdg/SG_DMK_PSRVC.OCCUPATION--AGG_PSP__POPULATION_GROUP--DNK_1", + "sdg/SG_DMK_PSRVC.OCCUPATION--AGG_PSP__POPULATION_GROUP--DNK_2", + "sdg/SG_DMK_PSRVC.OCCUPATION--AGG_PSP__POPULATION_GROUP--DNK_3", + "sdg/SG_DMK_PSRVC.OCCUPATION--AGG_PSP__POPULATION_GROUP--ISR_0", + "sdg/SG_DMK_PSRVC.OCCUPATION--AGG_PSP__POPULATION_GROUP--ISR_2", + "sdg/SG_DMK_PSRVC.OCCUPATION--AGG_PSP__POPULATION_GROUP--LSO_1", + "sdg/SG_DMK_PSRVC.OCCUPATION--AGG_PSP__POPULATION_GROUP--NOR_0", + "sdg/SG_DMK_PSRVC.OCCUPATION--AGG_PSP__POPULATION_GROUP--NOR_1", + "sdg/SG_DMK_PSRVC.OCCUPATION--AGG_PSP__POPULATION_GROUP--NOR_2", + "sdg/SG_DMK_PSRVC.OCCUPATION--AGG_PSP__POPULATION_GROUP--URY_0" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DMK_PSRVC.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of positions in the public service held by women compared to national distributions", + "by occupation group" + ], + "memberList": [ + "sdg/SG_DMK_PSRVC.SEX--F__OCCUPATION--AGG_PSP", + "sdg/SG_DMK_PSRVC.SEX--F__OCCUPATION--ISCO08_1112", + "sdg/SG_DMK_PSRVC.SEX--F__OCCUPATION--ISCO08_112_121", + "sdg/SG_DMK_PSRVC.SEX--F__OCCUPATION--ISCO08_21_242_25_26", + "sdg/SG_DMK_PSRVC.SEX--F__OCCUPATION--ISCO08_31T35X32", + "sdg/SG_DMK_PSRVC.SEX--F__OCCUPATION--ISCO08_41" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DSR_LGRGSR.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Score of adoption and implementation of national disaster-risk reduction strategies in line with the Sendai Framework" + ], + "memberList": [ + "sdg/SG_DSR_LGRGSR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DSR_SFDRR.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of countries that reported having a national disaster-risk reduction strategy which is aligned to the Sendai Framework" + ], + "memberList": [ + "sdg/SG_DSR_SFDRR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DSR_SILN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of local governments that adopt and implement local disaster-risk reduction strategies in line with national strategies" + ], + "memberList": [ + "sdg/SG_DSR_SILN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_DSR_SILS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of local governments that adopt and implement local disaster-risk reduction strategies in line with national disaster-risk reduction strategies" + ], + "memberList": [ + "sdg/SG_DSR_SILS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_GEN_EQPWN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of countries with systems to track and make public allocations for gender equality and women's empowerment" + ], + "memberList": [ + "sdg/SG_GEN_EQPWN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_GEN_EQPWNN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries with systems to track and make public allocations for gender equality and women's empowerment" + ], + "memberList": [ + "sdg/SG_GEN_EQPWNN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_GEN_LOCGELS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of elected seats in deliberative bodies of local government held by women by Sex" + ], + "memberList": [ + "sdg/SG_GEN_LOCGELS.SEX--F" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_GEN_PARL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of seats in national parliaments held by women by Sex" + ], + "memberList": [ + "sdg/SG_GEN_PARL.SEX--F" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_GEN_PARLN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of seats in national parliaments held by women by Sex" + ], + "memberList": [ + "sdg/SG_GEN_PARLN.SEX--F" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_GEN_PARLNT.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Current number of seats in national parliaments" + ], + "memberList": [ + "sdg/SG_GEN_PARLNT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_GOV_LOGV.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of local governments" + ], + "memberList": [ + "sdg/SG_GOV_LOGV" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_HAZ_CMRBASEL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Parties meeting their commitments and obligations in transmitting information as required by Basel Convention on hazardous waste", + "and other chemicals" + ], + "memberList": [ + "sdg/SG_HAZ_CMRBASEL" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_HAZ_CMRMNMT.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Parties meeting their commitments and obligations in transmitting information as required by Minamata Convention on hazardous waste", + "and other chemicals" + ], + "memberList": [ + "sdg/SG_HAZ_CMRMNMT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_HAZ_CMRMNTRL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Parties meeting their commitments and obligations in transmitting information as required by Montreal Protocol on hazardous waste", + "and other chemicals" + ], + "memberList": [ + "sdg/SG_HAZ_CMRMNTRL" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_HAZ_CMRROTDAM.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Parties meeting their commitments and obligations in transmitting information as required by Rotterdam Convention on hazardous waste", + "and other chemicals" + ], + "memberList": [ + "sdg/SG_HAZ_CMRROTDAM" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_HAZ_CMRSTHOLM.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Parties meeting their commitments and obligations in transmitting information as required by Stockholm Convention on hazardous waste", + "and other chemicals" + ], + "memberList": [ + "sdg/SG_HAZ_CMRSTHOLM" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_INF_ACCSS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries that adopt and implement constitutional", + "statutory and/or policy guarantees for public access to information" + ], + "memberList": [ + "sdg/SG_INF_ACCSS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_INT_MBRDEV.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of members of developing countries in international organizations by International organization" + ], + "memberList": [ + "sdg/SG_INT_MBRDEV.INTERNATIONAL_ORGANIZATION--ORG200010", + "sdg/SG_INT_MBRDEV.INTERNATIONAL_ORGANIZATION--ORG200021", + "sdg/SG_INT_MBRDEV.INTERNATIONAL_ORGANIZATION--ORG200023", + "sdg/SG_INT_MBRDEV.INTERNATIONAL_ORGANIZATION--ORG200050", + "sdg/SG_INT_MBRDEV.INTERNATIONAL_ORGANIZATION--ORG200060", + "sdg/SG_INT_MBRDEV.INTERNATIONAL_ORGANIZATION--ORG200070", + "sdg/SG_INT_MBRDEV.INTERNATIONAL_ORGANIZATION--ORG400220", + "sdg/SG_INT_MBRDEV.INTERNATIONAL_ORGANIZATION--ORG600070", + "sdg/SG_INT_MBRDEV.INTERNATIONAL_ORGANIZATION--ORG700010", + "sdg/SG_INT_MBRDEV.INTERNATIONAL_ORGANIZATION--ORG700020", + "sdg/SG_INT_MBRDEV.INTERNATIONAL_ORGANIZATION--ORG700030" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_INT_VRTDEV.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of voting rights of developing countries in international organizations by International organization" + ], + "memberList": [ + "sdg/SG_INT_VRTDEV.INTERNATIONAL_ORGANIZATION--ORG200010", + "sdg/SG_INT_VRTDEV.INTERNATIONAL_ORGANIZATION--ORG200021", + "sdg/SG_INT_VRTDEV.INTERNATIONAL_ORGANIZATION--ORG200023", + "sdg/SG_INT_VRTDEV.INTERNATIONAL_ORGANIZATION--ORG200050", + "sdg/SG_INT_VRTDEV.INTERNATIONAL_ORGANIZATION--ORG200060", + "sdg/SG_INT_VRTDEV.INTERNATIONAL_ORGANIZATION--ORG200070", + "sdg/SG_INT_VRTDEV.INTERNATIONAL_ORGANIZATION--ORG400220", + "sdg/SG_INT_VRTDEV.INTERNATIONAL_ORGANIZATION--ORG600070", + "sdg/SG_INT_VRTDEV.INTERNATIONAL_ORGANIZATION--ORG700010", + "sdg/SG_INT_VRTDEV.INTERNATIONAL_ORGANIZATION--ORG700020", + "sdg/SG_INT_VRTDEV.INTERNATIONAL_ORGANIZATION--ORG700030" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_LGL_GENEQEMP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Level of achievement regarding legal frameworks that promote", + "enforce and monitor gender equality with respect to employment and economic benefits (Area 3)" + ], + "memberList": [ + "sdg/SG_LGL_GENEQEMP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_LGL_GENEQLFP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Level of achievement regarding legal frameworks that promote", + "enforce and monitor gender equality with respect to overarching legal frameworks and public life (Area 1)" + ], + "memberList": [ + "sdg/SG_LGL_GENEQLFP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_LGL_GENEQMAR.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Level of achievement regarding legal frameworks that promote", + "enforce and monitor gender equality with respect to marriage and family (Area 4)" + ], + "memberList": [ + "sdg/SG_LGL_GENEQMAR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_LGL_GENEQVAW.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Level of achievement regarding legal frameworks that promote", + "enforce and monitor gender equality with respect to violence against women (Area 2)" + ], + "memberList": [ + "sdg/SG_LGL_GENEQVAW" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_LGL_LNDFEMOD.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Degree to which the legal framework (including customary law) guarantees women\u2019s equal rights to land ownership and/or control" + ], + "memberList": [ + "sdg/SG_LGL_LNDFEMOD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_NHR_CMPLNC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries with National Human Rights Institutions in compliance with the Paris Principles" + ], + "memberList": [ + "sdg/SG_NHR_CMPLNC" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_NHR_IMPL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of countries with independent National Human Rights Institutions in compliance with the Paris Principles" + ], + "memberList": [ + "sdg/SG_NHR_IMPL" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_NHR_INTEXST.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of countries that applied for accreditation as independent National Human Rights Institutions in compliance with the Paris Principles" + ], + "memberList": [ + "sdg/SG_NHR_INTEXST" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_PLN_MSTKSDG_P.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of provider countries reporting progress in multi-stakeholder development effectiveness monitoring frameworks that support the achievement of the sustainable development goals" + ], + "memberList": [ + "sdg/SG_PLN_MSTKSDG_P" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_PLN_MSTKSDG_R.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of recipient countries reporting progress in multi-stakeholder development effectiveness monitoring frameworks that support the achievement of the sustainable development goals" + ], + "memberList": [ + "sdg/SG_PLN_MSTKSDG_R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_PLN_PRPOLRES.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Extent of use of country-owned results frameworks and planning tools by providers of development cooperation - data by provider" + ], + "memberList": [ + "sdg/SG_PLN_PRPOLRES" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_PLN_PRVNDI.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of project objectives of new development interventions drawn from country-led result frameworks - data by provider" + ], + "memberList": [ + "sdg/SG_PLN_PRVNDI" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_PLN_PRVRICTRY.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of results indicators drawn from country-led results frameworks - data by provider" + ], + "memberList": [ + "sdg/SG_PLN_PRVRICTRY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_PLN_PRVRIMON.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of results indicators which will be monitored using government sources and monitoring systems - data by provider" + ], + "memberList": [ + "sdg/SG_PLN_PRVRIMON" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_PLN_RECNDI.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of project objectives in new development interventions drawn from country-led result frameworks - data by recipient" + ], + "memberList": [ + "sdg/SG_PLN_RECNDI" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_PLN_RECRICTRY.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of results indicators drawn from country-led results frameworks - data by recipient" + ], + "memberList": [ + "sdg/SG_PLN_RECRICTRY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_PLN_RECRIMON.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of results indicators which will be monitored using government sources and monitoring systems - data by recipient" + ], + "memberList": [ + "sdg/SG_PLN_RECRIMON" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_PLN_REPOLRES.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Extent of use of country-owned results frameworks and planning tools by providers of development cooperation - data by recipient" + ], + "memberList": [ + "sdg/SG_PLN_REPOLRES" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_REG_BRTH.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of children under 5 years of age whose births have been registered with a civil authority by Age group" + ], + "memberList": [ + "sdg/SG_REG_BRTH.AGE--M12T23", + "sdg/SG_REG_BRTH.AGE--M24T35", + "sdg/SG_REG_BRTH.AGE--M36T47", + "sdg/SG_REG_BRTH.AGE--M48T59", + "sdg/SG_REG_BRTH.AGE--Y0", + "sdg/SG_REG_BRTH.AGE--Y0T4", + "sdg/SG_REG_BRTH.AGE--Y0T7" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_REG_BRTH90.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of countries with birth registration data that are at least 90 percent complete" + ], + "memberList": [ + "sdg/SG_REG_BRTH90" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_REG_BRTH90N.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries with birth registration data that are at least 90 percent complete" + ], + "memberList": [ + "sdg/SG_REG_BRTH90N" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_REG_CENSUS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of countries that have conducted at least one population and housing census in the last 10 years" + ], + "memberList": [ + "sdg/SG_REG_CENSUS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_REG_CENSUSN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries that have conducted at least one population and housing census in the last 10 years" + ], + "memberList": [ + "sdg/SG_REG_CENSUSN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_REG_DETH75.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of countries with death registration data that are at least 75 percent complete" + ], + "memberList": [ + "sdg/SG_REG_DETH75" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_REG_DETH75N.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries with death registration data that are at least 75 percent complete" + ], + "memberList": [ + "sdg/SG_REG_DETH75N" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_SCP_CNTRY.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries with sustainable consumption and production (SCP) national action plans or SCP mainstreamed as a priority or target into national policies" + ], + "memberList": [ + "sdg/SG_SCP_CNTRY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_SCP_POLINS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries with policy instrument for sustainable consumption and production by Policy instrument" + ], + "memberList": [ + "sdg/SG_SCP_POLINS.POLICY_INSTRUMENT--POL_ECONFIS", + "sdg/SG_SCP_POLINS.POLICY_INSTRUMENT--POL_MACRO", + "sdg/SG_SCP_POLINS.POLICY_INSTRUMENT--POL_REGLEG", + "sdg/SG_SCP_POLINS.POLICY_INSTRUMENT--POL_VOLSRG" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_SCP_PROCN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of countries implementing sustainable public procurement policies and action plans by Level of implementation" + ], + "memberList": [ + "sdg/SG_SCP_PROCN.LEVEL_STATUS--HIGIMP", + "sdg/SG_SCP_PROCN.LEVEL_STATUS--LOWIMP", + "sdg/SG_SCP_PROCN.LEVEL_STATUS--MHIGIMP", + "sdg/SG_SCP_PROCN.LEVEL_STATUS--MLOWIMP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_SCP_PROCN_HS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Artigas) by Level of implementation" + ], + "memberList": [ + "sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--ARTIGAS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_SCP_PROCN_HS.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Canelones) by Level of implementation" + ], + "memberList": [ + "sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--CANELONES" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_SCP_PROCN_HS.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Cerro Largo) by Level of implementation" + ], + "memberList": [ + "sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--CERRO_LARGO" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_SCP_PROCN_HS.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Colonia) by Level of implementation" + ], + "memberList": [ + "sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--COLONIA" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_SCP_PROCN_HS.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Comunidad Aut\u00f3noma del Pa\u00eds Vasco) by Level of implementation" + ], + "memberList": [ + "sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--MHIGIMP__GOVERNMENT_NAME--COMUNIDAD_AUTONOMA_DEL_PAIS_VASCO" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_SCP_PROCN_HS.006" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Flores) by Level of implementation" + ], + "memberList": [ + "sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--FLORES" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_SCP_PROCN_HS.007" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Florida) by Level of implementation" + ], + "memberList": [ + "sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--FLORIDA" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_SCP_PROCN_HS.008" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Greater Poland Voivodeship) by Level of implementation" + ], + "memberList": [ + "sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--GREATER_POLAND_VOIVODESHIP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_SCP_PROCN_HS.009" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Lavalleja) by Level of implementation" + ], + "memberList": [ + "sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--LAVALLEJA" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_SCP_PROCN_HS.010" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Lesser Poland Voivodeship) by Level of implementation" + ], + "memberList": [ + "sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--LESSER_POLAND_VOIVODESHIP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_SCP_PROCN_HS.011" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Lower Silesian Voivodeship) by Level of implementation" + ], + "memberList": [ + "sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--MLOWIMP__GOVERNMENT_NAME--LOWER_SILESIAN_VOIVODESHIP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_SCP_PROCN_HS.012" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (L\u00f3dz Voivodeship) by Level of implementation" + ], + "memberList": [ + "sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--MLOWIMP__GOVERNMENT_NAME--LODZ_VOIVODESHIP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_SCP_PROCN_HS.013" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Maldonado) by Level of implementation" + ], + "memberList": [ + "sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--MALDONADO" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_SCP_PROCN_HS.014" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Masovian Voivodeship) by Level of implementation" + ], + "memberList": [ + "sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--MLOWIMP__GOVERNMENT_NAME--MASOVIAN_VOIVODESHIP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_SCP_PROCN_HS.015" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Montevideo) by Level of implementation" + ], + "memberList": [ + "sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--MONTEVIDEO" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_SCP_PROCN_HS.016" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Paysand\u00fa) by Level of implementation" + ], + "memberList": [ + "sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--PAYSANDU" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_SCP_PROCN_HS.017" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Podkarpackie Voivodeship) by Level of implementation" + ], + "memberList": [ + "sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--PODKARPACKIE_VOIVODESHIP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_SCP_PROCN_HS.018" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Pomeranian Voivodeship) by Level of implementation" + ], + "memberList": [ + "sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--MLOWIMP__GOVERNMENT_NAME--POMERANIAN_VOIVODESHIP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_SCP_PROCN_HS.019" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Rivera) by Level of implementation" + ], + "memberList": [ + "sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--RIVERA" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_SCP_PROCN_HS.020" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (R\u00edo Negro) by Level of implementation" + ], + "memberList": [ + "sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--RIO_NEGRO" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_SCP_PROCN_HS.021" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Salto) by Level of implementation" + ], + "memberList": [ + "sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--SALTO" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_SCP_PROCN_HS.022" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (San Jos\u00e9) by Level of implementation" + ], + "memberList": [ + "sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--SAN_JOSE" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_SCP_PROCN_HS.023" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Silesian Voivodeship) by Level of implementation" + ], + "memberList": [ + "sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--MLOWIMP__GOVERNMENT_NAME--SILESIAN_VOIVODESHIP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_SCP_PROCN_HS.024" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (State of Minnesota) by Level of implementation" + ], + "memberList": [ + "sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--MLOWIMP__GOVERNMENT_NAME--STATE_OF_MINNESOTA" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_SCP_PROCN_HS.025" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Swietokrzyskie Voivodeship) by Level of implementation" + ], + "memberList": [ + "sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--SWIETOKRZYSKIE_VOIVODESHIP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_SCP_PROCN_HS.026" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Tacuaremb\u00f3) by Level of implementation" + ], + "memberList": [ + "sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--TACUAREMBO" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_SCP_PROCN_HS.027" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Treinta Y Tres) by Level of implementation" + ], + "memberList": [ + "sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--TREINTA_Y_TRES" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_SCP_PROCN_HS.028" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Vlaamse overheid (Government of Flanders)) by Level of implementation" + ], + "memberList": [ + "sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--MHIGIMP__GOVERNMENT_NAME--VLAAMSE_OVERHEID" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_SCP_PROCN_HS.029" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Walloon region) by Level of implementation" + ], + "memberList": [ + "sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--MLOWIMP__GOVERNMENT_NAME--WALLOON_REGION" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_SCP_PROCN_HS.030" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (West Pomeranian Voivodeship) by Level of implementation" + ], + "memberList": [ + "sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--MLOWIMP__GOVERNMENT_NAME--WEST_POMERANIAN_VOIVODESHIP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_SCP_PROCN_LS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of countries implementing sustainable public procurement policies and action plans at lower subnational level by level of implementation (Ayuntamiento de Barcelona) by Level of implementation" + ], + "memberList": [ + "sdg/SG_SCP_PROCN_LS.LEVEL_STATUS--HIGIMP__GOVERNMENT_NAME--AYUNTAMIENTO_DE_BARCELONA" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_SCP_PROCN_LS.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of countries implementing sustainable public procurement policies and action plans at lower subnational level by level of implementation (City & county of San Francisco) by Level of implementation" + ], + "memberList": [ + "sdg/SG_SCP_PROCN_LS.LEVEL_STATUS--MLOWIMP__GOVERNMENT_NAME--CITY_COUNTY_OF_SAN_FRANCISCO" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_SCP_PROCN_LS.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of countries implementing sustainable public procurement policies and action plans at lower subnational level by level of implementation (City of Portland", + "Oregon) by Level of implementation" + ], + "memberList": [ + "sdg/SG_SCP_PROCN_LS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--CITY_OF_PORTLAND_OREGON" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_SCP_PROCN_LS.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of countries implementing sustainable public procurement policies and action plans at lower subnational level by level of implementation (City of Poznan) by Level of implementation" + ], + "memberList": [ + "sdg/SG_SCP_PROCN_LS.LEVEL_STATUS--MLOWIMP__GOVERNMENT_NAME--CITY_OF_POZNAN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_SCP_PROCN_LS.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of countries implementing sustainable public procurement policies and action plans at lower subnational level by level of implementation (City of Stavanger) by Level of implementation" + ], + "memberList": [ + "sdg/SG_SCP_PROCN_LS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--CITY_OF_STAVANGER" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_SCP_PROCN_LS.006" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of countries implementing sustainable public procurement policies and action plans at lower subnational level by level of implementation (City of Trondheim) by Level of implementation" + ], + "memberList": [ + "sdg/SG_SCP_PROCN_LS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--CITY_OF_TRONDHEIM" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_SCP_PROCN_LS.007" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of countries implementing sustainable public procurement policies and action plans at lower subnational level by level of implementation (City of Warsaw) by Level of implementation" + ], + "memberList": [ + "sdg/SG_SCP_PROCN_LS.LEVEL_STATUS--MLOWIMP__GOVERNMENT_NAME--CITY_OF_WARSAW" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_SCP_PROCN_LS.008" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of countries implementing sustainable public procurement policies and action plans at lower subnational level by level of implementation (King County", + "Washington) by Level of implementation" + ], + "memberList": [ + "sdg/SG_SCP_PROCN_LS.LEVEL_STATUS--MHIGIMP__GOVERNMENT_NAME--KING_COUNTY_WASHINGTON" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_SCP_PROCN_LS.009" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of countries implementing sustainable public procurement policies and action plans at lower subnational level", + "with medium-low level of implementation" + ], + "memberList": [ + "sdg/SG_SCP_PROCN_LS.LEVEL_STATUS--MLOWIMP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_SCP_TOTLN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of policies", + "instruments and mechanism in place for sustainable consumption and production" + ], + "memberList": [ + "sdg/SG_SCP_TOTLN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_STT_CAPTY.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Dollar value of all resources made available to strengthen statistical capacity in developing countries" + ], + "memberList": [ + "sdg/SG_STT_CAPTY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_STT_FPOS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries with national statistical legislation that complies with the Fundamental Principles of Official Statistics" + ], + "memberList": [ + "sdg/SG_STT_FPOS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_STT_NSDSFDDNR.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries with national statistical plans with funding from donors" + ], + "memberList": [ + "sdg/SG_STT_NSDSFDDNR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_STT_NSDSFDGVT.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries with national statistical plans with funding from government" + ], + "memberList": [ + "sdg/SG_STT_NSDSFDGVT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_STT_NSDSFDOTHR.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries with national statistical plans with funding from others" + ], + "memberList": [ + "sdg/SG_STT_NSDSFDOTHR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_STT_NSDSFND.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries with national statistical plans that are fully funded" + ], + "memberList": [ + "sdg/SG_STT_NSDSFND" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_STT_NSDSIMPL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries with national statistical plans that are under implementation" + ], + "memberList": [ + "sdg/SG_STT_NSDSIMPL" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_STT_ODIN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Open Data Inventory (ODIN) Coverage Index" + ], + "memberList": [ + "sdg/SG_STT_ODIN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_XPD_EDUC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of total government spending on essential services: education" + ], + "memberList": [ + "sdg/SG_XPD_EDUC" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_XPD_ESSRV.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of total government spending on essential services" + ], + "memberList": [ + "sdg/SG_XPD_ESSRV" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_XPD_HLTH.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of total government spending on essential services: health" + ], + "memberList": [ + "sdg/SG_XPD_HLTH" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSG_XPD_PROT.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of total government spending on essential services: social protection" + ], + "memberList": [ + "sdg/SG_XPD_PROT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_AAP_ASMORT.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Age-standardized mortality rate attributed to ambient air pollution" + ], + "memberList": [ + "sdg/SH_AAP_ASMORT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_ACS_DTP3.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of the target population who received 3 doses of diphtheria-tetanus-pertussis (DTP3) vaccine" + ], + "memberList": [ + "sdg/SH_ACS_DTP3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_ACS_HPV.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of the target population who received the final dose of human papillomavirus (HPV) vaccine" + ], + "memberList": [ + "sdg/SH_ACS_HPV" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_ACS_MCV2.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of the target population who received measles-containing-vaccine second-dose (MCV2)" + ], + "memberList": [ + "sdg/SH_ACS_MCV2" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_ACS_PCV3.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of the target population who received a 3rd dose of pneumococcal conjugate (PCV3) vaccine" + ], + "memberList": [ + "sdg/SH_ACS_PCV3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_ACS_UNHC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Universal health coverage (UHC) service coverage index" + ], + "memberList": [ + "sdg/SH_ACS_UNHC" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_ALC_CONSPT.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Alcohol consumption per capita among individuals aged 15 years and older within a calendar year" + ], + "memberList": [ + "sdg/SH_ALC_CONSPT.AGE--Y_GE15" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_ALC_CONSPT.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Alcohol consumption per capita among individuals aged 15 years and older within a calendar year by Sex" + ], + "memberList": [ + "sdg/SH_ALC_CONSPT.AGE--Y_GE15__SEX--F", + "sdg/SH_ALC_CONSPT.AGE--Y_GE15__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_BLD_ECOLI.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Percentage of bloodstream infection due to Escherichia coli resistant to 3rd-generation cephalosporin (e.g.", + "ESBL- E. coli) among patients seeking care and whose blood sample is taken and tested" + ], + "memberList": [ + "sdg/SH_BLD_ECOLI" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_BLD_MRSA.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Percentage of bloodstream infection due to methicillin-resistant Staphylococcus aureus (MRSA) among patients seeking care and whose blood sample is taken and tested" + ], + "memberList": [ + "sdg/SH_BLD_MRSA" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_DTH_NCD.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of deaths attributed to non-communicable diseases by Disease" + ], + "memberList": [ + "sdg/SH_DTH_NCD.GHE_CAUSE--GHE2019_II_A", + "sdg/SH_DTH_NCD.GHE_CAUSE--GHE2019_II_C", + "sdg/SH_DTH_NCD.GHE_CAUSE--GHE2019_II_H", + "sdg/SH_DTH_NCD.GHE_CAUSE--GHE2019_II_I_CHRONIC" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_DTH_NCD.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of deaths attributed to non-communicable diseases (Female) by Disease" + ], + "memberList": [ + "sdg/SH_DTH_NCD.SEX--F__GHE_CAUSE--GHE2019_II_A", + "sdg/SH_DTH_NCD.SEX--F__GHE_CAUSE--GHE2019_II_C", + "sdg/SH_DTH_NCD.SEX--F__GHE_CAUSE--GHE2019_II_H", + "sdg/SH_DTH_NCD.SEX--F__GHE_CAUSE--GHE2019_II_I_CHRONIC" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_DTH_NCD.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of deaths attributed to non-communicable diseases (Male) by Disease" + ], + "memberList": [ + "sdg/SH_DTH_NCD.SEX--M__GHE_CAUSE--GHE2019_II_A", + "sdg/SH_DTH_NCD.SEX--M__GHE_CAUSE--GHE2019_II_C", + "sdg/SH_DTH_NCD.SEX--M__GHE_CAUSE--GHE2019_II_H", + "sdg/SH_DTH_NCD.SEX--M__GHE_CAUSE--GHE2019_II_I_CHRONIC" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_DTH_NCOM.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Mortality rate attributed to cardiovascular disease", + "cancer", + "diabetes or chronic respiratory disease (probability) (30 to 70 years old) by Sex" + ], + "memberList": [ + "sdg/SH_DTH_NCOM.AGE--Y30T70", + "sdg/SH_DTH_NCOM.AGE--Y30T70__SEX--F", + "sdg/SH_DTH_NCOM.AGE--Y30T70__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_DYN_IMRT.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Infant mortality rate (under 1 year old) by Sex" + ], + "memberList": [ + "sdg/SH_DYN_IMRT.AGE--Y0", + "sdg/SH_DYN_IMRT.AGE--Y0__SEX--F", + "sdg/SH_DYN_IMRT.AGE--Y0__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_DYN_IMRTN.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Infant deaths (under 1 year old) by Sex" + ], + "memberList": [ + "sdg/SH_DYN_IMRTN.AGE--Y0", + "sdg/SH_DYN_IMRTN.AGE--Y0__SEX--F", + "sdg/SH_DYN_IMRTN.AGE--Y0__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_DYN_MORT.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Under-five mortality rate (under 5 years old) by Sex" + ], + "memberList": [ + "sdg/SH_DYN_MORT.AGE--Y0T4", + "sdg/SH_DYN_MORT.AGE--Y0T4__SEX--F", + "sdg/SH_DYN_MORT.AGE--Y0T4__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_DYN_MORTN.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Under-five deaths (under 5 years old) by Sex" + ], + "memberList": [ + "sdg/SH_DYN_MORTN.AGE--Y0T4", + "sdg/SH_DYN_MORTN.AGE--Y0T4__SEX--F", + "sdg/SH_DYN_MORTN.AGE--Y0T4__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_DYN_NMRT.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Neonatal mortality rate" + ], + "memberList": [ + "sdg/SH_DYN_NMRT.AGE--M0" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_DYN_NMRTN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Neonatal deaths" + ], + "memberList": [ + "sdg/SH_DYN_NMRTN.AGE--M0" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_FPL_INFM.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of women who make their own informed decisions regarding sexual relations", + "contraceptive use and reproductive health care (15 to 49 years old)" + ], + "memberList": [ + "sdg/SH_FPL_INFM.AGE--Y15T49__SEX--F" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_FPL_INFMCU.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of women who make their own informed decisions regarding contraceptive use (15 to 49 years old)" + ], + "memberList": [ + "sdg/SH_FPL_INFMCU.AGE--Y15T49__SEX--F" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_FPL_INFMRH.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of women who make their own informed decisions regarding reproductive health care (15 to 49 years old)" + ], + "memberList": [ + "sdg/SH_FPL_INFMRH.AGE--Y15T49__SEX--F" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_FPL_INFMSR.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of women who make their own informed decisions regarding sexual relations (15 to 49 years old)" + ], + "memberList": [ + "sdg/SH_FPL_INFMSR.AGE--Y15T49__SEX--F" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_FPL_MTMM.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of women of reproductive age (aged 15-49 years) who have their need for family planning satisfied with modern methods" + ], + "memberList": [ + "sdg/SH_FPL_MTMM.AGE--Y15T49__SEX--F" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_H2O_SAFE.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population using safely managed drinking water services" + ], + "memberList": [ + "sdg/SH_H2O_SAFE" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_H2O_SAFE.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population using safely managed drinking water services by Type of location" + ], + "memberList": [ + "sdg/SH_H2O_SAFE.URBANIZATION--R", + "sdg/SH_H2O_SAFE.URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_HAP_ASMORT.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Age-standardized mortality rate attributed to household air pollution" + ], + "memberList": [ + "sdg/SH_HAP_ASMORT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_HAP_HBSAG.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Prevalence of hepatitis B surface antigen (HBsAg) (under 5 years old)" + ], + "memberList": [ + "sdg/SH_HAP_HBSAG.AGE--Y0T4" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_HIV_INCD.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of new HIV infections per 1", + "000 uninfected population" + ], + "memberList": [ + "sdg/SH_HIV_INCD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_HIV_INCD.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of new HIV infections per 1", + "000 uninfected population by Age group" + ], + "memberList": [ + "sdg/SH_HIV_INCD.AGE--Y0T14", + "sdg/SH_HIV_INCD.AGE--Y15T24", + "sdg/SH_HIV_INCD.AGE--Y15T49", + "sdg/SH_HIV_INCD.AGE--Y_GE50" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_HIV_INCD.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of new HIV infections per 1", + "000 uninfected population (15 to 24 years old) by Sex" + ], + "memberList": [ + "sdg/SH_HIV_INCD.AGE--Y15T24__SEX--F", + "sdg/SH_HIV_INCD.AGE--Y15T24__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_HIV_INCD.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of new HIV infections per 1", + "000 uninfected population (15 to 49 years old) by Sex" + ], + "memberList": [ + "sdg/SH_HIV_INCD.AGE--Y15T49__SEX--F", + "sdg/SH_HIV_INCD.AGE--Y15T49__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_HIV_INCD.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of new HIV infections per 1", + "000 uninfected population (50 years old and over) by Sex" + ], + "memberList": [ + "sdg/SH_HIV_INCD.AGE--Y_GE50__SEX--F", + "sdg/SH_HIV_INCD.AGE--Y_GE50__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_HIV_INCD.006" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of new HIV infections per 1", + "000 uninfected population by Sex" + ], + "memberList": [ + "sdg/SH_HIV_INCD.SEX--F", + "sdg/SH_HIV_INCD.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_HLF_EMED.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of health facilities that have a core set of relevant essential medicines available and affordable on a sustainable basis" + ], + "memberList": [ + "sdg/SH_HLF_EMED" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_IHR_CAPS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "International Health Regulations (IHR) capacity" + ], + "memberList": [ + "sdg/SH_IHR_CAPS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_IHR_CAPS.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "International Health Regulations (IHR) capacity by IHR core capacities" + ], + "memberList": [ + "sdg/SH_IHR_CAPS.IHR_CAPACITY--IHR_01", + "sdg/SH_IHR_CAPS.IHR_CAPACITY--IHR_02", + "sdg/SH_IHR_CAPS.IHR_CAPACITY--IHR_03", + "sdg/SH_IHR_CAPS.IHR_CAPACITY--IHR_04", + "sdg/SH_IHR_CAPS.IHR_CAPACITY--IHR_05", + "sdg/SH_IHR_CAPS.IHR_CAPACITY--IHR_06", + "sdg/SH_IHR_CAPS.IHR_CAPACITY--IHR_07", + "sdg/SH_IHR_CAPS.IHR_CAPACITY--IHR_08", + "sdg/SH_IHR_CAPS.IHR_CAPACITY--IHR_09", + "sdg/SH_IHR_CAPS.IHR_CAPACITY--IHR_10", + "sdg/SH_IHR_CAPS.IHR_CAPACITY--IHR_11", + "sdg/SH_IHR_CAPS.IHR_CAPACITY--IHR_12", + "sdg/SH_IHR_CAPS.IHR_CAPACITY--IHR_13" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_IHR_CAPS.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "International Health Regulations (IHR) capacity by IHR core capacities (SPAR)" + ], + "memberList": [ + "sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR_01", + "sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR_02", + "sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR_03", + "sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR_04", + "sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR_05", + "sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR_06", + "sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR_07", + "sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR_08", + "sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR_09", + "sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR_10", + "sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR_11", + "sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR_12", + "sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR_13" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_IHR_CAPS.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "International Health Regulations (IHR) capacity by IHR core capacities (SPAR2)" + ], + "memberList": [ + "sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR2_C01", + "sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR2_C02", + "sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR2_C03", + "sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR2_C04", + "sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR2_C05", + "sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR2_C06", + "sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR2_C07", + "sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR2_C08", + "sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR2_C09", + "sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR2_C10", + "sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR2_C11", + "sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR2_C12", + "sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR2_C13", + "sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR2_C14", + "sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR2_C15" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_LGR_ACSRHE.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Extent to which countries have 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" + ], + "memberList": [ + "sdg/SH_LGR_ACSRHE" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_LGR_ACSRHEC1.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Extent to which countries have 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 (maternity care component)" + ], + "memberList": [ + "sdg/SH_LGR_ACSRHEC1" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_LGR_ACSRHEC10.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Extent to which countries have 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 (HIV testing and counsellilng component)" + ], + "memberList": [ + "sdg/SH_LGR_ACSRHEC10" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_LGR_ACSRHEC11.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Extent to which countries have 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 (HIV treatment and care component)" + ], + "memberList": [ + "sdg/SH_LGR_ACSRHEC11" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_LGR_ACSRHEC12.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Extent to which countries have 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 (HIV Confidentiality component)" + ], + "memberList": [ + "sdg/SH_LGR_ACSRHEC12" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_LGR_ACSRHEC13.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Extent to which countries have 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 (HPV Vaccine component)" + ], + "memberList": [ + "sdg/SH_LGR_ACSRHEC13" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_LGR_ACSRHEC2.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Extent to which countries have 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 (life-saving commodities component)" + ], + "memberList": [ + "sdg/SH_LGR_ACSRHEC2" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_LGR_ACSRHEC3.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Extent to which countries have 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 (abortion component)" + ], + "memberList": [ + "sdg/SH_LGR_ACSRHEC3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_LGR_ACSRHEC4.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Extent to which countries have 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 (post-abortion care component)" + ], + "memberList": [ + "sdg/SH_LGR_ACSRHEC4" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_LGR_ACSRHEC5.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Extent to which countries have 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 (contraceptive services component)" + ], + "memberList": [ + "sdg/SH_LGR_ACSRHEC5" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_LGR_ACSRHEC6.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Extent to which countries have 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 (consent for contraceptive services component)" + ], + "memberList": [ + "sdg/SH_LGR_ACSRHEC6" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_LGR_ACSRHEC7.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Extent to which countries have 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 (emergency contraception component)" + ], + "memberList": [ + "sdg/SH_LGR_ACSRHEC7" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_LGR_ACSRHEC8.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Extent to which countries have 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 (comprehensive sexuality education curriculum laws component)" + ], + "memberList": [ + "sdg/SH_LGR_ACSRHEC8" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_LGR_ACSRHEC9.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Extent to which countries have 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 (comprehensive sexuality education curriculum topics component)" + ], + "memberList": [ + "sdg/SH_LGR_ACSRHEC9" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_LGR_ACSRHES1.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Extent to which countries have 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 (maternity care section)" + ], + "memberList": [ + "sdg/SH_LGR_ACSRHES1" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_LGR_ACSRHES2.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Extent to which countries have 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 (contraception and family planning section)" + ], + "memberList": [ + "sdg/SH_LGR_ACSRHES2" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_LGR_ACSRHES3.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Extent to which countries have 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 (comprehensive sexuality education and information section)" + ], + "memberList": [ + "sdg/SH_LGR_ACSRHES3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_LGR_ACSRHES4.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Extent to which countries have 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 (HIV and HPV)" + ], + "memberList": [ + "sdg/SH_LGR_ACSRHES4" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_MED_DEN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Health worker density by Professionals (ISCO08 - 2)" + ], + "memberList": [ + "sdg/SH_MED_DEN.OCCUPATION--ISCO08_221", + "sdg/SH_MED_DEN.OCCUPATION--ISCO08_222_322", + "sdg/SH_MED_DEN.OCCUPATION--ISCO08_2261", + "sdg/SH_MED_DEN.OCCUPATION--ISCO08_2262" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_MED_HWRKDIS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Health worker distribution (Female) by Professionals (ISCO08 - 2)" + ], + "memberList": [ + "sdg/SH_MED_HWRKDIS.SEX--F__OCCUPATION--ISCO08_221", + "sdg/SH_MED_HWRKDIS.SEX--F__OCCUPATION--ISCO08_2221_3221" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_MED_HWRKDIS.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Health worker distribution (Male) by Professionals (ISCO08 - 2)" + ], + "memberList": [ + "sdg/SH_MED_HWRKDIS.SEX--M__OCCUPATION--ISCO08_221", + "sdg/SH_MED_HWRKDIS.SEX--M__OCCUPATION--ISCO08_2221_3221" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_PRV_SMOK.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Age-standardized prevalence of current tobacco use among persons aged 15 years and older" + ], + "memberList": [ + "sdg/SH_PRV_SMOK.AGE--Y_GE15" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_PRV_SMOK.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Age-standardized prevalence of current tobacco use among persons aged 15 years and older by Sex" + ], + "memberList": [ + "sdg/SH_PRV_SMOK.AGE--Y_GE15__SEX--F", + "sdg/SH_PRV_SMOK.AGE--Y_GE15__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_SAN_DEFECT.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population practicing open defecation" + ], + "memberList": [ + "sdg/SH_SAN_DEFECT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_SAN_DEFECT.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population practicing open defecation by Type of location" + ], + "memberList": [ + "sdg/SH_SAN_DEFECT.URBANIZATION--R", + "sdg/SH_SAN_DEFECT.URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_SAN_HNDWSH.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population with basic handwashing facilities on premises" + ], + "memberList": [ + "sdg/SH_SAN_HNDWSH" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_SAN_HNDWSH.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population with basic handwashing facilities on premises by Type of location" + ], + "memberList": [ + "sdg/SH_SAN_HNDWSH.URBANIZATION--R", + "sdg/SH_SAN_HNDWSH.URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_SAN_SAFE.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population using safely managed sanitation services" + ], + "memberList": [ + "sdg/SH_SAN_SAFE" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_SAN_SAFE.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population using safely managed sanitation services by Type of location" + ], + "memberList": [ + "sdg/SH_SAN_SAFE.URBANIZATION--R", + "sdg/SH_SAN_SAFE.URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_STA_ANEM.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of women aged 15-49 years with anaemia" + ], + "memberList": [ + "sdg/SH_STA_ANEM.AGE--Y15T49__SEX--F" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_STA_ANEM_NPRG.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of non-pregnant women aged 15-49 years with anaemia" + ], + "memberList": [ + "sdg/SH_STA_ANEM_NPRG.AGE--Y15T49__SEX--F" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_STA_ANEM_PREG.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of women aged 15-49 years with anaemia", + "pregnant" + ], + "memberList": [ + "sdg/SH_STA_ANEM_PREG.AGE--Y15T49__SEX--F" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_STA_ASAIRP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Age-standardized mortality rate attributed to household and ambient air pollution" + ], + "memberList": [ + "sdg/SH_STA_ASAIRP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_STA_BRTC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of births attended by skilled health personnel" + ], + "memberList": [ + "sdg/SH_STA_BRTC" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_STA_FGMS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of girls and women aged 15-49 years who have undergone female genital mutilation by Age group" + ], + "memberList": [ + "sdg/SH_STA_FGMS.AGE--Y15T19__SEX--F", + "sdg/SH_STA_FGMS.AGE--Y15T49__SEX--F" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_STA_MALR.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Malaria incidence per 1", + "000 population at risk" + ], + "memberList": [ + "sdg/SH_STA_MALR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_STA_MORT.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Maternal mortality ratio" + ], + "memberList": [ + "sdg/SH_STA_MORT.SEX--F" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_STA_POISN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Mortality rate attributed to unintentional poisonings" + ], + "memberList": [ + "sdg/SH_STA_POISN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_STA_POISN.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Mortality rate attributed to unintentional poisonings by Sex" + ], + "memberList": [ + "sdg/SH_STA_POISN.SEX--F", + "sdg/SH_STA_POISN.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_STA_SCIDE.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Suicide mortality rate" + ], + "memberList": [ + "sdg/SH_STA_SCIDE" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_STA_SCIDE.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Suicide mortality rate by Sex" + ], + "memberList": [ + "sdg/SH_STA_SCIDE.SEX--F", + "sdg/SH_STA_SCIDE.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_STA_SCIDEN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of deaths attributed to suicide" + ], + "memberList": [ + "sdg/SH_STA_SCIDEN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_STA_SCIDEN.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of deaths attributed to suicide by Sex" + ], + "memberList": [ + "sdg/SH_STA_SCIDEN.SEX--F", + "sdg/SH_STA_SCIDEN.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_STA_STNT.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of children moderately or severely stunted" + ], + "memberList": [ + "sdg/SH_STA_STNT.AGE--Y0T4" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_STA_STNTN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Children moderately or severely stunted" + ], + "memberList": [ + "sdg/SH_STA_STNTN.AGE--Y0T4" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_STA_TRAF.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Death rate due to road traffic injuries" + ], + "memberList": [ + "sdg/SH_STA_TRAF" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_STA_TRAFN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of deaths rate due to road traffic injuries" + ], + "memberList": [ + "sdg/SH_STA_TRAFN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_STA_WASHARI.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Mortality rate attributed to unsafe water", + "unsafe sanitation and lack of hygiene from diarrhoea", + "intestinal nematode infections", + "malnutrition and acute respiratory infections" + ], + "memberList": [ + "sdg/SH_STA_WASHARI" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_STA_WAST.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of children moderately or severely wasted" + ], + "memberList": [ + "sdg/SH_STA_WAST.AGE--Y0T4" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_STA_WASTN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Children moderately or severely wasted" + ], + "memberList": [ + "sdg/SH_STA_WASTN.AGE--Y0T4" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_SUD_ALCOL.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Alcohol use disorders", + "12-month prevalence (15 years old and over) by Sex" + ], + "memberList": [ + "sdg/SH_SUD_ALCOL.AGE--Y_GE15", + "sdg/SH_SUD_ALCOL.AGE--Y_GE15__SEX--F", + "sdg/SH_SUD_ALCOL.AGE--Y_GE15__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_SUD_TREAT.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Coverage of treatment interventions (pharmacological", + "psychosocial and rehabilitation and aftercare services) for substance use disorders by Type of substance" + ], + "memberList": [ + "sdg/SH_SUD_TREAT.SUBSTANCE--AMPHETAMINE_TYPE", + "sdg/SH_SUD_TREAT.SUBSTANCE--COCAINE", + "sdg/SH_SUD_TREAT.SUBSTANCE--DRUGS", + "sdg/SH_SUD_TREAT.SUBSTANCE--OPIOIDS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_SUD_TREAT.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Coverage of treatment interventions (pharmacological", + "psychosocial and rehabilitation and aftercare services) for substance use disorders (Amphetamine type stimulants) by Sex" + ], + "memberList": [ + "sdg/SH_SUD_TREAT.SEX--F__SUBSTANCE--AMPHETAMINE_TYPE", + "sdg/SH_SUD_TREAT.SEX--M__SUBSTANCE--AMPHETAMINE_TYPE" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_SUD_TREAT.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Coverage of treatment interventions (pharmacological", + "psychosocial and rehabilitation and aftercare services) for substance use disorders (Cocaine) by Sex" + ], + "memberList": [ + "sdg/SH_SUD_TREAT.SEX--F__SUBSTANCE--COCAINE", + "sdg/SH_SUD_TREAT.SEX--M__SUBSTANCE--COCAINE" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_SUD_TREAT.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Coverage of treatment interventions (pharmacological", + "psychosocial and rehabilitation and aftercare services) for substance use disorders (Drugs) by Sex" + ], + "memberList": [ + "sdg/SH_SUD_TREAT.SEX--F__SUBSTANCE--DRUGS", + "sdg/SH_SUD_TREAT.SEX--M__SUBSTANCE--DRUGS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_SUD_TREAT.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Coverage of treatment interventions (pharmacological", + "psychosocial and rehabilitation and aftercare services) for substance use disorders (Opioids) by Sex" + ], + "memberList": [ + "sdg/SH_SUD_TREAT.SEX--F__SUBSTANCE--OPIOIDS", + "sdg/SH_SUD_TREAT.SEX--M__SUBSTANCE--OPIOIDS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_TBS_INCD.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Tuberculosis incidence" + ], + "memberList": [ + "sdg/SH_TBS_INCD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_TRP_INTVN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of people requiring interventions against neglected tropical diseases" + ], + "memberList": [ + "sdg/SH_TRP_INTVN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_XPD_EARN10.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population with large household expenditures on health (greater than 10%) as a share of total household expenditure or income" + ], + "memberList": [ + "sdg/SH_XPD_EARN10" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSH_XPD_EARN25.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population with large household expenditures on health (greater than 25%) as a share of total household expenditure or income" + ], + "memberList": [ + "sdg/SH_XPD_EARN25" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_AGR_LSFP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Average income of large-scale food producers", + "at purchasing-power parity rates" + ], + "memberList": [ + "sdg/SI_AGR_LSFP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_AGR_LSFP.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Average income of large-scale food producers", + "at purchasing-power parity rates by Sex" + ], + "memberList": [ + "sdg/SI_AGR_LSFP.SEX--F", + "sdg/SI_AGR_LSFP.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_AGR_SSFP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Average income of small-scale food producers", + "at purchasing-power parity rates" + ], + "memberList": [ + "sdg/SI_AGR_SSFP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_AGR_SSFP.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Average income of small-scale food producers", + "at purchasing-power parity rates by Sex" + ], + "memberList": [ + "sdg/SI_AGR_SSFP.SEX--F", + "sdg/SI_AGR_SSFP.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_COV_BENFTS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "ILO Proportion of population covered by at least one social protection benefit" + ], + "memberList": [ + "sdg/SI_COV_BENFTS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_COV_BENFTS.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "ILO Proportion of population covered by at least one social protection benefit by Sex" + ], + "memberList": [ + "sdg/SI_COV_BENFTS.SEX--F", + "sdg/SI_COV_BENFTS.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_COV_CHLD.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "ILO Proportion of children/households receiving child/family cash benefit by Sex" + ], + "memberList": [ + "sdg/SI_COV_CHLD", + "sdg/SI_COV_CHLD.SEX--F", + "sdg/SI_COV_CHLD.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_COV_CHLD.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "ILO Proportion of children/households receiving child/family cash benefit (under 15 years old) by Sex" + ], + "memberList": [ + "sdg/SI_COV_CHLD.AGE--Y0T14", + "sdg/SI_COV_CHLD.AGE--Y0T14__SEX--F", + "sdg/SI_COV_CHLD.AGE--Y0T14__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_COV_DISAB.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "ILO Proportion of population with severe disabilities receiving disability cash benefit" + ], + "memberList": [ + "sdg/SI_COV_DISAB" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_COV_DISAB.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "ILO Proportion of population with severe disabilities receiving disability cash benefit by Sex" + ], + "memberList": [ + "sdg/SI_COV_DISAB.SEX--F", + "sdg/SI_COV_DISAB.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_COV_LMKT.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "World Bank Proportion of population covered by labour market programs" + ], + "memberList": [ + "sdg/SI_COV_LMKT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_COV_LMKT.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "World Bank Proportion of population covered by labour market programs (lowest quintile)" + ], + "memberList": [ + "sdg/SI_COV_LMKT.WEALTH_QUANTILE--Q1" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_COV_MATNL.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "ILO Proportion of mothers with newborns receiving maternity cash benefit by Age group" + ], + "memberList": [ + "sdg/SI_COV_MATNL.AGE--Y15T49__SEX--F", + "sdg/SI_COV_MATNL.SEX--F" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_COV_PENSN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "ILO Proportion of population above statutory pensionable age receiving a pension", + "by Age group" + ], + "memberList": [ + "sdg/SI_COV_PENSN", + "sdg/SI_COV_PENSN.AGE--Y_GE65" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_COV_PENSN.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "ILO Proportion of population above statutory pensionable age (65 years old and over) receiving a pension by Sex" + ], + "memberList": [ + "sdg/SI_COV_PENSN.AGE--Y_GE65__SEX--F", + "sdg/SI_COV_PENSN.AGE--Y_GE65__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_COV_PENSN.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "ILO Proportion of population above statutory pensionable ageby Sex" + ], + "memberList": [ + "sdg/SI_COV_PENSN.SEX--F", + "sdg/SI_COV_PENSN.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_COV_POOR.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "ILO Proportion of poor population receiving social assistance cash benefit" + ], + "memberList": [ + "sdg/SI_COV_POOR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_COV_POOR.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "ILO Proportion of poor population receiving social assistance cash benefit by Sex" + ], + "memberList": [ + "sdg/SI_COV_POOR.SEX--F", + "sdg/SI_COV_POOR.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_COV_SOCAST.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "World Bank Proportion of population covered by social assistance programs" + ], + "memberList": [ + "sdg/SI_COV_SOCAST" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_COV_SOCAST.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "World Bank Proportion of population covered by social assistance programs (lowest quintile)" + ], + "memberList": [ + "sdg/SI_COV_SOCAST.WEALTH_QUANTILE--Q1" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_COV_SOCINS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "World Bank Proportion of population covered by social insurance programs" + ], + "memberList": [ + "sdg/SI_COV_SOCINS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_COV_SOCINS.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "World Bank Proportion of population covered by social insurance programs (lowest quintile)" + ], + "memberList": [ + "sdg/SI_COV_SOCINS.WEALTH_QUANTILE--Q1" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_COV_UEMP.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "ILO Proportion of unemployed persons receiving unemployment cash benefit by Age group" + ], + "memberList": [ + "sdg/SI_COV_UEMP", + "sdg/SI_COV_UEMP.AGE--Y_GE15" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_COV_UEMP.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "ILO Proportion of unemployed persons receiving unemployment cash benefit (15 years old and over) by Sex" + ], + "memberList": [ + "sdg/SI_COV_UEMP.AGE--Y_GE15__SEX--F", + "sdg/SI_COV_UEMP.AGE--Y_GE15__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_COV_UEMP.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "ILO Proportion of unemployed persons receiving unemployment cash benefit by Sex" + ], + "memberList": [ + "sdg/SI_COV_UEMP.SEX--F", + "sdg/SI_COV_UEMP.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_COV_VULN.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "ILO Proportion of vulnerable population receiving social assistance cash benefit by Sex" + ], + "memberList": [ + "sdg/SI_COV_VULN", + "sdg/SI_COV_VULN.SEX--F", + "sdg/SI_COV_VULN.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_COV_WKINJRY.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "ILO Proportion of employed population covered in the event of work injury by Sex" + ], + "memberList": [ + "sdg/SI_COV_WKINJRY", + "sdg/SI_COV_WKINJRY.SEX--F", + "sdg/SI_COV_WKINJRY.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_COV_WKINJRY.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "ILO Proportion of employed population covered in the event of work injury (15 years old and over) by Sex" + ], + "memberList": [ + "sdg/SI_COV_WKINJRY.AGE--Y_GE15", + "sdg/SI_COV_WKINJRY.AGE--Y_GE15__SEX--F", + "sdg/SI_COV_WKINJRY.AGE--Y_GE15__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_DST_FISP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Redistributive impact of fiscal policy", + "Gini index by Fiscal intervention stage" + ], + "memberList": [ + "sdg/SI_DST_FISP.FISCAL_INTERVENTION_STAGE--POST_CON_INC", + "sdg/SI_DST_FISP.FISCAL_INTERVENTION_STAGE--POST_DIS_INC", + "sdg/SI_DST_FISP.FISCAL_INTERVENTION_STAGE--PRE_INC" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_HEI_TOTL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Growth rates of household expenditure or income per capita" + ], + "memberList": [ + "sdg/SI_HEI_TOTL" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_HEI_TOTL.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Growth rates of household expenditure or income per capita by Quantile" + ], + "memberList": [ + "sdg/SI_HEI_TOTL.WEALTH_QUANTILE--BOTTOM40" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_POV_50MI.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of people living below 50 percent of median income by Quantile" + ], + "memberList": [ + "sdg/SI_POV_50MI.WEALTH_QUANTILE--BOTTOM50" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_POV_DAY1.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population below international poverty line" + ], + "memberList": [ + "sdg/SI_POV_DAY1" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_POV_DAY1.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population below international poverty line by Age group" + ], + "memberList": [ + "sdg/SI_POV_DAY1.AGE--Y0T14", + "sdg/SI_POV_DAY1.AGE--Y15T64", + "sdg/SI_POV_DAY1.AGE--Y_GE65" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_POV_DAY1.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population below international poverty line by Sex" + ], + "memberList": [ + "sdg/SI_POV_DAY1.SEX--F", + "sdg/SI_POV_DAY1.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_POV_DAY1.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population below international poverty line by Type of location" + ], + "memberList": [ + "sdg/SI_POV_DAY1.URBANIZATION--R", + "sdg/SI_POV_DAY1.URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_POV_EMP1.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Employed population below international poverty line by Age group" + ], + "memberList": [ + "sdg/SI_POV_EMP1.AGE--Y15T24", + "sdg/SI_POV_EMP1.AGE--Y_GE15", + "sdg/SI_POV_EMP1.AGE--Y_GE25" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_POV_EMP1.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Employed population below international poverty line (15 to 24 years old) by Sex" + ], + "memberList": [ + "sdg/SI_POV_EMP1.AGE--Y15T24__SEX--F", + "sdg/SI_POV_EMP1.AGE--Y15T24__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_POV_EMP1.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Employed population below international poverty line (15 years old and over) by Sex" + ], + "memberList": [ + "sdg/SI_POV_EMP1.AGE--Y_GE15__SEX--F", + "sdg/SI_POV_EMP1.AGE--Y_GE15__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_POV_EMP1.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Employed population below international poverty line (25 years old and over) by Sex" + ], + "memberList": [ + "sdg/SI_POV_EMP1.AGE--Y_GE25__SEX--F", + "sdg/SI_POV_EMP1.AGE--Y_GE25__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_POV_NAHC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population living below the national poverty line" + ], + "memberList": [ + "sdg/SI_POV_NAHC" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_POV_NAHC.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population living below the national poverty line by Type of location" + ], + "memberList": [ + "sdg/SI_POV_NAHC.URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_RMT_COST.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Average remittance costs of sending $200 to a receiving country as a proportion of the amount remitted" + ], + "memberList": [ + "sdg/SI_RMT_COST" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_RMT_COST_BC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Average remittance costs of sending $200 in a corridor as a proportion of the amount remitted" + ], + "memberList": [ + "sdg/SI_RMT_COST_BC" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_RMT_COST_BC.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Average remittance costs of sending $200 in a corridor as a proportion of the amount remitted by Counterpart" + ], + "memberList": [ + "sdg/SI_RMT_COST_BC.COUNTERPART--G00000020", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00000050", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00000060", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00000090", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00000140", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00000190", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00000230", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00000260", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00000290", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00000320", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00000350", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00000360", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00000380", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00000430", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00000460", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00000470", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00000480", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00000610", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00000660", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00000670", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00000700", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00000710", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00000720", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00000730", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00000790", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00000840", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00000890", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00000900", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00000910", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00000950", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00000960", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00000970", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00000980", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00001040", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00001150", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00001170", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00001200", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00001270", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00001310", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00001320", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00001350", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00001360", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00001380", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00001400", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00001480", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00001540", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00001560", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00001570", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00001610", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00001630", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00001640", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00001650", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00001660", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00001680", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00001690", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00001720", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00001750", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00001760", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00001770", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00001830", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00001930", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00002020", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00002040", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00002050", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00002080", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00002170", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00002190", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00002220", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00002290", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00002310", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00002360", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00002370", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00002380", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00002400", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00002460", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00002500", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00002540", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00002690", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00002750", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00002760", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00002800", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00002890", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00002910", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00002930", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00002960", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00002980", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00002990", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00003020", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00003060", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00003080", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00003090", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00003110", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00003130", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00003160", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00003170", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00003210", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00003220", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00003270", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00003370", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00003380", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00003400", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00003480", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00003490", + "sdg/SI_RMT_COST_BC.COUNTERPART--G00003500" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_RMT_COST_SC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "SmaRT average remittance costs of sending $200 in a corridor as a proportion of the amount remitted" + ], + "memberList": [ + "sdg/SI_RMT_COST_SC" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_RMT_COST_SC.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "SmaRT average remittance costs of sending $200 in a corridor as a proportion of the amount remitted by Counterpart" + ], + "memberList": [ + "sdg/SI_RMT_COST_SC.COUNTERPART--G00000020", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00000050", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00000060", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00000090", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00000140", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00000190", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00000230", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00000260", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00000290", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00000320", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00000350", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00000360", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00000380", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00000430", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00000460", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00000470", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00000480", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00000610", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00000660", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00000670", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00000700", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00000710", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00000720", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00000730", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00000790", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00000840", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00000890", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00000900", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00000910", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00000950", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00000960", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00000970", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00000980", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00001040", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00001150", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00001170", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00001200", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00001270", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00001310", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00001320", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00001350", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00001360", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00001380", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00001400", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00001480", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00001540", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00001560", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00001570", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00001610", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00001630", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00001640", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00001650", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00001660", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00001680", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00001690", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00001720", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00001750", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00001760", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00001770", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00001830", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00001930", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00002020", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00002040", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00002050", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00002080", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00002170", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00002190", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00002220", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00002290", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00002310", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00002360", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00002370", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00002380", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00002400", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00002460", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00002500", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00002540", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00002690", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00002750", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00002760", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00002800", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00002890", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00002910", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00002930", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00002960", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00002980", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00002990", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00003020", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00003060", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00003080", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00003090", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00003110", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00003130", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00003160", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00003170", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00003210", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00003220", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00003270", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00003370", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00003380", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00003400", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00003480", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00003490", + "sdg/SI_RMT_COST_SC.COUNTERPART--G00003500" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSI_RMT_COST_SND.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Average remittance costs of sending $200 for a sending country as a proportion of the amount remitted" + ], + "memberList": [ + "sdg/SI_RMT_COST_SND" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_CPA_YEMP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Existence of a developed and operationalized national strategy for youth employment", + "as a distinct strategy or as part of a national employment strategy" + ], + "memberList": [ + "sdg/SL_CPA_YEMP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (10 to 14 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y10T14__SEX--F", + "sdg/SL_DOM_TSPD.AGE--Y10T14__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (10 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y_GE10__SEX--F", + "sdg/SL_DOM_TSPD.AGE--Y_GE10__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (12 to 14 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y12T14__SEX--F", + "sdg/SL_DOM_TSPD.AGE--Y12T14__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (12 to 19 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y12T19__SEX--F", + "sdg/SL_DOM_TSPD.AGE--Y12T19__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (12 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y_GE12__SEX--F", + "sdg/SL_DOM_TSPD.AGE--Y_GE12__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.006" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (14 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y_GE14__SEX--F", + "sdg/SL_DOM_TSPD.AGE--Y_GE14__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.007" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (15 to 24 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y15T24__SEX--F", + "sdg/SL_DOM_TSPD.AGE--Y15T24__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.008" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (15 to 64 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y15T64__SEX--F", + "sdg/SL_DOM_TSPD.AGE--Y15T64__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.009" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (15 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y_GE15__SEX--F", + "sdg/SL_DOM_TSPD.AGE--Y_GE15__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.010" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (16 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y_GE16__SEX--F", + "sdg/SL_DOM_TSPD.AGE--Y_GE16__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.011" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (18 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y_GE18__SEX--F", + "sdg/SL_DOM_TSPD.AGE--Y_GE18__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.012" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (20 to 24 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y20T24__SEX--F", + "sdg/SL_DOM_TSPD.AGE--Y20T24__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.013" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (20 to 35 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y20T35__SEX--F", + "sdg/SL_DOM_TSPD.AGE--Y20T35__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.014" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (20 to 64 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y20T64__SEX--F", + "sdg/SL_DOM_TSPD.AGE--Y20T64__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.015" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (20 to 74 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y20T74__SEX--F", + "sdg/SL_DOM_TSPD.AGE--Y20T74__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.016" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (20 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y_GE20__SEX--F", + "sdg/SL_DOM_TSPD.AGE--Y_GE20__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.017" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (25 to 34 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y25T34__SEX--F", + "sdg/SL_DOM_TSPD.AGE--Y25T34__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.018" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (25 to 44 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y25T44__SEX--F", + "sdg/SL_DOM_TSPD.AGE--Y25T44__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.019" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (3 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y_GE3__SEX--F", + "sdg/SL_DOM_TSPD.AGE--Y_GE3__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.020" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (35 to 44 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y35T44__SEX--F", + "sdg/SL_DOM_TSPD.AGE--Y35T44__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.021" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (36 to 54 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y36T54__SEX--F", + "sdg/SL_DOM_TSPD.AGE--Y36T54__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.022" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (45 to 54 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y45T54__SEX--F", + "sdg/SL_DOM_TSPD.AGE--Y45T54__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.023" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (45 to 64 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y45T64__SEX--F", + "sdg/SL_DOM_TSPD.AGE--Y45T64__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.024" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (5 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y_GE5__SEX--F", + "sdg/SL_DOM_TSPD.AGE--Y_GE5__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.025" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (55 to 64 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y55T64__SEX--F", + "sdg/SL_DOM_TSPD.AGE--Y55T64__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.026" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (55 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y_GE55__SEX--F", + "sdg/SL_DOM_TSPD.AGE--Y_GE55__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.027" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (6 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y_GE6__SEX--F", + "sdg/SL_DOM_TSPD.AGE--Y_GE6__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.028" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (65 to 74 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y65T74__SEX--F", + "sdg/SL_DOM_TSPD.AGE--Y65T74__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.029" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (65 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y_GE65__SEX--F", + "sdg/SL_DOM_TSPD.AGE--Y_GE65__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.030" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (75 to 84 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y75T84__SEX--F", + "sdg/SL_DOM_TSPD.AGE--Y75T84__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.031" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (85 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y_GE85__SEX--F", + "sdg/SL_DOM_TSPD.AGE--Y_GE85__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.032" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (10 years old and over", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y_GE10__SEX--F__URBANIZATION--R", + "sdg/SL_DOM_TSPD.AGE--Y_GE10__SEX--M__URBANIZATION--R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.033" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (10 years old and over", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y_GE10__SEX--F__URBANIZATION--U", + "sdg/SL_DOM_TSPD.AGE--Y_GE10__SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.034" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (12 to 14 years old", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y12T14__SEX--F__URBANIZATION--R", + "sdg/SL_DOM_TSPD.AGE--Y12T14__SEX--M__URBANIZATION--R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.035" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (12 to 14 years old", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y12T14__SEX--F__URBANIZATION--U", + "sdg/SL_DOM_TSPD.AGE--Y12T14__SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.036" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (12 years old and over", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y_GE12__SEX--F__URBANIZATION--R", + "sdg/SL_DOM_TSPD.AGE--Y_GE12__SEX--M__URBANIZATION--R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.037" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (12 years old and over", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y_GE12__SEX--F__URBANIZATION--U", + "sdg/SL_DOM_TSPD.AGE--Y_GE12__SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.038" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (14 years old and over", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y_GE14__SEX--F__URBANIZATION--U", + "sdg/SL_DOM_TSPD.AGE--Y_GE14__SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.039" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (15 to 24 years old", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y15T24__SEX--F__URBANIZATION--R", + "sdg/SL_DOM_TSPD.AGE--Y15T24__SEX--M__URBANIZATION--R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.040" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (15 to 24 years old", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y15T24__SEX--F__URBANIZATION--U", + "sdg/SL_DOM_TSPD.AGE--Y15T24__SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.041" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (15 to 49 years old", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y15T49__SEX--F__URBANIZATION--R", + "sdg/SL_DOM_TSPD.AGE--Y15T49__SEX--M__URBANIZATION--R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.042" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (15 to 49 years old", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y15T49__SEX--F__URBANIZATION--U", + "sdg/SL_DOM_TSPD.AGE--Y15T49__SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.043" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (15 years old and over", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y_GE15__SEX--F__URBANIZATION--R", + "sdg/SL_DOM_TSPD.AGE--Y_GE15__SEX--M__URBANIZATION--R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.044" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (15 years old and over", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y_GE15__SEX--F__URBANIZATION--U", + "sdg/SL_DOM_TSPD.AGE--Y_GE15__SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.045" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (18 to 24 years old", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y18T24__SEX--F__URBANIZATION--U", + "sdg/SL_DOM_TSPD.AGE--Y18T24__SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.046" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (18 years old and over", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y_GE18__SEX--F__URBANIZATION--U", + "sdg/SL_DOM_TSPD.AGE--Y_GE18__SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.047" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (25 to 44 years old", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y25T44__SEX--F__URBANIZATION--R", + "sdg/SL_DOM_TSPD.AGE--Y25T44__SEX--M__URBANIZATION--R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.048" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (25 to 44 years old", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y25T44__SEX--F__URBANIZATION--U", + "sdg/SL_DOM_TSPD.AGE--Y25T44__SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.049" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (3 years old and over", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y_GE3__SEX--F__URBANIZATION--R", + "sdg/SL_DOM_TSPD.AGE--Y_GE3__SEX--M__URBANIZATION--R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.050" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (3 years old and over", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y_GE3__SEX--F__URBANIZATION--U", + "sdg/SL_DOM_TSPD.AGE--Y_GE3__SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.051" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (45 to 54 years old", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y45T54__SEX--F__URBANIZATION--R", + "sdg/SL_DOM_TSPD.AGE--Y45T54__SEX--M__URBANIZATION--R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.052" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (45 to 54 years old", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y45T54__SEX--F__URBANIZATION--U", + "sdg/SL_DOM_TSPD.AGE--Y45T54__SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.053" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (45 to 64 years old", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y45T64__SEX--F__URBANIZATION--R", + "sdg/SL_DOM_TSPD.AGE--Y45T64__SEX--M__URBANIZATION--R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.054" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (45 to 64 years old", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y45T64__SEX--F__URBANIZATION--U", + "sdg/SL_DOM_TSPD.AGE--Y45T64__SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.055" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (55 to 64 years old", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y55T64__SEX--F__URBANIZATION--R", + "sdg/SL_DOM_TSPD.AGE--Y55T64__SEX--M__URBANIZATION--R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.056" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (55 to 64 years old", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y55T64__SEX--F__URBANIZATION--U", + "sdg/SL_DOM_TSPD.AGE--Y55T64__SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.057" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (6 to 65 years old", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y6T65__SEX--F__URBANIZATION--R", + "sdg/SL_DOM_TSPD.AGE--Y6T65__SEX--M__URBANIZATION--R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.058" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (6 to 65 years old", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y6T65__SEX--F__URBANIZATION--U", + "sdg/SL_DOM_TSPD.AGE--Y6T65__SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.059" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (65 years old and over", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y_GE65__SEX--F__URBANIZATION--R", + "sdg/SL_DOM_TSPD.AGE--Y_GE65__SEX--M__URBANIZATION--R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.060" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (65 years old and over", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.AGE--Y_GE65__SEX--F__URBANIZATION--U", + "sdg/SL_DOM_TSPD.AGE--Y_GE65__SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPD.061" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPD.SEX--F", + "sdg/SL_DOM_TSPD.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (10 to 14 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y10T14__SEX--F", + "sdg/SL_DOM_TSPDCW.AGE--Y10T14__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (10 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y_GE10__SEX--F", + "sdg/SL_DOM_TSPDCW.AGE--Y_GE10__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (12 to 14 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y12T14__SEX--F", + "sdg/SL_DOM_TSPDCW.AGE--Y12T14__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (12 to 19 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y12T19__SEX--F", + "sdg/SL_DOM_TSPDCW.AGE--Y12T19__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (12 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y_GE12__SEX--F", + "sdg/SL_DOM_TSPDCW.AGE--Y_GE12__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.006" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (14 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y_GE14__SEX--F", + "sdg/SL_DOM_TSPDCW.AGE--Y_GE14__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.007" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (15 to 24 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y15T24__SEX--F", + "sdg/SL_DOM_TSPDCW.AGE--Y15T24__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.008" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (15 to 64 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y15T64__SEX--F", + "sdg/SL_DOM_TSPDCW.AGE--Y15T64__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.009" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (15 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y_GE15__SEX--F", + "sdg/SL_DOM_TSPDCW.AGE--Y_GE15__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.010" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (16 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y_GE16__SEX--F", + "sdg/SL_DOM_TSPDCW.AGE--Y_GE16__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.011" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (20 to 24 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y20T24__SEX--F", + "sdg/SL_DOM_TSPDCW.AGE--Y20T24__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.012" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (20 to 35 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y20T35__SEX--F", + "sdg/SL_DOM_TSPDCW.AGE--Y20T35__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.013" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (20 to 64 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y20T64__SEX--F", + "sdg/SL_DOM_TSPDCW.AGE--Y20T64__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.014" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (20 to 74 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y20T74__SEX--F", + "sdg/SL_DOM_TSPDCW.AGE--Y20T74__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.015" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (20 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y_GE20__SEX--F", + "sdg/SL_DOM_TSPDCW.AGE--Y_GE20__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.016" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (25 to 34 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y25T34__SEX--F", + "sdg/SL_DOM_TSPDCW.AGE--Y25T34__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.017" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (25 to 44 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y25T44__SEX--F", + "sdg/SL_DOM_TSPDCW.AGE--Y25T44__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.018" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (3 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y_GE3__SEX--F", + "sdg/SL_DOM_TSPDCW.AGE--Y_GE3__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.019" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (35 to 44 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y35T44__SEX--F", + "sdg/SL_DOM_TSPDCW.AGE--Y35T44__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.020" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (36 to 54 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y36T54__SEX--F", + "sdg/SL_DOM_TSPDCW.AGE--Y36T54__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.021" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (45 to 54 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y45T54__SEX--F", + "sdg/SL_DOM_TSPDCW.AGE--Y45T54__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.022" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (45 to 64 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y45T64__SEX--F", + "sdg/SL_DOM_TSPDCW.AGE--Y45T64__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.023" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (5 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y_GE5__SEX--F", + "sdg/SL_DOM_TSPDCW.AGE--Y_GE5__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.024" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (55 to 64 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y55T64__SEX--F", + "sdg/SL_DOM_TSPDCW.AGE--Y55T64__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.025" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (55 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y_GE55__SEX--F", + "sdg/SL_DOM_TSPDCW.AGE--Y_GE55__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.026" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (6 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y_GE6__SEX--F", + "sdg/SL_DOM_TSPDCW.AGE--Y_GE6__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.027" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (65 to 74 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y65T74__SEX--F", + "sdg/SL_DOM_TSPDCW.AGE--Y65T74__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.028" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (65 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y_GE65__SEX--F", + "sdg/SL_DOM_TSPDCW.AGE--Y_GE65__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.029" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (75 to 84 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y75T84__SEX--F", + "sdg/SL_DOM_TSPDCW.AGE--Y75T84__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.030" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (85 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y_GE85__SEX--F", + "sdg/SL_DOM_TSPDCW.AGE--Y_GE85__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.031" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (10 years old and over", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y_GE10__SEX--F__URBANIZATION--R", + "sdg/SL_DOM_TSPDCW.AGE--Y_GE10__SEX--M__URBANIZATION--R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.032" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (10 years old and over", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y_GE10__SEX--F__URBANIZATION--U", + "sdg/SL_DOM_TSPDCW.AGE--Y_GE10__SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.033" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (12 to 14 years old", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y12T14__SEX--F__URBANIZATION--R", + "sdg/SL_DOM_TSPDCW.AGE--Y12T14__SEX--M__URBANIZATION--R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.034" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (12 to 14 years old", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y12T14__SEX--F__URBANIZATION--U", + "sdg/SL_DOM_TSPDCW.AGE--Y12T14__SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.035" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (12 years old and over", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y_GE12__SEX--F__URBANIZATION--R", + "sdg/SL_DOM_TSPDCW.AGE--Y_GE12__SEX--M__URBANIZATION--R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.036" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (12 years old and over", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y_GE12__SEX--F__URBANIZATION--U", + "sdg/SL_DOM_TSPDCW.AGE--Y_GE12__SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.037" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (14 years old and over", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y_GE14__SEX--F__URBANIZATION--U", + "sdg/SL_DOM_TSPDCW.AGE--Y_GE14__SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.038" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (15 to 24 years old", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y15T24__SEX--F__URBANIZATION--R", + "sdg/SL_DOM_TSPDCW.AGE--Y15T24__SEX--M__URBANIZATION--R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.039" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (15 to 24 years old", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y15T24__SEX--F__URBANIZATION--U", + "sdg/SL_DOM_TSPDCW.AGE--Y15T24__SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.040" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (15 years old and over", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y_GE15__SEX--F__URBANIZATION--R", + "sdg/SL_DOM_TSPDCW.AGE--Y_GE15__SEX--M__URBANIZATION--R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.041" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (15 years old and over", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y_GE15__SEX--F__URBANIZATION--U", + "sdg/SL_DOM_TSPDCW.AGE--Y_GE15__SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.042" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (18 to 24 years old", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y18T24__SEX--F__URBANIZATION--U", + "sdg/SL_DOM_TSPDCW.AGE--Y18T24__SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.043" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (18 years old and over", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y_GE18__SEX--F__URBANIZATION--U", + "sdg/SL_DOM_TSPDCW.AGE--Y_GE18__SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.044" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (25 to 44 years old", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y25T44__SEX--F__URBANIZATION--R", + "sdg/SL_DOM_TSPDCW.AGE--Y25T44__SEX--M__URBANIZATION--R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.045" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (25 to 44 years old", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y25T44__SEX--F__URBANIZATION--U", + "sdg/SL_DOM_TSPDCW.AGE--Y25T44__SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.046" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (3 years old and over", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y_GE3__SEX--F__URBANIZATION--R", + "sdg/SL_DOM_TSPDCW.AGE--Y_GE3__SEX--M__URBANIZATION--R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.047" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (3 years old and over", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y_GE3__SEX--F__URBANIZATION--U", + "sdg/SL_DOM_TSPDCW.AGE--Y_GE3__SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.048" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (45 to 54 years old", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y45T54__SEX--F__URBANIZATION--R", + "sdg/SL_DOM_TSPDCW.AGE--Y45T54__SEX--M__URBANIZATION--R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.049" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (45 to 54 years old", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y45T54__SEX--F__URBANIZATION--U", + "sdg/SL_DOM_TSPDCW.AGE--Y45T54__SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.050" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (45 to 64 years old", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y45T64__SEX--F__URBANIZATION--R", + "sdg/SL_DOM_TSPDCW.AGE--Y45T64__SEX--M__URBANIZATION--R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.051" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (45 to 64 years old", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y45T64__SEX--F__URBANIZATION--U", + "sdg/SL_DOM_TSPDCW.AGE--Y45T64__SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.052" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (55 to 64 years old", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y55T64__SEX--F__URBANIZATION--R", + "sdg/SL_DOM_TSPDCW.AGE--Y55T64__SEX--M__URBANIZATION--R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.053" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (55 to 64 years old", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y55T64__SEX--F__URBANIZATION--U", + "sdg/SL_DOM_TSPDCW.AGE--Y55T64__SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.054" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (65 years old and over", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y_GE65__SEX--F__URBANIZATION--R", + "sdg/SL_DOM_TSPDCW.AGE--Y_GE65__SEX--M__URBANIZATION--R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.055" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work (65 years old and over", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.AGE--Y_GE65__SEX--F__URBANIZATION--U", + "sdg/SL_DOM_TSPDCW.AGE--Y_GE65__SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDCW.056" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid care work by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDCW.SEX--F", + "sdg/SL_DOM_TSPDCW.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (10 to 14 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y10T14__SEX--F", + "sdg/SL_DOM_TSPDDC.AGE--Y10T14__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (10 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y_GE10__SEX--F", + "sdg/SL_DOM_TSPDDC.AGE--Y_GE10__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (12 to 14 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y12T14__SEX--F", + "sdg/SL_DOM_TSPDDC.AGE--Y12T14__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (12 to 19 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y12T19__SEX--F", + "sdg/SL_DOM_TSPDDC.AGE--Y12T19__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (12 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y_GE12__SEX--F", + "sdg/SL_DOM_TSPDDC.AGE--Y_GE12__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.006" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (14 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y_GE14__SEX--F", + "sdg/SL_DOM_TSPDDC.AGE--Y_GE14__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.007" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (15 to 24 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y15T24__SEX--F", + "sdg/SL_DOM_TSPDDC.AGE--Y15T24__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.008" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (15 to 64 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y15T64__SEX--F", + "sdg/SL_DOM_TSPDDC.AGE--Y15T64__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.009" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (15 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y_GE15__SEX--F", + "sdg/SL_DOM_TSPDDC.AGE--Y_GE15__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.010" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (16 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y_GE16__SEX--F", + "sdg/SL_DOM_TSPDDC.AGE--Y_GE16__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.011" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (20 to 24 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y20T24__SEX--F", + "sdg/SL_DOM_TSPDDC.AGE--Y20T24__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.012" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (20 to 35 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y20T35__SEX--F", + "sdg/SL_DOM_TSPDDC.AGE--Y20T35__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.013" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (20 to 64 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y20T64__SEX--F", + "sdg/SL_DOM_TSPDDC.AGE--Y20T64__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.014" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (20 to 74 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y20T74__SEX--F", + "sdg/SL_DOM_TSPDDC.AGE--Y20T74__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.015" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (20 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y_GE20__SEX--F", + "sdg/SL_DOM_TSPDDC.AGE--Y_GE20__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.016" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (25 to 34 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y25T34__SEX--F", + "sdg/SL_DOM_TSPDDC.AGE--Y25T34__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.017" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (25 to 44 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y25T44__SEX--F", + "sdg/SL_DOM_TSPDDC.AGE--Y25T44__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.018" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (3 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y_GE3__SEX--F", + "sdg/SL_DOM_TSPDDC.AGE--Y_GE3__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.019" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (35 to 44 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y35T44__SEX--F", + "sdg/SL_DOM_TSPDDC.AGE--Y35T44__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.020" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (36 to 54 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y36T54__SEX--F", + "sdg/SL_DOM_TSPDDC.AGE--Y36T54__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.021" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (45 to 54 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y45T54__SEX--F", + "sdg/SL_DOM_TSPDDC.AGE--Y45T54__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.022" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (45 to 64 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y45T64__SEX--F", + "sdg/SL_DOM_TSPDDC.AGE--Y45T64__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.023" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (5 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y_GE5__SEX--F", + "sdg/SL_DOM_TSPDDC.AGE--Y_GE5__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.024" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (55 to 64 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y55T64__SEX--F", + "sdg/SL_DOM_TSPDDC.AGE--Y55T64__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.025" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (55 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y_GE55__SEX--F", + "sdg/SL_DOM_TSPDDC.AGE--Y_GE55__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.026" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (6 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y_GE6__SEX--F", + "sdg/SL_DOM_TSPDDC.AGE--Y_GE6__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.027" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (65 to 74 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y65T74__SEX--F", + "sdg/SL_DOM_TSPDDC.AGE--Y65T74__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.028" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (65 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y_GE65__SEX--F", + "sdg/SL_DOM_TSPDDC.AGE--Y_GE65__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.029" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (75 to 84 years old) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y75T84__SEX--F", + "sdg/SL_DOM_TSPDDC.AGE--Y75T84__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.030" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (85 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y_GE85__SEX--F", + "sdg/SL_DOM_TSPDDC.AGE--Y_GE85__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.031" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (10 years old and over", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y_GE10__SEX--F__URBANIZATION--R", + "sdg/SL_DOM_TSPDDC.AGE--Y_GE10__SEX--M__URBANIZATION--R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.032" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (10 years old and over", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y_GE10__SEX--F__URBANIZATION--U", + "sdg/SL_DOM_TSPDDC.AGE--Y_GE10__SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.033" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (12 to 14 years old", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y12T14__SEX--F__URBANIZATION--R", + "sdg/SL_DOM_TSPDDC.AGE--Y12T14__SEX--M__URBANIZATION--R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.034" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (12 to 14 years old", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y12T14__SEX--F__URBANIZATION--U", + "sdg/SL_DOM_TSPDDC.AGE--Y12T14__SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.035" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (12 years old and over", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y_GE12__SEX--F__URBANIZATION--R", + "sdg/SL_DOM_TSPDDC.AGE--Y_GE12__SEX--M__URBANIZATION--R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.036" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (12 years old and over", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y_GE12__SEX--F__URBANIZATION--U", + "sdg/SL_DOM_TSPDDC.AGE--Y_GE12__SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.037" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (14 years old and over", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y_GE14__SEX--F__URBANIZATION--U", + "sdg/SL_DOM_TSPDDC.AGE--Y_GE14__SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.038" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (15 to 24 years old", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y15T24__SEX--F__URBANIZATION--R", + "sdg/SL_DOM_TSPDDC.AGE--Y15T24__SEX--M__URBANIZATION--R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.039" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (15 to 24 years old", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y15T24__SEX--F__URBANIZATION--U", + "sdg/SL_DOM_TSPDDC.AGE--Y15T24__SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.040" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (15 years old and over", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y_GE15__SEX--F__URBANIZATION--R", + "sdg/SL_DOM_TSPDDC.AGE--Y_GE15__SEX--M__URBANIZATION--R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.041" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (15 years old and over", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y_GE15__SEX--F__URBANIZATION--U", + "sdg/SL_DOM_TSPDDC.AGE--Y_GE15__SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.042" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (18 to 24 years old", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y18T24__SEX--F__URBANIZATION--U", + "sdg/SL_DOM_TSPDDC.AGE--Y18T24__SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.043" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (18 years old and over", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y_GE18__SEX--F__URBANIZATION--U", + "sdg/SL_DOM_TSPDDC.AGE--Y_GE18__SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.044" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (25 to 44 years old", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y25T44__SEX--F__URBANIZATION--R", + "sdg/SL_DOM_TSPDDC.AGE--Y25T44__SEX--M__URBANIZATION--R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.045" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (25 to 44 years old", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y25T44__SEX--F__URBANIZATION--U", + "sdg/SL_DOM_TSPDDC.AGE--Y25T44__SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.046" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (3 years old and over", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y_GE3__SEX--F__URBANIZATION--R", + "sdg/SL_DOM_TSPDDC.AGE--Y_GE3__SEX--M__URBANIZATION--R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.047" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (3 years old and over", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y_GE3__SEX--F__URBANIZATION--U", + "sdg/SL_DOM_TSPDDC.AGE--Y_GE3__SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.048" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (45 to 54 years old", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y45T54__SEX--F__URBANIZATION--R", + "sdg/SL_DOM_TSPDDC.AGE--Y45T54__SEX--M__URBANIZATION--R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.049" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (45 to 54 years old", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y45T54__SEX--F__URBANIZATION--U", + "sdg/SL_DOM_TSPDDC.AGE--Y45T54__SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.050" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (45 to 64 years old", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y45T64__SEX--F__URBANIZATION--R", + "sdg/SL_DOM_TSPDDC.AGE--Y45T64__SEX--M__URBANIZATION--R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.051" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (45 to 64 years old", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y45T64__SEX--F__URBANIZATION--U", + "sdg/SL_DOM_TSPDDC.AGE--Y45T64__SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.052" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (55 to 64 years old", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y55T64__SEX--F__URBANIZATION--R", + "sdg/SL_DOM_TSPDDC.AGE--Y55T64__SEX--M__URBANIZATION--R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.053" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (55 to 64 years old", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y55T64__SEX--F__URBANIZATION--U", + "sdg/SL_DOM_TSPDDC.AGE--Y55T64__SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.054" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (65 years old and over", + "Rural) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y_GE65__SEX--F__URBANIZATION--R", + "sdg/SL_DOM_TSPDDC.AGE--Y_GE65__SEX--M__URBANIZATION--R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.055" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (65 years old and over", + "Urban) by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.AGE--Y_GE65__SEX--F__URBANIZATION--U", + "sdg/SL_DOM_TSPDDC.AGE--Y_GE65__SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_DOM_TSPDDC.056" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores by Sex" + ], + "memberList": [ + "sdg/SL_DOM_TSPDDC.SEX--F", + "sdg/SL_DOM_TSPDDC.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_EMP_EARN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Average hourly earnings of employees in local currency by Age group" + ], + "memberList": [ + "sdg/SL_EMP_EARN.AGE--Y_GE15" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_EMP_EARN.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Average hourly earnings of employees in local currency (15 years old and over) by Major groups of ISCO-08" + ], + "memberList": [ + "sdg/SL_EMP_EARN.AGE--Y_GE15__OCCUPATION--ISCO08_0", + "sdg/SL_EMP_EARN.AGE--Y_GE15__OCCUPATION--ISCO08_1", + "sdg/SL_EMP_EARN.AGE--Y_GE15__OCCUPATION--ISCO08_2", + "sdg/SL_EMP_EARN.AGE--Y_GE15__OCCUPATION--ISCO08_3", + "sdg/SL_EMP_EARN.AGE--Y_GE15__OCCUPATION--ISCO08_4", + "sdg/SL_EMP_EARN.AGE--Y_GE15__OCCUPATION--ISCO08_5", + "sdg/SL_EMP_EARN.AGE--Y_GE15__OCCUPATION--ISCO08_6", + "sdg/SL_EMP_EARN.AGE--Y_GE15__OCCUPATION--ISCO08_7", + "sdg/SL_EMP_EARN.AGE--Y_GE15__OCCUPATION--ISCO08_8", + "sdg/SL_EMP_EARN.AGE--Y_GE15__OCCUPATION--ISCO08_9", + "sdg/SL_EMP_EARN.AGE--Y_GE15__OCCUPATION--ISCO08_X" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_EMP_EARN.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Average hourly earnings of employees in local currency (15 years old and over) by Major groups of ISCO-88" + ], + "memberList": [ + "sdg/SL_EMP_EARN.AGE--Y_GE15__OCCUPATION--ISCO88_0", + "sdg/SL_EMP_EARN.AGE--Y_GE15__OCCUPATION--ISCO88_1", + "sdg/SL_EMP_EARN.AGE--Y_GE15__OCCUPATION--ISCO88_2", + "sdg/SL_EMP_EARN.AGE--Y_GE15__OCCUPATION--ISCO88_3", + "sdg/SL_EMP_EARN.AGE--Y_GE15__OCCUPATION--ISCO88_4", + "sdg/SL_EMP_EARN.AGE--Y_GE15__OCCUPATION--ISCO88_5", + "sdg/SL_EMP_EARN.AGE--Y_GE15__OCCUPATION--ISCO88_6", + "sdg/SL_EMP_EARN.AGE--Y_GE15__OCCUPATION--ISCO88_7", + "sdg/SL_EMP_EARN.AGE--Y_GE15__OCCUPATION--ISCO88_8", + "sdg/SL_EMP_EARN.AGE--Y_GE15__OCCUPATION--ISCO88_9", + "sdg/SL_EMP_EARN.AGE--Y_GE15__OCCUPATION--ISCO88_X" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_EMP_EARN.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Average hourly earnings of employees in local currency (15 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F", + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M", + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--_O" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_EMP_EARN.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Average hourly earnings of employees in local currency (15 years old and over", + "Female) by Major groups of ISCO-08" + ], + "memberList": [ + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F__OCCUPATION--ISCO08_0", + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F__OCCUPATION--ISCO08_1", + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F__OCCUPATION--ISCO08_2", + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F__OCCUPATION--ISCO08_3", + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F__OCCUPATION--ISCO08_4", + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F__OCCUPATION--ISCO08_5", + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F__OCCUPATION--ISCO08_6", + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F__OCCUPATION--ISCO08_7", + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F__OCCUPATION--ISCO08_8", + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F__OCCUPATION--ISCO08_9", + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F__OCCUPATION--ISCO08_X" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_EMP_EARN.006" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Average hourly earnings of employees in local currency (15 years old and over", + "Male) by Major groups of ISCO-08" + ], + "memberList": [ + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M__OCCUPATION--ISCO08_0", + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M__OCCUPATION--ISCO08_1", + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M__OCCUPATION--ISCO08_2", + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M__OCCUPATION--ISCO08_3", + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M__OCCUPATION--ISCO08_4", + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M__OCCUPATION--ISCO08_5", + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M__OCCUPATION--ISCO08_6", + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M__OCCUPATION--ISCO08_7", + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M__OCCUPATION--ISCO08_8", + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M__OCCUPATION--ISCO08_9", + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M__OCCUPATION--ISCO08_X" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_EMP_EARN.007" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Average hourly earnings of employees in local currency (15 years old and over", + "Female) by Major groups of ISCO-88" + ], + "memberList": [ + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F__OCCUPATION--ISCO88_0", + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F__OCCUPATION--ISCO88_1", + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F__OCCUPATION--ISCO88_2", + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F__OCCUPATION--ISCO88_3", + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F__OCCUPATION--ISCO88_4", + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F__OCCUPATION--ISCO88_5", + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F__OCCUPATION--ISCO88_6", + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F__OCCUPATION--ISCO88_7", + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F__OCCUPATION--ISCO88_8", + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F__OCCUPATION--ISCO88_9", + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F__OCCUPATION--ISCO88_X" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_EMP_EARN.008" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Average hourly earnings of employees in local currency (15 years old and over", + "Male) by Major groups of ISCO-88" + ], + "memberList": [ + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M__OCCUPATION--ISCO88_0", + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M__OCCUPATION--ISCO88_1", + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M__OCCUPATION--ISCO88_2", + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M__OCCUPATION--ISCO88_3", + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M__OCCUPATION--ISCO88_4", + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M__OCCUPATION--ISCO88_5", + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M__OCCUPATION--ISCO88_6", + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M__OCCUPATION--ISCO88_7", + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M__OCCUPATION--ISCO88_8", + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M__OCCUPATION--ISCO88_9", + "sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M__OCCUPATION--ISCO88_X" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_EMP_FTLINJUR.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Fatal occupational injuries among employees" + ], + "memberList": [ + "sdg/SL_EMP_FTLINJUR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_EMP_FTLINJUR.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Fatal occupational injuries among employees by Migratory status" + ], + "memberList": [ + "sdg/SL_EMP_FTLINJUR.MIGRATORY_STATUS--EUMIGRANT", + "sdg/SL_EMP_FTLINJUR.MIGRATORY_STATUS--MIGRANT", + "sdg/SL_EMP_FTLINJUR.MIGRATORY_STATUS--NOMIGRANT", + "sdg/SL_EMP_FTLINJUR.MIGRATORY_STATUS--NONEUMIGRANT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_EMP_FTLINJUR.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Fatal occupational injuries among employees by Sex" + ], + "memberList": [ + "sdg/SL_EMP_FTLINJUR.SEX--F", + "sdg/SL_EMP_FTLINJUR.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_EMP_FTLINJUR.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Fatal occupational injuries among employees (Female) by Migratory status" + ], + "memberList": [ + "sdg/SL_EMP_FTLINJUR.SEX--F__MIGRATORY_STATUS--EUMIGRANT", + "sdg/SL_EMP_FTLINJUR.SEX--F__MIGRATORY_STATUS--MIGRANT", + "sdg/SL_EMP_FTLINJUR.SEX--F__MIGRATORY_STATUS--NOMIGRANT", + "sdg/SL_EMP_FTLINJUR.SEX--F__MIGRATORY_STATUS--NONEUMIGRANT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_EMP_FTLINJUR.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Fatal occupational injuries among employees (Male) by Migratory status" + ], + "memberList": [ + "sdg/SL_EMP_FTLINJUR.SEX--M__MIGRATORY_STATUS--EUMIGRANT", + "sdg/SL_EMP_FTLINJUR.SEX--M__MIGRATORY_STATUS--MIGRANT", + "sdg/SL_EMP_FTLINJUR.SEX--M__MIGRATORY_STATUS--NOMIGRANT", + "sdg/SL_EMP_FTLINJUR.SEX--M__MIGRATORY_STATUS--NONEUMIGRANT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_EMP_GTOTL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Labour share of GDP by Age group" + ], + "memberList": [ + "sdg/SL_EMP_GTOTL.AGE--Y_GE15" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_EMP_INJUR.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Non-fatal occupational injuries among employees" + ], + "memberList": [ + "sdg/SL_EMP_INJUR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_EMP_INJUR.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Non-fatal occupational injuries among employees by Migratory status" + ], + "memberList": [ + "sdg/SL_EMP_INJUR.MIGRATORY_STATUS--EUMIGRANT", + "sdg/SL_EMP_INJUR.MIGRATORY_STATUS--MIGRANT", + "sdg/SL_EMP_INJUR.MIGRATORY_STATUS--NOMIGRANT", + "sdg/SL_EMP_INJUR.MIGRATORY_STATUS--NONEUMIGRANT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_EMP_INJUR.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Non-fatal occupational injuries among employees by Sex" + ], + "memberList": [ + "sdg/SL_EMP_INJUR.SEX--F", + "sdg/SL_EMP_INJUR.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_EMP_INJUR.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Non-fatal occupational injuries among employees (Female) by Migratory status" + ], + "memberList": [ + "sdg/SL_EMP_INJUR.SEX--F__MIGRATORY_STATUS--EUMIGRANT", + "sdg/SL_EMP_INJUR.SEX--F__MIGRATORY_STATUS--MIGRANT", + "sdg/SL_EMP_INJUR.SEX--F__MIGRATORY_STATUS--NOMIGRANT", + "sdg/SL_EMP_INJUR.SEX--F__MIGRATORY_STATUS--NONEUMIGRANT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_EMP_INJUR.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Non-fatal occupational injuries among employees (Male) by Migratory status" + ], + "memberList": [ + "sdg/SL_EMP_INJUR.SEX--M__MIGRATORY_STATUS--EUMIGRANT", + "sdg/SL_EMP_INJUR.SEX--M__MIGRATORY_STATUS--MIGRANT", + "sdg/SL_EMP_INJUR.SEX--M__MIGRATORY_STATUS--NOMIGRANT", + "sdg/SL_EMP_INJUR.SEX--M__MIGRATORY_STATUS--NONEUMIGRANT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_EMP_PCAP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Annual growth rate of real GDP per employed person (15 years old and over)" + ], + "memberList": [ + "sdg/SL_EMP_PCAP.AGE--Y_GE15" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_EMP_RCOST_MO.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Migrant recruitment costs (number of months of earnings) by Sex" + ], + "memberList": [ + "sdg/SL_EMP_RCOST_MO.MIGRATORY_STATUS--MIGRANT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_EMP_RCOST_MO.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Migrant recruitment costs (number of months of earnings) by Sex" + ], + "memberList": [ + "sdg/SL_EMP_RCOST_MO.SEX--F__MIGRATORY_STATUS--MIGRANT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_EMP_RCOST_MO.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Migrant recruitment costs (number of months of earnings) by Sex" + ], + "memberList": [ + "sdg/SL_EMP_RCOST_MO.SEX--M__MIGRATORY_STATUS--MIGRANT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_ISV_IFEM.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of informal employment", + "previous definition (15 years old and over)" + ], + "memberList": [ + "sdg/SL_ISV_IFEM.AGE--Y_GE15" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_ISV_IFEM.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of informal employment", + "previous definition (15 years old and over) by sector" + ], + "memberList": [ + "sdg/SL_ISV_IFEM.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_A", + "sdg/SL_ISV_IFEM.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_BTU" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_ISV_IFEM.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of informal employment", + "previous definition (15 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_ISV_IFEM.AGE--Y_GE15__SEX--F", + "sdg/SL_ISV_IFEM.AGE--Y_GE15__SEX--M", + "sdg/SL_ISV_IFEM.AGE--Y_GE15__SEX--_O" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_ISV_IFEM.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of informal employment", + "previous definition (15 years old and over) in agriculture", + "forestry and fishing (ISIC4 - A)", + "by sex" + ], + "memberList": [ + "sdg/SL_ISV_IFEM.AGE--Y_GE15__SEX--F__ECONOMIC_ACTIVITY--ISIC4_A", + "sdg/SL_ISV_IFEM.AGE--Y_GE15__SEX--M__ECONOMIC_ACTIVITY--ISIC4_A", + "sdg/SL_ISV_IFEM.AGE--Y_GE15__SEX--_O__ECONOMIC_ACTIVITY--ISIC4_A" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_ISV_IFEM.008" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of informal employment", + "previous definition (15 years old and over) in non - agriculture (ISIC4 - B through U)", + "by sex" + ], + "memberList": [ + "sdg/SL_ISV_IFEM.AGE--Y_GE15__SEX--F__ECONOMIC_ACTIVITY--ISIC4_BTU", + "sdg/SL_ISV_IFEM.AGE--Y_GE15__SEX--M__ECONOMIC_ACTIVITY--ISIC4_BTU", + "sdg/SL_ISV_IFEM.AGE--Y_GE15__SEX--_O__ECONOMIC_ACTIVITY--ISIC4_BTU" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_ISV_IFEM_19ICLS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of informal employment", + "current definition (15 years old and over)" + ], + "memberList": [ + "sdg/SL_ISV_IFEM_19ICLS.AGE--Y_GE15" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_ISV_IFEM_19ICLS.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of informal employment", + "current definition (15 years old and over) by sector" + ], + "memberList": [ + "sdg/SL_ISV_IFEM_19ICLS.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_A", + "sdg/SL_ISV_IFEM_19ICLS.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_BTU" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_ISV_IFEM_19ICLS.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of informal employment", + "current definition (15 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_ISV_IFEM_19ICLS.AGE--Y_GE15__SEX--F", + "sdg/SL_ISV_IFEM_19ICLS.AGE--Y_GE15__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_ISV_IFEM_19ICLS.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of informal employment", + "current definition (15 years old and over) in agriculture", + "forestry and fishing (ISIC4 - A)", + "by sex" + ], + "memberList": [ + "sdg/SL_ISV_IFEM_19ICLS.AGE--Y_GE15__SEX--F__ECONOMIC_ACTIVITY--ISIC4_A", + "sdg/SL_ISV_IFEM_19ICLS.AGE--Y_GE15__SEX--M__ECONOMIC_ACTIVITY--ISIC4_A" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_ISV_IFEM_19ICLS.007" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of informal employment", + "current definition (15 years old and over) in non - agriculture (ISIC4 - B through U)", + "by sex" + ], + "memberList": [ + "sdg/SL_ISV_IFEM_19ICLS.AGE--Y_GE15__SEX--F__ECONOMIC_ACTIVITY--ISIC4_BTU", + "sdg/SL_ISV_IFEM_19ICLS.AGE--Y_GE15__SEX--M__ECONOMIC_ACTIVITY--ISIC4_BTU" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_LBR_NTLCPL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Level of national compliance with labour rights (freedom of association and collective bargaining) based on International Labour Organization (ILO) textual sources and national legislation" + ], + "memberList": [ + "sdg/SL_LBR_NTLCPL" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_TLF_CHLDEA.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of children engaged in economic activity by Age group" + ], + "memberList": [ + "sdg/SL_TLF_CHLDEA.AGE--Y10T17", + "sdg/SL_TLF_CHLDEA.AGE--Y5T14", + "sdg/SL_TLF_CHLDEA.AGE--Y5T17", + "sdg/SL_TLF_CHLDEA.AGE--Y6T17", + "sdg/SL_TLF_CHLDEA.AGE--Y7T17" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_TLF_CHLDEA.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of children engaged in economic activity (10 to 17 years old) by Sex" + ], + "memberList": [ + "sdg/SL_TLF_CHLDEA.AGE--Y10T17__SEX--F", + "sdg/SL_TLF_CHLDEA.AGE--Y10T17__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_TLF_CHLDEA.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of children engaged in economic activity (5 to 14 years old) by Sex" + ], + "memberList": [ + "sdg/SL_TLF_CHLDEA.AGE--Y5T14__SEX--F", + "sdg/SL_TLF_CHLDEA.AGE--Y5T14__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_TLF_CHLDEA.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of children engaged in economic activity (5 to 17 years old) by Sex" + ], + "memberList": [ + "sdg/SL_TLF_CHLDEA.AGE--Y5T17__SEX--F", + "sdg/SL_TLF_CHLDEA.AGE--Y5T17__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_TLF_CHLDEA.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of children engaged in economic activity (6 to 17 years old) by Sex" + ], + "memberList": [ + "sdg/SL_TLF_CHLDEA.AGE--Y6T17__SEX--F", + "sdg/SL_TLF_CHLDEA.AGE--Y6T17__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_TLF_CHLDEA.006" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of children engaged in economic activity (7 to 17 years old) by Sex" + ], + "memberList": [ + "sdg/SL_TLF_CHLDEA.AGE--Y7T17__SEX--F", + "sdg/SL_TLF_CHLDEA.AGE--Y7T17__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_TLF_CHLDEC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of children engaged in economic activity and household chores by Age group" + ], + "memberList": [ + "sdg/SL_TLF_CHLDEC.AGE--Y10T17", + "sdg/SL_TLF_CHLDEC.AGE--Y5T14", + "sdg/SL_TLF_CHLDEC.AGE--Y5T17", + "sdg/SL_TLF_CHLDEC.AGE--Y6T17", + "sdg/SL_TLF_CHLDEC.AGE--Y7T17" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_TLF_CHLDEC.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of children engaged in economic activity and household chores (10 to 17 years old) by Sex" + ], + "memberList": [ + "sdg/SL_TLF_CHLDEC.AGE--Y10T17__SEX--F", + "sdg/SL_TLF_CHLDEC.AGE--Y10T17__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_TLF_CHLDEC.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of children engaged in economic activity and household chores (5 to 14 years old) by Sex" + ], + "memberList": [ + "sdg/SL_TLF_CHLDEC.AGE--Y5T14__SEX--F", + "sdg/SL_TLF_CHLDEC.AGE--Y5T14__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_TLF_CHLDEC.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of children engaged in economic activity and household chores (5 to 17 years old) by Sex" + ], + "memberList": [ + "sdg/SL_TLF_CHLDEC.AGE--Y5T17__SEX--F", + "sdg/SL_TLF_CHLDEC.AGE--Y5T17__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_TLF_CHLDEC.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of children engaged in economic activity and household chores (6 to 17 years old) by Sex" + ], + "memberList": [ + "sdg/SL_TLF_CHLDEC.AGE--Y6T17__SEX--F", + "sdg/SL_TLF_CHLDEC.AGE--Y6T17__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_TLF_CHLDEC.006" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of children engaged in economic activity and household chores (7 to 17 years old) by Sex" + ], + "memberList": [ + "sdg/SL_TLF_CHLDEC.AGE--Y7T17__SEX--F", + "sdg/SL_TLF_CHLDEC.AGE--Y7T17__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_TLF_MANF.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Manufacturing employment as a proportion of total employment - previous definition" + ], + "memberList": [ + "sdg/SL_TLF_MANF.ECONOMIC_ACTIVITY--ISIC4_C" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_TLF_MANF_19ICLS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Manufacturing employment as a proportion of total employment - current definition" + ], + "memberList": [ + "sdg/SL_TLF_MANF_19ICLS.ECONOMIC_ACTIVITY--ISIC4_C" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_TLF_NEET.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth not in education", + "employment or training - previous definition by Age group" + ], + "memberList": [ + "sdg/SL_TLF_NEET.AGE--Y15T24" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_TLF_NEET.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth not in education", + "employment or training - previous definition (15 to 24 years old) by Sex" + ], + "memberList": [ + "sdg/SL_TLF_NEET.AGE--Y15T24__SEX--F", + "sdg/SL_TLF_NEET.AGE--Y15T24__SEX--M", + "sdg/SL_TLF_NEET.AGE--Y15T24__SEX--_O" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_TLF_NEET_19ICLS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth not in education", + "employment or training - current definition by Age group" + ], + "memberList": [ + "sdg/SL_TLF_NEET_19ICLS.AGE--Y15T24" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_TLF_NEET_19ICLS.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of youth not in education", + "employment or training - current definition (15 to 24 years old) by Sex" + ], + "memberList": [ + "sdg/SL_TLF_NEET_19ICLS.AGE--Y15T24__SEX--F", + "sdg/SL_TLF_NEET_19ICLS.AGE--Y15T24__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_TLF_UEM.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Unemployment rate by sex and age - previous definition by Age group" + ], + "memberList": [ + "sdg/SL_TLF_UEM.AGE--Y15T24", + "sdg/SL_TLF_UEM.AGE--Y_GE15", + "sdg/SL_TLF_UEM.AGE--Y_GE25" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_TLF_UEM.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Unemployment rate by sex and age - previous definition (15 to 24 years old) by Sex" + ], + "memberList": [ + "sdg/SL_TLF_UEM.AGE--Y15T24__SEX--F", + "sdg/SL_TLF_UEM.AGE--Y15T24__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_TLF_UEM.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Unemployment rate by sex and age - previous definition (15 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_TLF_UEM.AGE--Y_GE15__SEX--F", + "sdg/SL_TLF_UEM.AGE--Y_GE15__SEX--M", + "sdg/SL_TLF_UEM.AGE--Y_GE15__SEX--_O" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_TLF_UEM.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Unemployment rate by sex and age - previous definition (25 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_TLF_UEM.AGE--Y_GE25__SEX--F", + "sdg/SL_TLF_UEM.AGE--Y_GE25__SEX--M", + "sdg/SL_TLF_UEM.AGE--Y_GE25__SEX--_O" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_TLF_UEMDIS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Unemployment rate by sex and disability - previous definition (15 years old and over)" + ], + "memberList": [ + "sdg/SL_TLF_UEMDIS.AGE--Y_GE15" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_TLF_UEMDIS.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Unemployment rate by sex and disability - previous definition (15 years old and over) by Disability status" + ], + "memberList": [ + "sdg/SL_TLF_UEMDIS.AGE--Y_GE15__DISABILITY_STATUS--PD", + "sdg/SL_TLF_UEMDIS.AGE--Y_GE15__DISABILITY_STATUS--PWD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_TLF_UEMDIS.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Unemployment rate by sex and disability - previous definition (15 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_TLF_UEMDIS.AGE--Y_GE15__SEX--F", + "sdg/SL_TLF_UEMDIS.AGE--Y_GE15__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_TLF_UEMDIS.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Unemployment rate by sex and disability - previous definition (15 years old and over", + "Female) by Disability status" + ], + "memberList": [ + "sdg/SL_TLF_UEMDIS.AGE--Y_GE15__SEX--F__DISABILITY_STATUS--PD", + "sdg/SL_TLF_UEMDIS.AGE--Y_GE15__SEX--F__DISABILITY_STATUS--PWD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_TLF_UEMDIS.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Unemployment rate by sex and disability - previous definition (15 years old and over", + "Male) by Disability status" + ], + "memberList": [ + "sdg/SL_TLF_UEMDIS.AGE--Y_GE15__SEX--M__DISABILITY_STATUS--PD", + "sdg/SL_TLF_UEMDIS.AGE--Y_GE15__SEX--M__DISABILITY_STATUS--PWD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_TLF_UEMDIS_19ICLS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Unemployment rate by sex and disability - current definition (15 years old and over)" + ], + "memberList": [ + "sdg/SL_TLF_UEMDIS_19ICLS.AGE--Y_GE15" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_TLF_UEMDIS_19ICLS.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Unemployment rate by sex and disability - current definition (15 years old and over) by Disability status" + ], + "memberList": [ + "sdg/SL_TLF_UEMDIS_19ICLS.AGE--Y_GE15__DISABILITY_STATUS--PD", + "sdg/SL_TLF_UEMDIS_19ICLS.AGE--Y_GE15__DISABILITY_STATUS--PWD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_TLF_UEMDIS_19ICLS.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Unemployment rate by sex and disability - current definition (15 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_TLF_UEMDIS_19ICLS.AGE--Y_GE15__SEX--F", + "sdg/SL_TLF_UEMDIS_19ICLS.AGE--Y_GE15__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_TLF_UEMDIS_19ICLS.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Unemployment rate by sex and disability - current definition (15 years old and over", + "Female) by Disability status" + ], + "memberList": [ + "sdg/SL_TLF_UEMDIS_19ICLS.AGE--Y_GE15__SEX--F__DISABILITY_STATUS--PD", + "sdg/SL_TLF_UEMDIS_19ICLS.AGE--Y_GE15__SEX--F__DISABILITY_STATUS--PWD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_TLF_UEMDIS_19ICLS.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Unemployment rate by sex and disability - current definition (15 years old and over", + "Male) by Disability status" + ], + "memberList": [ + "sdg/SL_TLF_UEMDIS_19ICLS.AGE--Y_GE15__SEX--M__DISABILITY_STATUS--PD", + "sdg/SL_TLF_UEMDIS_19ICLS.AGE--Y_GE15__SEX--M__DISABILITY_STATUS--PWD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_TLF_UEM_19ICLS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Unemployment rate by sex and age - current definition by Age group" + ], + "memberList": [ + "sdg/SL_TLF_UEM_19ICLS.AGE--Y15T24", + "sdg/SL_TLF_UEM_19ICLS.AGE--Y_GE15", + "sdg/SL_TLF_UEM_19ICLS.AGE--Y_GE25" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_TLF_UEM_19ICLS.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Unemployment rate by sex and age - current definition (15 to 24 years old) by Sex" + ], + "memberList": [ + "sdg/SL_TLF_UEM_19ICLS.AGE--Y15T24__SEX--F", + "sdg/SL_TLF_UEM_19ICLS.AGE--Y15T24__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_TLF_UEM_19ICLS.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Unemployment rate by sex and age - current definition (15 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_TLF_UEM_19ICLS.AGE--Y_GE15__SEX--F", + "sdg/SL_TLF_UEM_19ICLS.AGE--Y_GE15__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSL_TLF_UEM_19ICLS.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Unemployment rate by sex and age - current definition (25 years old and over) by Sex" + ], + "memberList": [ + "sdg/SL_TLF_UEM_19ICLS.AGE--Y_GE25__SEX--F", + "sdg/SL_TLF_UEM_19ICLS.AGE--Y_GE25__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSM_DTH_MIGR.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Total deaths and disappearances recorded during migration" + ], + "memberList": [ + "sdg/SM_DTH_MIGR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSM_POP_REFG_OR.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of refugees per 100", + "000 population" + ], + "memberList": [ + "sdg/SM_POP_REFG_OR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSN_ITK_DEFC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Prevalence of undernourishment" + ], + "memberList": [ + "sdg/SN_ITK_DEFC" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSN_ITK_DEFCN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of undernourished people" + ], + "memberList": [ + "sdg/SN_ITK_DEFCN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSN_STA_OVWGT.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of children under 5 years old moderately or severely overweight" + ], + "memberList": [ + "sdg/SN_STA_OVWGT.AGE--Y0T4" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSN_STA_OVWGTN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Children under 5 years old moderately or severely overweight" + ], + "memberList": [ + "sdg/SN_STA_OVWGTN.AGE--Y0T4" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_ACS_BSRVH2O.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population using basic drinking water services" + ], + "memberList": [ + "sdg/SP_ACS_BSRVH2O" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_ACS_BSRVH2O.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population using basic drinking water services by Type of location" + ], + "memberList": [ + "sdg/SP_ACS_BSRVH2O.URBANIZATION--R", + "sdg/SP_ACS_BSRVH2O.URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_ACS_BSRVSAN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population using basic sanitation services" + ], + "memberList": [ + "sdg/SP_ACS_BSRVSAN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_ACS_BSRVSAN.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population using basic sanitation services by Type of location" + ], + "memberList": [ + "sdg/SP_ACS_BSRVSAN.URBANIZATION--R", + "sdg/SP_ACS_BSRVSAN.URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_DISP_RESOL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of the population who have experienced a dispute in the past two years who accessed a formal or informal dispute resolution mechanism" + ], + "memberList": [ + "sdg/SP_DISP_RESOL" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_DISP_RESOL.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of the population who have experienced a dispute in the past two years who accessed a formal or informal dispute resolution mechanism by Disability status" + ], + "memberList": [ + "sdg/SP_DISP_RESOL.DISABILITY_STATUS--PD", + "sdg/SP_DISP_RESOL.DISABILITY_STATUS--PWD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_DISP_RESOL.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of the population who have experienced a dispute in the past two years who accessed a formal or informal dispute resolution mechanism by Sex" + ], + "memberList": [ + "sdg/SP_DISP_RESOL.SEX--F", + "sdg/SP_DISP_RESOL.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_DYN_ADKL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Adolescent birth rate" + ], + "memberList": [ + "sdg/SP_DYN_ADKL.AGE--Y10T14__SEX--F", + "sdg/SP_DYN_ADKL.AGE--Y15T19__SEX--F" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_DYN_MRBF15.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of women aged 20-24 years who were married or in a union before age 15" + ], + "memberList": [ + "sdg/SP_DYN_MRBF15.AGE--Y20T24__SEX--F" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_DYN_MRBF18.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of women aged 20-24 years who were married or in a union before age 18" + ], + "memberList": [ + "sdg/SP_DYN_MRBF18.AGE--Y20T24__SEX--F" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_GNP_WNOWNS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Share of women among owners or rights-bearers of agricultural land" + ], + "memberList": [ + "sdg/SP_GNP_WNOWNS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_LGL_LNDAGSEC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of total agricultural population with ownership or secure rights over agricultural land" + ], + "memberList": [ + "sdg/SP_LGL_LNDAGSEC" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_LGL_LNDAGSEC.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of total agricultural population with ownership or secure rights over agricultural land by Sex" + ], + "memberList": [ + "sdg/SP_LGL_LNDAGSEC.SEX--F", + "sdg/SP_LGL_LNDAGSEC.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_LGL_LNDDOC.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of people with legally recognized documentation of their rights to land out of total adult population by Sex" + ], + "memberList": [ + "sdg/SP_LGL_LNDDOC", + "sdg/SP_LGL_LNDDOC.SEX--F" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_LGL_LNDSEC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of people who perceive their rights to land as secure out of total adult population" + ], + "memberList": [ + "sdg/SP_LGL_LNDSEC" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_LGL_LNDSTR.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of people with secure tenure rights to land out of total adult population by Sex" + ], + "memberList": [ + "sdg/SP_LGL_LNDSTR", + "sdg/SP_LGL_LNDSTR.SEX--F" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_OSATIS_GOV.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who say that overall they are satisfied with the quality of government services" + ], + "memberList": [ + "sdg/SP_PSR_OSATIS_GOV" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_OSATIS_GOV.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who say that overall they are satisfied with the quality of government services by Age group" + ], + "memberList": [ + "sdg/SP_PSR_OSATIS_GOV.AGE--Y0T24", + "sdg/SP_PSR_OSATIS_GOV.AGE--Y25T34", + "sdg/SP_PSR_OSATIS_GOV.AGE--Y35T44", + "sdg/SP_PSR_OSATIS_GOV.AGE--Y45T54", + "sdg/SP_PSR_OSATIS_GOV.AGE--Y55T64", + "sdg/SP_PSR_OSATIS_GOV.AGE--Y_GE65" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_OSATIS_GOV.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who say that overall they are satisfied with the quality of government services by Disability status" + ], + "memberList": [ + "sdg/SP_PSR_OSATIS_GOV.DISABILITY_STATUS--PD", + "sdg/SP_PSR_OSATIS_GOV.DISABILITY_STATUS--PWD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_OSATIS_GOV.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who say that overall they are satisfied with the quality of government services by Population group" + ], + "memberList": [ + "sdg/SP_PSR_OSATIS_GOV.POPULATION_GROUP--CYP_0", + "sdg/SP_PSR_OSATIS_GOV.POPULATION_GROUP--CYP_1", + "sdg/SP_PSR_OSATIS_GOV.POPULATION_GROUP--ISR_0" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_OSATIS_GOV.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who say that overall they are satisfied with the quality of government services by Sex" + ], + "memberList": [ + "sdg/SP_PSR_OSATIS_GOV.SEX--F", + "sdg/SP_PSR_OSATIS_GOV.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_OSATIS_GOV.006" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who say that overall they are satisfied with the quality of government services by Type of location" + ], + "memberList": [ + "sdg/SP_PSR_OSATIS_GOV.URBANIZATION--R", + "sdg/SP_PSR_OSATIS_GOV.URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_OSATIS_HLTH.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who say that overall they are satisfied with the quality of healthcare services" + ], + "memberList": [ + "sdg/SP_PSR_OSATIS_HLTH" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_OSATIS_HLTH.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who say that overall they are satisfied with the quality of healthcare services by Age group" + ], + "memberList": [ + "sdg/SP_PSR_OSATIS_HLTH.AGE--Y0T24", + "sdg/SP_PSR_OSATIS_HLTH.AGE--Y25T34", + "sdg/SP_PSR_OSATIS_HLTH.AGE--Y35T44", + "sdg/SP_PSR_OSATIS_HLTH.AGE--Y45T54", + "sdg/SP_PSR_OSATIS_HLTH.AGE--Y55T64", + "sdg/SP_PSR_OSATIS_HLTH.AGE--Y_GE65" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_OSATIS_HLTH.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who say that overall they are satisfied with the quality of healthcare services by Disability status" + ], + "memberList": [ + "sdg/SP_PSR_OSATIS_HLTH.DISABILITY_STATUS--PD", + "sdg/SP_PSR_OSATIS_HLTH.DISABILITY_STATUS--PWD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_OSATIS_HLTH.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who say that overall they are satisfied with the quality of healthcare services by Population group" + ], + "memberList": [ + "sdg/SP_PSR_OSATIS_HLTH.POPULATION_GROUP--JPN_0", + "sdg/SP_PSR_OSATIS_HLTH.POPULATION_GROUP--JPN_1" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_OSATIS_HLTH.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who say that overall they are satisfied with the quality of healthcare services by Sex" + ], + "memberList": [ + "sdg/SP_PSR_OSATIS_HLTH.SEX--F", + "sdg/SP_PSR_OSATIS_HLTH.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_OSATIS_HLTH.006" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who say that overall they are satisfied with the quality of healthcare services by Type of location" + ], + "memberList": [ + "sdg/SP_PSR_OSATIS_HLTH.URBANIZATION--R", + "sdg/SP_PSR_OSATIS_HLTH.URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_OSATIS_PRM.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who say that overall they are satisfied with the quality of primary education services" + ], + "memberList": [ + "sdg/SP_PSR_OSATIS_PRM" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_OSATIS_PRM.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who say that overall they are satisfied with the quality of primary education services by Age group" + ], + "memberList": [ + "sdg/SP_PSR_OSATIS_PRM.AGE--Y0T24", + "sdg/SP_PSR_OSATIS_PRM.AGE--Y25T34", + "sdg/SP_PSR_OSATIS_PRM.AGE--Y35T44", + "sdg/SP_PSR_OSATIS_PRM.AGE--Y45T54", + "sdg/SP_PSR_OSATIS_PRM.AGE--Y55T64", + "sdg/SP_PSR_OSATIS_PRM.AGE--Y_GE65" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_OSATIS_PRM.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who say that overall they are satisfied with the quality of primary education services by Disability status" + ], + "memberList": [ + "sdg/SP_PSR_OSATIS_PRM.DISABILITY_STATUS--PD", + "sdg/SP_PSR_OSATIS_PRM.DISABILITY_STATUS--PWD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_OSATIS_PRM.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who say that overall they are satisfied with the quality of primary education services by Population group" + ], + "memberList": [ + "sdg/SP_PSR_OSATIS_PRM.POPULATION_GROUP--ISR_0" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_OSATIS_PRM.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who say that overall they are satisfied with the quality of primary education services by Sex" + ], + "memberList": [ + "sdg/SP_PSR_OSATIS_PRM.SEX--F", + "sdg/SP_PSR_OSATIS_PRM.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_OSATIS_PRM.006" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who say that overall they are satisfied with the quality of primary education services by Type of location" + ], + "memberList": [ + "sdg/SP_PSR_OSATIS_PRM.URBANIZATION--R", + "sdg/SP_PSR_OSATIS_PRM.URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_OSATIS_SEC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who say that overall they are satisfied with the quality of secondary education services" + ], + "memberList": [ + "sdg/SP_PSR_OSATIS_SEC" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_OSATIS_SEC.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who say that overall they are satisfied with the quality of secondary education services by Age group" + ], + "memberList": [ + "sdg/SP_PSR_OSATIS_SEC.AGE--Y0T24", + "sdg/SP_PSR_OSATIS_SEC.AGE--Y25T34", + "sdg/SP_PSR_OSATIS_SEC.AGE--Y35T44", + "sdg/SP_PSR_OSATIS_SEC.AGE--Y45T54", + "sdg/SP_PSR_OSATIS_SEC.AGE--Y55T64", + "sdg/SP_PSR_OSATIS_SEC.AGE--Y_GE65" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_OSATIS_SEC.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who say that overall they are satisfied with the quality of secondary education services by Disability status" + ], + "memberList": [ + "sdg/SP_PSR_OSATIS_SEC.DISABILITY_STATUS--PD", + "sdg/SP_PSR_OSATIS_SEC.DISABILITY_STATUS--PWD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_OSATIS_SEC.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who say that overall they are satisfied with the quality of secondary education services by Population group" + ], + "memberList": [ + "sdg/SP_PSR_OSATIS_SEC.POPULATION_GROUP--ISR_0" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_OSATIS_SEC.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who say that overall they are satisfied with the quality of secondary education services by Sex" + ], + "memberList": [ + "sdg/SP_PSR_OSATIS_SEC.SEX--F", + "sdg/SP_PSR_OSATIS_SEC.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_OSATIS_SEC.006" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population who say that overall they are satisfied with the quality of secondary education services by Type of location" + ], + "memberList": [ + "sdg/SP_PSR_OSATIS_SEC.URBANIZATION--R", + "sdg/SP_PSR_OSATIS_SEC.URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_GOV.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of government services (25 to 34 years old) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_GOV.AGE--Y25T34__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_GOV.AGE--Y25T34__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_GOV.AGE--Y25T34__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_GOV.AGE--Y25T34__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_GOV.AGE--Y25T34__SERVICE_ATTRIBUTE--QUALITY", + "sdg/SP_PSR_SATIS_GOV.AGE--Y25T34__SERVICE_ATTRIBUTE--TIMELINESS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_GOV.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of government services (35 to 44 years old) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_GOV.AGE--Y35T44__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_GOV.AGE--Y35T44__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_GOV.AGE--Y35T44__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_GOV.AGE--Y35T44__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_GOV.AGE--Y35T44__SERVICE_ATTRIBUTE--QUALITY", + "sdg/SP_PSR_SATIS_GOV.AGE--Y35T44__SERVICE_ATTRIBUTE--TIMELINESS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_GOV.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of government services (45 to 54 years old) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_GOV.AGE--Y45T54__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_GOV.AGE--Y45T54__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_GOV.AGE--Y45T54__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_GOV.AGE--Y45T54__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_GOV.AGE--Y45T54__SERVICE_ATTRIBUTE--QUALITY", + "sdg/SP_PSR_SATIS_GOV.AGE--Y45T54__SERVICE_ATTRIBUTE--TIMELINESS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_GOV.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of government services (55 to 64 years old) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_GOV.AGE--Y55T64__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_GOV.AGE--Y55T64__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_GOV.AGE--Y55T64__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_GOV.AGE--Y55T64__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_GOV.AGE--Y55T64__SERVICE_ATTRIBUTE--QUALITY", + "sdg/SP_PSR_SATIS_GOV.AGE--Y55T64__SERVICE_ATTRIBUTE--TIMELINESS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_GOV.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of government services (65 years old and over) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_GOV.AGE--Y_GE65__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_GOV.AGE--Y_GE65__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_GOV.AGE--Y_GE65__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_GOV.AGE--Y_GE65__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_GOV.AGE--Y_GE65__SERVICE_ATTRIBUTE--QUALITY", + "sdg/SP_PSR_SATIS_GOV.AGE--Y_GE65__SERVICE_ATTRIBUTE--TIMELINESS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_GOV.006" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of government services (under 25 years old) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_GOV.AGE--Y0T24__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_GOV.AGE--Y0T24__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_GOV.AGE--Y0T24__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_GOV.AGE--Y0T24__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_GOV.AGE--Y0T24__SERVICE_ATTRIBUTE--QUALITY", + "sdg/SP_PSR_SATIS_GOV.AGE--Y0T24__SERVICE_ATTRIBUTE--TIMELINESS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_GOV.007" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of government services (Persons with disability) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_GOV.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_GOV.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_GOV.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_GOV.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_GOV.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--QUALITY", + "sdg/SP_PSR_SATIS_GOV.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--TIMELINESS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_GOV.008" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of government services (Persons without disability) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_GOV.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_GOV.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_GOV.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_GOV.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_GOV.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--QUALITY", + "sdg/SP_PSR_SATIS_GOV.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--TIMELINESS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_GOV.009" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of government services (Arabs) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_GOV.SERVICE_ATTRIBUTE--ACCESS__POPULATION_GROUP--ISR_0", + "sdg/SP_PSR_SATIS_GOV.SERVICE_ATTRIBUTE--EQUALITY__POPULATION_GROUP--ISR_0", + "sdg/SP_PSR_SATIS_GOV.SERVICE_ATTRIBUTE--QUALITY__POPULATION_GROUP--ISR_0", + "sdg/SP_PSR_SATIS_GOV.SERVICE_ATTRIBUTE--TIMELINESS__POPULATION_GROUP--ISR_0" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_GOV.010" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of government services (Cypriot Nationality) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_GOV.SERVICE_ATTRIBUTE--ACCESS__POPULATION_GROUP--CYP_0", + "sdg/SP_PSR_SATIS_GOV.SERVICE_ATTRIBUTE--AVERAGE__POPULATION_GROUP--CYP_0", + "sdg/SP_PSR_SATIS_GOV.SERVICE_ATTRIBUTE--EQUALITY__POPULATION_GROUP--CYP_0", + "sdg/SP_PSR_SATIS_GOV.SERVICE_ATTRIBUTE--QUALITY__POPULATION_GROUP--CYP_0", + "sdg/SP_PSR_SATIS_GOV.SERVICE_ATTRIBUTE--TIMELINESS__POPULATION_GROUP--CYP_0" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_GOV.011" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of government services (Non-Cypriot Nationality) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_GOV.SERVICE_ATTRIBUTE--ACCESS__POPULATION_GROUP--CYP_1", + "sdg/SP_PSR_SATIS_GOV.SERVICE_ATTRIBUTE--AVERAGE__POPULATION_GROUP--CYP_1", + "sdg/SP_PSR_SATIS_GOV.SERVICE_ATTRIBUTE--EQUALITY__POPULATION_GROUP--CYP_1", + "sdg/SP_PSR_SATIS_GOV.SERVICE_ATTRIBUTE--QUALITY__POPULATION_GROUP--CYP_1", + "sdg/SP_PSR_SATIS_GOV.SERVICE_ATTRIBUTE--TIMELINESS__POPULATION_GROUP--CYP_1" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_GOV.012" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of government services by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_GOV.SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_GOV.SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_GOV.SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_GOV.SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_GOV.SERVICE_ATTRIBUTE--QUALITY", + "sdg/SP_PSR_SATIS_GOV.SERVICE_ATTRIBUTE--TIMELINESS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_GOV.013" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of government services (Female) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_GOV.SEX--F__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_GOV.SEX--F__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_GOV.SEX--F__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_GOV.SEX--F__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_GOV.SEX--F__SERVICE_ATTRIBUTE--QUALITY", + "sdg/SP_PSR_SATIS_GOV.SEX--F__SERVICE_ATTRIBUTE--TIMELINESS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_GOV.014" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of government services (Male) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_GOV.SEX--M__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_GOV.SEX--M__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_GOV.SEX--M__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_GOV.SEX--M__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_GOV.SEX--M__SERVICE_ATTRIBUTE--QUALITY", + "sdg/SP_PSR_SATIS_GOV.SEX--M__SERVICE_ATTRIBUTE--TIMELINESS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_GOV.015" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of government services (Rural) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_GOV.URBANIZATION--R__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_GOV.URBANIZATION--R__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_GOV.URBANIZATION--R__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_GOV.URBANIZATION--R__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_GOV.URBANIZATION--R__SERVICE_ATTRIBUTE--QUALITY", + "sdg/SP_PSR_SATIS_GOV.URBANIZATION--R__SERVICE_ATTRIBUTE--TIMELINESS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_GOV.016" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of government services (Urban) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_GOV.URBANIZATION--U__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_GOV.URBANIZATION--U__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_GOV.URBANIZATION--U__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_GOV.URBANIZATION--U__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_GOV.URBANIZATION--U__SERVICE_ATTRIBUTE--QUALITY", + "sdg/SP_PSR_SATIS_GOV.URBANIZATION--U__SERVICE_ATTRIBUTE--TIMELINESS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_HLTH.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public healthcare services (25 to 34 years old) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_HLTH.AGE--Y25T34__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_HLTH.AGE--Y25T34__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_HLTH.AGE--Y25T34__SERVICE_ATTRIBUTE--ATTITUDE", + "sdg/SP_PSR_SATIS_HLTH.AGE--Y25T34__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_HLTH.AGE--Y25T34__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_HLTH.AGE--Y25T34__SERVICE_ATTRIBUTE--QUALITY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_HLTH.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public healthcare services (35 to 44 years old) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_HLTH.AGE--Y35T44__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_HLTH.AGE--Y35T44__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_HLTH.AGE--Y35T44__SERVICE_ATTRIBUTE--ATTITUDE", + "sdg/SP_PSR_SATIS_HLTH.AGE--Y35T44__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_HLTH.AGE--Y35T44__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_HLTH.AGE--Y35T44__SERVICE_ATTRIBUTE--QUALITY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_HLTH.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public healthcare services (45 to 54 years old) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_HLTH.AGE--Y45T54__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_HLTH.AGE--Y45T54__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_HLTH.AGE--Y45T54__SERVICE_ATTRIBUTE--ATTITUDE", + "sdg/SP_PSR_SATIS_HLTH.AGE--Y45T54__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_HLTH.AGE--Y45T54__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_HLTH.AGE--Y45T54__SERVICE_ATTRIBUTE--QUALITY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_HLTH.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public healthcare services (55 to 64 years old) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_HLTH.AGE--Y55T64__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_HLTH.AGE--Y55T64__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_HLTH.AGE--Y55T64__SERVICE_ATTRIBUTE--ATTITUDE", + "sdg/SP_PSR_SATIS_HLTH.AGE--Y55T64__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_HLTH.AGE--Y55T64__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_HLTH.AGE--Y55T64__SERVICE_ATTRIBUTE--QUALITY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_HLTH.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public healthcare services (65 years old and over) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_HLTH.AGE--Y_GE65__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_HLTH.AGE--Y_GE65__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_HLTH.AGE--Y_GE65__SERVICE_ATTRIBUTE--ATTITUDE", + "sdg/SP_PSR_SATIS_HLTH.AGE--Y_GE65__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_HLTH.AGE--Y_GE65__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_HLTH.AGE--Y_GE65__SERVICE_ATTRIBUTE--QUALITY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_HLTH.006" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public healthcare services (under 25 years old) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_HLTH.AGE--Y0T24__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_HLTH.AGE--Y0T24__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_HLTH.AGE--Y0T24__SERVICE_ATTRIBUTE--ATTITUDE", + "sdg/SP_PSR_SATIS_HLTH.AGE--Y0T24__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_HLTH.AGE--Y0T24__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_HLTH.AGE--Y0T24__SERVICE_ATTRIBUTE--QUALITY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_HLTH.007" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public healthcare services (Persons with disability) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_HLTH.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_HLTH.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_HLTH.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--ATTITUDE", + "sdg/SP_PSR_SATIS_HLTH.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_HLTH.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_HLTH.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--QUALITY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_HLTH.008" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public healthcare services (Persons without disability) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_HLTH.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_HLTH.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_HLTH.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--ATTITUDE", + "sdg/SP_PSR_SATIS_HLTH.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_HLTH.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_HLTH.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--QUALITY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_HLTH.009" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public healthcare services (Arabs) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_HLTH.SERVICE_ATTRIBUTE--ACCESS__POPULATION_GROUP--ISR_0", + "sdg/SP_PSR_SATIS_HLTH.SERVICE_ATTRIBUTE--ATTITUDE__POPULATION_GROUP--ISR_0", + "sdg/SP_PSR_SATIS_HLTH.SERVICE_ATTRIBUTE--QUALITY__POPULATION_GROUP--ISR_0" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_HLTH.010" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public healthcare services (Asia) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_HLTH.SERVICE_ATTRIBUTE--ACCESS__POPULATION_GROUP--NZL_4", + "sdg/SP_PSR_SATIS_HLTH.SERVICE_ATTRIBUTE--AFFORD__POPULATION_GROUP--NZL_4", + "sdg/SP_PSR_SATIS_HLTH.SERVICE_ATTRIBUTE--ATTITUDE__POPULATION_GROUP--NZL_4" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_HLTH.011" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public healthcare services (European/Other) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_HLTH.SERVICE_ATTRIBUTE--ACCESS__POPULATION_GROUP--NZL_3", + "sdg/SP_PSR_SATIS_HLTH.SERVICE_ATTRIBUTE--AFFORD__POPULATION_GROUP--NZL_3", + "sdg/SP_PSR_SATIS_HLTH.SERVICE_ATTRIBUTE--ATTITUDE__POPULATION_GROUP--NZL_3" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_HLTH.012" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public healthcare services (Maori) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_HLTH.SERVICE_ATTRIBUTE--ACCESS__POPULATION_GROUP--NZL_0", + "sdg/SP_PSR_SATIS_HLTH.SERVICE_ATTRIBUTE--AFFORD__POPULATION_GROUP--NZL_0", + "sdg/SP_PSR_SATIS_HLTH.SERVICE_ATTRIBUTE--ATTITUDE__POPULATION_GROUP--NZL_0" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_HLTH.013" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public healthcare services (Pacific People) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_HLTH.SERVICE_ATTRIBUTE--ACCESS__POPULATION_GROUP--NZL_1", + "sdg/SP_PSR_SATIS_HLTH.SERVICE_ATTRIBUTE--AFFORD__POPULATION_GROUP--NZL_1", + "sdg/SP_PSR_SATIS_HLTH.SERVICE_ATTRIBUTE--ATTITUDE__POPULATION_GROUP--NZL_1" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_HLTH.014" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public healthcare services by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_HLTH.SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_HLTH.SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_HLTH.SERVICE_ATTRIBUTE--ATTITUDE", + "sdg/SP_PSR_SATIS_HLTH.SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_HLTH.SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_HLTH.SERVICE_ATTRIBUTE--QUALITY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_HLTH.015" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public healthcare services (Female) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_HLTH.SEX--F__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_HLTH.SEX--F__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_HLTH.SEX--F__SERVICE_ATTRIBUTE--ATTITUDE", + "sdg/SP_PSR_SATIS_HLTH.SEX--F__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_HLTH.SEX--F__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_HLTH.SEX--F__SERVICE_ATTRIBUTE--QUALITY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_HLTH.016" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public healthcare services (Male) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_HLTH.SEX--M__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_HLTH.SEX--M__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_HLTH.SEX--M__SERVICE_ATTRIBUTE--ATTITUDE", + "sdg/SP_PSR_SATIS_HLTH.SEX--M__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_HLTH.SEX--M__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_HLTH.SEX--M__SERVICE_ATTRIBUTE--QUALITY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_HLTH.017" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public healthcare services (Rural) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_HLTH.URBANIZATION--R__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_HLTH.URBANIZATION--R__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_HLTH.URBANIZATION--R__SERVICE_ATTRIBUTE--ATTITUDE", + "sdg/SP_PSR_SATIS_HLTH.URBANIZATION--R__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_HLTH.URBANIZATION--R__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_HLTH.URBANIZATION--R__SERVICE_ATTRIBUTE--QUALITY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_HLTH.018" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public healthcare services (Urban) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_HLTH.URBANIZATION--U__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_HLTH.URBANIZATION--U__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_HLTH.URBANIZATION--U__SERVICE_ATTRIBUTE--ATTITUDE", + "sdg/SP_PSR_SATIS_HLTH.URBANIZATION--U__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_HLTH.URBANIZATION--U__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_HLTH.URBANIZATION--U__SERVICE_ATTRIBUTE--QUALITY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_HLTH.019" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public healthcare services (Fourth quintile) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_HLTH.WEALTH_QUANTILE--Q4__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_HLTH.WEALTH_QUANTILE--Q4__SERVICE_ATTRIBUTE--AFFORD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_HLTH.020" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public healthcare services (Highest quintile) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_HLTH.WEALTH_QUANTILE--Q5__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_HLTH.WEALTH_QUANTILE--Q5__SERVICE_ATTRIBUTE--AFFORD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_HLTH.021" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public healthcare services (Lowest quintile) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_HLTH.WEALTH_QUANTILE--Q1__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_HLTH.WEALTH_QUANTILE--Q1__SERVICE_ATTRIBUTE--AFFORD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_HLTH.022" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public healthcare services (Middle quintile) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_HLTH.WEALTH_QUANTILE--Q3__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_HLTH.WEALTH_QUANTILE--Q3__SERVICE_ATTRIBUTE--AFFORD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_HLTH.023" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public healthcare services (Second quintile) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_HLTH.WEALTH_QUANTILE--Q2__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_HLTH.WEALTH_QUANTILE--Q2__SERVICE_ATTRIBUTE--AFFORD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_PRM.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public primary education services (25 to 34 years old) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_PRM.AGE--Y25T34__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_PRM.AGE--Y25T34__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_PRM.AGE--Y25T34__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_PRM.AGE--Y25T34__SERVICE_ATTRIBUTE--EFFECTIVE", + "sdg/SP_PSR_SATIS_PRM.AGE--Y25T34__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_PRM.AGE--Y25T34__SERVICE_ATTRIBUTE--QUALITY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_PRM.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public primary education services (35 to 44 years old) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_PRM.AGE--Y35T44__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_PRM.AGE--Y35T44__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_PRM.AGE--Y35T44__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_PRM.AGE--Y35T44__SERVICE_ATTRIBUTE--EFFECTIVE", + "sdg/SP_PSR_SATIS_PRM.AGE--Y35T44__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_PRM.AGE--Y35T44__SERVICE_ATTRIBUTE--QUALITY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_PRM.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public primary education services (45 to 54 years old) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_PRM.AGE--Y45T54__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_PRM.AGE--Y45T54__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_PRM.AGE--Y45T54__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_PRM.AGE--Y45T54__SERVICE_ATTRIBUTE--EFFECTIVE", + "sdg/SP_PSR_SATIS_PRM.AGE--Y45T54__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_PRM.AGE--Y45T54__SERVICE_ATTRIBUTE--QUALITY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_PRM.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public primary education services (55 to 64 years old) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_PRM.AGE--Y55T64__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_PRM.AGE--Y55T64__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_PRM.AGE--Y55T64__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_PRM.AGE--Y55T64__SERVICE_ATTRIBUTE--EFFECTIVE", + "sdg/SP_PSR_SATIS_PRM.AGE--Y55T64__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_PRM.AGE--Y55T64__SERVICE_ATTRIBUTE--QUALITY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_PRM.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public primary education services (65 years old and over) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_PRM.AGE--Y_GE65__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_PRM.AGE--Y_GE65__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_PRM.AGE--Y_GE65__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_PRM.AGE--Y_GE65__SERVICE_ATTRIBUTE--EFFECTIVE", + "sdg/SP_PSR_SATIS_PRM.AGE--Y_GE65__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_PRM.AGE--Y_GE65__SERVICE_ATTRIBUTE--QUALITY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_PRM.006" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public primary education services (under 25 years old) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_PRM.AGE--Y0T24__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_PRM.AGE--Y0T24__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_PRM.AGE--Y0T24__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_PRM.AGE--Y0T24__SERVICE_ATTRIBUTE--EFFECTIVE", + "sdg/SP_PSR_SATIS_PRM.AGE--Y0T24__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_PRM.AGE--Y0T24__SERVICE_ATTRIBUTE--QUALITY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_PRM.007" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public primary education services (Persons with disability) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_PRM.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_PRM.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_PRM.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_PRM.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--EFFECTIVE", + "sdg/SP_PSR_SATIS_PRM.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_PRM.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--QUALITY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_PRM.008" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public primary education services (Persons without disability) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_PRM.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_PRM.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_PRM.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_PRM.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--EFFECTIVE", + "sdg/SP_PSR_SATIS_PRM.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_PRM.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--QUALITY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_PRM.009" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public primary education services (Arabs) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_PRM.SERVICE_ATTRIBUTE--ACCESS__POPULATION_GROUP--ISR_0", + "sdg/SP_PSR_SATIS_PRM.SERVICE_ATTRIBUTE--EFFECTIVE__POPULATION_GROUP--ISR_0", + "sdg/SP_PSR_SATIS_PRM.SERVICE_ATTRIBUTE--QUALITY__POPULATION_GROUP--ISR_0" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_PRM.010" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public primary education services by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_PRM.SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_PRM.SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_PRM.SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_PRM.SERVICE_ATTRIBUTE--EFFECTIVE", + "sdg/SP_PSR_SATIS_PRM.SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_PRM.SERVICE_ATTRIBUTE--QUALITY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_PRM.011" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public primary education services (Female) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_PRM.SEX--F__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_PRM.SEX--F__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_PRM.SEX--F__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_PRM.SEX--F__SERVICE_ATTRIBUTE--EFFECTIVE", + "sdg/SP_PSR_SATIS_PRM.SEX--F__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_PRM.SEX--F__SERVICE_ATTRIBUTE--QUALITY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_PRM.012" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public primary education services (Male) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_PRM.SEX--M__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_PRM.SEX--M__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_PRM.SEX--M__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_PRM.SEX--M__SERVICE_ATTRIBUTE--EFFECTIVE", + "sdg/SP_PSR_SATIS_PRM.SEX--M__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_PRM.SEX--M__SERVICE_ATTRIBUTE--QUALITY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_PRM.013" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public primary education services (Rural) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_PRM.URBANIZATION--R__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_PRM.URBANIZATION--R__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_PRM.URBANIZATION--R__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_PRM.URBANIZATION--R__SERVICE_ATTRIBUTE--EFFECTIVE", + "sdg/SP_PSR_SATIS_PRM.URBANIZATION--R__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_PRM.URBANIZATION--R__SERVICE_ATTRIBUTE--QUALITY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_PRM.014" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public primary education services (Urban) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_PRM.URBANIZATION--U__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_PRM.URBANIZATION--U__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_PRM.URBANIZATION--U__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_PRM.URBANIZATION--U__SERVICE_ATTRIBUTE--EFFECTIVE", + "sdg/SP_PSR_SATIS_PRM.URBANIZATION--U__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_PRM.URBANIZATION--U__SERVICE_ATTRIBUTE--QUALITY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_PRM.015" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public primary education services (Urban", + "Male) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_PRM.SEX--M__URBANIZATION--U__SERVICE_ATTRIBUTE--QUALITY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_SEC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public secondary education services (25 to 34 years old) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_SEC.AGE--Y25T34__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_SEC.AGE--Y25T34__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_SEC.AGE--Y25T34__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_SEC.AGE--Y25T34__SERVICE_ATTRIBUTE--EFFECTIVE", + "sdg/SP_PSR_SATIS_SEC.AGE--Y25T34__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_SEC.AGE--Y25T34__SERVICE_ATTRIBUTE--QUALITY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_SEC.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public secondary education services (35 to 44 years old) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_SEC.AGE--Y35T44__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_SEC.AGE--Y35T44__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_SEC.AGE--Y35T44__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_SEC.AGE--Y35T44__SERVICE_ATTRIBUTE--EFFECTIVE", + "sdg/SP_PSR_SATIS_SEC.AGE--Y35T44__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_SEC.AGE--Y35T44__SERVICE_ATTRIBUTE--QUALITY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_SEC.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public secondary education services (45 to 54 years old) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_SEC.AGE--Y45T54__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_SEC.AGE--Y45T54__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_SEC.AGE--Y45T54__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_SEC.AGE--Y45T54__SERVICE_ATTRIBUTE--EFFECTIVE", + "sdg/SP_PSR_SATIS_SEC.AGE--Y45T54__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_SEC.AGE--Y45T54__SERVICE_ATTRIBUTE--QUALITY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_SEC.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public secondary education services (55 to 64 years old) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_SEC.AGE--Y55T64__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_SEC.AGE--Y55T64__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_SEC.AGE--Y55T64__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_SEC.AGE--Y55T64__SERVICE_ATTRIBUTE--EFFECTIVE", + "sdg/SP_PSR_SATIS_SEC.AGE--Y55T64__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_SEC.AGE--Y55T64__SERVICE_ATTRIBUTE--QUALITY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_SEC.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public secondary education services (65 years old and over) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_SEC.AGE--Y_GE65__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_SEC.AGE--Y_GE65__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_SEC.AGE--Y_GE65__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_SEC.AGE--Y_GE65__SERVICE_ATTRIBUTE--EFFECTIVE", + "sdg/SP_PSR_SATIS_SEC.AGE--Y_GE65__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_SEC.AGE--Y_GE65__SERVICE_ATTRIBUTE--QUALITY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_SEC.006" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public secondary education services (under 25 years old) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_SEC.AGE--Y0T24__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_SEC.AGE--Y0T24__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_SEC.AGE--Y0T24__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_SEC.AGE--Y0T24__SERVICE_ATTRIBUTE--EFFECTIVE", + "sdg/SP_PSR_SATIS_SEC.AGE--Y0T24__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_SEC.AGE--Y0T24__SERVICE_ATTRIBUTE--QUALITY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_SEC.007" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public secondary education services (Persons with disability) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_SEC.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_SEC.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_SEC.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_SEC.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--EFFECTIVE", + "sdg/SP_PSR_SATIS_SEC.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_SEC.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--QUALITY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_SEC.008" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public secondary education services (Persons without disability) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_SEC.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_SEC.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_SEC.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_SEC.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--EFFECTIVE", + "sdg/SP_PSR_SATIS_SEC.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_SEC.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--QUALITY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_SEC.009" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public secondary education services (West Bank) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_SEC.SERVICE_ATTRIBUTE--ACCESS__POPULATION_GROUP--ISR_1", + "sdg/SP_PSR_SATIS_SEC.SERVICE_ATTRIBUTE--EFFECTIVE__POPULATION_GROUP--ISR_1", + "sdg/SP_PSR_SATIS_SEC.SERVICE_ATTRIBUTE--QUALITY__POPULATION_GROUP--ISR_1" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_SEC.010" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public secondary education services by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_SEC.SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_SEC.SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_SEC.SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_SEC.SERVICE_ATTRIBUTE--EFFECTIVE", + "sdg/SP_PSR_SATIS_SEC.SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_SEC.SERVICE_ATTRIBUTE--QUALITY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_SEC.011" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public secondary education services (Female) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_SEC.SEX--F__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_SEC.SEX--F__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_SEC.SEX--F__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_SEC.SEX--F__SERVICE_ATTRIBUTE--EFFECTIVE", + "sdg/SP_PSR_SATIS_SEC.SEX--F__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_SEC.SEX--F__SERVICE_ATTRIBUTE--QUALITY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_SEC.012" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public secondary education services (Male) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_SEC.SEX--M__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_SEC.SEX--M__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_SEC.SEX--M__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_SEC.SEX--M__SERVICE_ATTRIBUTE--EFFECTIVE", + "sdg/SP_PSR_SATIS_SEC.SEX--M__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_SEC.SEX--M__SERVICE_ATTRIBUTE--QUALITY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_SEC.013" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public secondary education services (Rural) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_SEC.URBANIZATION--R__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_SEC.URBANIZATION--R__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_SEC.URBANIZATION--R__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_SEC.URBANIZATION--R__SERVICE_ATTRIBUTE--EFFECTIVE", + "sdg/SP_PSR_SATIS_SEC.URBANIZATION--R__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_SEC.URBANIZATION--R__SERVICE_ATTRIBUTE--QUALITY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_PSR_SATIS_SEC.014" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population satisfied with their last experience of public secondary education services (Urban) by Service attribute" + ], + "memberList": [ + "sdg/SP_PSR_SATIS_SEC.URBANIZATION--U__SERVICE_ATTRIBUTE--ACCESS", + "sdg/SP_PSR_SATIS_SEC.URBANIZATION--U__SERVICE_ATTRIBUTE--AFFORD", + "sdg/SP_PSR_SATIS_SEC.URBANIZATION--U__SERVICE_ATTRIBUTE--AVERAGE", + "sdg/SP_PSR_SATIS_SEC.URBANIZATION--U__SERVICE_ATTRIBUTE--EFFECTIVE", + "sdg/SP_PSR_SATIS_SEC.URBANIZATION--U__SERVICE_ATTRIBUTE--EQUALITY", + "sdg/SP_PSR_SATIS_SEC.URBANIZATION--U__SERVICE_ATTRIBUTE--QUALITY" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_ROD_R2KM.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of the rural population who live within 2\u00a0km of an all-season road" + ], + "memberList": [ + "sdg/SP_ROD_R2KM.URBANIZATION--R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGSP_TRN_PUBL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population that has convenient access to public transport" + ], + "memberList": [ + "sdg/SP_TRN_PUBL" + ] + }, + { + "dcid": [ + "dc/svpg/SDGST_EEV_ACCSEEA.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Implementation of standard accounting tools to monitor the economic and environmental aspects of tourism (SEEA tables)" + ], + "memberList": [ + "sdg/ST_EEV_ACCSEEA" + ] + }, + { + "dcid": [ + "dc/svpg/SDGST_EEV_ACCTSA.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Implementation of standard accounting tools to monitor the economic and environmental aspects of tourism (Tourism Satellite Account tables)" + ], + "memberList": [ + "sdg/ST_EEV_ACCTSA" + ] + }, + { + "dcid": [ + "dc/svpg/SDGST_EEV_STDACCT.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Implementation of standard accounting tools to monitor the economic and environmental aspects of tourism (number of tables)" + ], + "memberList": [ + "sdg/ST_EEV_STDACCT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGST_GDP_ZS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Tourism direct GDP as a proportion of total GDP" + ], + "memberList": [ + "sdg/ST_GDP_ZS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGTG_VAL_TOTL_GD_ZS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Merchandise trade as a proportion of GDP" + ], + "memberList": [ + "sdg/TG_VAL_TOTL_GD_ZS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGTM_TAX_DMFN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Average tariff applied by developed countries", + "most-favored nation status" + ], + "memberList": [ + "sdg/TM_TAX_DMFN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGTM_TAX_DMFN.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Average tariff applied by developed countries", + "most-favored nation status by Product" + ], + "memberList": [ + "sdg/TM_TAX_DMFN.PRODUCT--AGG_AGR", + "sdg/TM_TAX_DMFN.PRODUCT--AGG_ARMS", + "sdg/TM_TAX_DMFN.PRODUCT--AGG_CLTH", + "sdg/TM_TAX_DMFN.PRODUCT--AGG_IND", + "sdg/TM_TAX_DMFN.PRODUCT--AGG_OIL", + "sdg/TM_TAX_DMFN.PRODUCT--AGG_TXT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGTM_TAX_DPRF.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Average tariff applied by developed countries", + "preferential status" + ], + "memberList": [ + "sdg/TM_TAX_DPRF" + ] + }, + { + "dcid": [ + "dc/svpg/SDGTM_TAX_DPRF.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Average tariff applied by developed countries", + "preferential status by Product" + ], + "memberList": [ + "sdg/TM_TAX_DPRF.PRODUCT--AGG_AGR", + "sdg/TM_TAX_DPRF.PRODUCT--AGG_ARMS", + "sdg/TM_TAX_DPRF.PRODUCT--AGG_CLTH", + "sdg/TM_TAX_DPRF.PRODUCT--AGG_IND", + "sdg/TM_TAX_DPRF.PRODUCT--AGG_OIL", + "sdg/TM_TAX_DPRF.PRODUCT--AGG_TXT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGTM_TAX_WMFN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Worldwide weighted tariff-average", + "most-favoured-nation status" + ], + "memberList": [ + "sdg/TM_TAX_WMFN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGTM_TAX_WMFN.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Worldwide weighted tariff-average", + "most-favoured-nation status by Product" + ], + "memberList": [ + "sdg/TM_TAX_WMFN.PRODUCT--AGG_AGR", + "sdg/TM_TAX_WMFN.PRODUCT--AGG_ARMS", + "sdg/TM_TAX_WMFN.PRODUCT--AGG_CLTH", + "sdg/TM_TAX_WMFN.PRODUCT--AGG_IND", + "sdg/TM_TAX_WMFN.PRODUCT--AGG_OIL", + "sdg/TM_TAX_WMFN.PRODUCT--AGG_TXT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGTM_TAX_WMPS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Worldwide weighted tariff-average", + "preferential status" + ], + "memberList": [ + "sdg/TM_TAX_WMPS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGTM_TAX_WMPS.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Worldwide weighted tariff-average", + "preferential status by Product" + ], + "memberList": [ + "sdg/TM_TAX_WMPS.PRODUCT--AGG_AGR", + "sdg/TM_TAX_WMPS.PRODUCT--AGG_ARMS", + "sdg/TM_TAX_WMPS.PRODUCT--AGG_CLTH", + "sdg/TM_TAX_WMPS.PRODUCT--AGG_IND", + "sdg/TM_TAX_WMPS.PRODUCT--AGG_OIL", + "sdg/TM_TAX_WMPS.PRODUCT--AGG_TXT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGTM_TRF_ZERO.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of tariff lines applied to imports with zero-tariff" + ], + "memberList": [ + "sdg/TM_TRF_ZERO" + ] + }, + { + "dcid": [ + "dc/svpg/SDGTM_TRF_ZERO.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of tariff lines applied to imports with zero-tariff by Product" + ], + "memberList": [ + "sdg/TM_TRF_ZERO.PRODUCT--AGG_AGR", + "sdg/TM_TRF_ZERO.PRODUCT--AGG_ARMS", + "sdg/TM_TRF_ZERO.PRODUCT--AGG_CLTH", + "sdg/TM_TRF_ZERO.PRODUCT--AGG_IND", + "sdg/TM_TRF_ZERO.PRODUCT--AGG_OIL", + "sdg/TM_TRF_ZERO.PRODUCT--AGG_TXT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGTX_EXP_GBMRCH.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Developing countries\u2019 and least developed countries\u2019 share of global merchandise exports" + ], + "memberList": [ + "sdg/TX_EXP_GBMRCH" + ] + }, + { + "dcid": [ + "dc/svpg/SDGTX_EXP_GBSVR.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Developing countries\u2019 and least developed countries\u2019 share of global services exports" + ], + "memberList": [ + "sdg/TX_EXP_GBSVR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGTX_IMP_GBMRCH.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Developing countries\u2019 and least developed countries\u2019 share of global merchandise imports" + ], + "memberList": [ + "sdg/TX_IMP_GBMRCH" + ] + }, + { + "dcid": [ + "dc/svpg/SDGTX_IMP_GBSVR.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Developing countries\u2019 and least developed countries\u2019 share of global services imports" + ], + "memberList": [ + "sdg/TX_IMP_GBSVR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_ARM_SZTRACE.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "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" + ], + "memberList": [ + "sdg/VC_ARM_SZTRACE" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_DSR_AFFCT.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of people affected by disasters" + ], + "memberList": [ + "sdg/VC_DSR_AFFCT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_DSR_AGLH.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Direct agriculture loss attributed to disasters" + ], + "memberList": [ + "sdg/VC_DSR_AGLH" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_DSR_BSDN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of disruptions to basic services attributed to disasters" + ], + "memberList": [ + "sdg/VC_DSR_BSDN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_DSR_CDAN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of damaged critical infrastructure attributed to disasters" + ], + "memberList": [ + "sdg/VC_DSR_CDAN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_DSR_CDYN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of other destroyed or damaged critical infrastructure units and facilities attributed to disasters" + ], + "memberList": [ + "sdg/VC_DSR_CDYN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_DSR_CHLN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Direct economic loss to cultural heritage damaged or destroyed attributed to disasters" + ], + "memberList": [ + "sdg/VC_DSR_CHLN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_DSR_CILN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Direct economic loss resulting from damaged or destroyed critical infrastructure attributed to disasters" + ], + "memberList": [ + "sdg/VC_DSR_CILN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_DSR_DAFF.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of directly affected persons attributed to disasters per 100", + "000 population" + ], + "memberList": [ + "sdg/VC_DSR_DAFF" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_DSR_DDPA.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Direct economic loss to other damaged or destroyed productive assets attributed to disasters" + ], + "memberList": [ + "sdg/VC_DSR_DDPA" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_DSR_EFDN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of destroyed or damaged educational facilities attributed to disasters" + ], + "memberList": [ + "sdg/VC_DSR_EFDN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_DSR_ESDN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of disruptions to educational services attributed to disasters" + ], + "memberList": [ + "sdg/VC_DSR_ESDN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_DSR_GDPLS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Direct economic loss attributed to disasters" + ], + "memberList": [ + "sdg/VC_DSR_GDPLS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_DSR_HFDN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of destroyed or damaged health facilities attributed to disasters" + ], + "memberList": [ + "sdg/VC_DSR_HFDN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_DSR_HOLH.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Direct economic loss in the housing sector attributed to disasters" + ], + "memberList": [ + "sdg/VC_DSR_HOLH" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_DSR_HSDN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of disruptions to health services attributed to disasters" + ], + "memberList": [ + "sdg/VC_DSR_HSDN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_DSR_IJILN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of injured or ill people attributed to disasters" + ], + "memberList": [ + "sdg/VC_DSR_IJILN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_DSR_LSGP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Direct economic loss attributed to disasters relative to GDP" + ], + "memberList": [ + "sdg/VC_DSR_LSGP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_DSR_MISS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of missing persons due to disaster" + ], + "memberList": [ + "sdg/VC_DSR_MISS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_DSR_MMHN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of deaths and missing persons attributed to disasters" + ], + "memberList": [ + "sdg/VC_DSR_MMHN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_DSR_MORT.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of deaths due to disaster" + ], + "memberList": [ + "sdg/VC_DSR_MORT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_DSR_MTMP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of deaths and missing persons attributed to disasters per 100", + "000 population" + ], + "memberList": [ + "sdg/VC_DSR_MTMP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_DSR_OBDN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of disruptions to other basic services attributed to disasters" + ], + "memberList": [ + "sdg/VC_DSR_OBDN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_DSR_PDAN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of people whose damaged dwellings were attributed to disasters" + ], + "memberList": [ + "sdg/VC_DSR_PDAN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_DSR_PDLN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of people whose livelihoods were disrupted or destroyed", + "attributed to disasters" + ], + "memberList": [ + "sdg/VC_DSR_PDLN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_DSR_PDYN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of people whose destroyed dwellings were attributed to disasters" + ], + "memberList": [ + "sdg/VC_DSR_PDYN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_DTH_TOCVN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of conflict-related deaths (civilians)" + ], + "memberList": [ + "sdg/VC_DTH_TOCVN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_DTH_TONCVN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of conflict-related deaths (non-civilians)" + ], + "memberList": [ + "sdg/VC_DTH_TONCVN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_DTH_TOTN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of total conflict-related deaths" + ], + "memberList": [ + "sdg/VC_DTH_TOTN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_DTH_TOTN.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of total conflict-related deaths by Age group" + ], + "memberList": [ + "sdg/VC_DTH_TOTN.AGE--Y0T17", + "sdg/VC_DTH_TOTN.AGE--Y_GE18", + "sdg/VC_DTH_TOTN.AGE--_U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_DTH_TOTN.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of total conflict-related deaths by Lethal instrument" + ], + "memberList": [ + "sdg/VC_DTH_TOTN.LETHAL_INSTRUMENT--EXPLOSIVES", + "sdg/VC_DTH_TOTN.LETHAL_INSTRUMENT--WEAPON_HEAVY", + "sdg/VC_DTH_TOTN.LETHAL_INSTRUMENT--WEAPON_LIGHT", + "sdg/VC_DTH_TOTN.LETHAL_INSTRUMENT--WEAPON_OTHER", + "sdg/VC_DTH_TOTN.LETHAL_INSTRUMENT--_U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_DTH_TOTN.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of total conflict-related deaths by Sex" + ], + "memberList": [ + "sdg/VC_DTH_TOTN.SEX--F", + "sdg/VC_DTH_TOTN.SEX--M", + "sdg/VC_DTH_TOTN.SEX--_U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_DTH_TOTPT.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Conflict-related total death rate" + ], + "memberList": [ + "sdg/VC_DTH_TOTPT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_DTH_TOTPT.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Conflict-related total death rate by Age group" + ], + "memberList": [ + "sdg/VC_DTH_TOTPT.AGE--Y0T17", + "sdg/VC_DTH_TOTPT.AGE--Y_GE18", + "sdg/VC_DTH_TOTPT.AGE--_U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_DTH_TOTPT.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Conflict-related total death rate by Lethal instrument" + ], + "memberList": [ + "sdg/VC_DTH_TOTPT.LETHAL_INSTRUMENT--EXPLOSIVES", + "sdg/VC_DTH_TOTPT.LETHAL_INSTRUMENT--WEAPON_HEAVY", + "sdg/VC_DTH_TOTPT.LETHAL_INSTRUMENT--WEAPON_LIGHT", + "sdg/VC_DTH_TOTPT.LETHAL_INSTRUMENT--WEAPON_OTHER", + "sdg/VC_DTH_TOTPT.LETHAL_INSTRUMENT--_U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_DTH_TOTPT.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Conflict-related total death rate by Sex" + ], + "memberList": [ + "sdg/VC_DTH_TOTPT.SEX--F", + "sdg/VC_DTH_TOTPT.SEX--M", + "sdg/VC_DTH_TOTPT.SEX--_U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_DTH_TOTR.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of total conflict-related deaths per 100", + "000 population" + ], + "memberList": [ + "sdg/VC_DTH_TOTR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_DTH_TOUNN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of conflict-related deaths (unknown)" + ], + "memberList": [ + "sdg/VC_DTH_TOUNN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_HTF_DETV.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Detected victims of human trafficking" + ], + "memberList": [ + "sdg/VC_HTF_DETV" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_HTF_DETV.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Detected victims of human trafficking by Age group" + ], + "memberList": [ + "sdg/VC_HTF_DETV.AGE--Y0T17", + "sdg/VC_HTF_DETV.AGE--Y_GE18" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_HTF_DETV.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Detected victims of human trafficking (18 years old and over) by Sex" + ], + "memberList": [ + "sdg/VC_HTF_DETV.AGE--Y_GE18__SEX--F", + "sdg/VC_HTF_DETV.AGE--Y_GE18__SEX--M", + "sdg/VC_HTF_DETV.AGE--Y_GE18__SEX--_O" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_HTF_DETV.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Detected victims of human trafficking (age and sex unknown)" + ], + "memberList": [ + "sdg/VC_HTF_DETV.AGE--_U__SEX--_U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_HTF_DETV.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Detected victims of human trafficking (under 18 years old) by Sex" + ], + "memberList": [ + "sdg/VC_HTF_DETV.AGE--Y0T17__SEX--F", + "sdg/VC_HTF_DETV.AGE--Y0T17__SEX--M", + "sdg/VC_HTF_DETV.AGE--Y0T17__SEX--_O" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_HTF_DETV.006" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Detected victims of human trafficking by Sex" + ], + "memberList": [ + "sdg/VC_HTF_DETV.SEX--F", + "sdg/VC_HTF_DETV.SEX--M", + "sdg/VC_HTF_DETV.SEX--_O" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_HTF_DETVFL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Detected victims of human trafficking for forced labour", + "servitude and slavery" + ], + "memberList": [ + "sdg/VC_HTF_DETVFL" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_HTF_DETVFL.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Detected victims of human trafficking for forced labour", + "servitude and slavery by Age group" + ], + "memberList": [ + "sdg/VC_HTF_DETVFL.AGE--Y0T17", + "sdg/VC_HTF_DETVFL.AGE--Y_GE18" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_HTF_DETVFL.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Detected victims of human trafficking for forced labour", + "servitude and slavery (18 years old and over) by Sex" + ], + "memberList": [ + "sdg/VC_HTF_DETVFL.AGE--Y_GE18__SEX--F", + "sdg/VC_HTF_DETVFL.AGE--Y_GE18__SEX--M", + "sdg/VC_HTF_DETVFL.AGE--Y_GE18__SEX--_O" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_HTF_DETVFL.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Detected victims of human trafficking for forced labour", + "servitude and slavery (Unknown) by Sex" + ], + "memberList": [ + "sdg/VC_HTF_DETVFL.AGE--_U__SEX--_U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_HTF_DETVFL.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Detected victims of human trafficking for forced labour", + "servitude and slavery (under 18 years old) by Sex" + ], + "memberList": [ + "sdg/VC_HTF_DETVFL.AGE--Y0T17__SEX--F", + "sdg/VC_HTF_DETVFL.AGE--Y0T17__SEX--M", + "sdg/VC_HTF_DETVFL.AGE--Y0T17__SEX--_O" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_HTF_DETVFLR.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Detected victims of human trafficking for forced labour", + "servitude and slavery" + ], + "memberList": [ + "sdg/VC_HTF_DETVFLR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_HTF_DETVFLR.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Detected victims of human trafficking for forced labour", + "servitude and slavery by Age group" + ], + "memberList": [ + "sdg/VC_HTF_DETVFLR.AGE--Y0T17", + "sdg/VC_HTF_DETVFLR.AGE--Y_GE18" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_HTF_DETVFLR.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Detected victims of human trafficking for forced labour", + "servitude and slavery (18 years old and over) by Sex" + ], + "memberList": [ + "sdg/VC_HTF_DETVFLR.AGE--Y_GE18__SEX--F", + "sdg/VC_HTF_DETVFLR.AGE--Y_GE18__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_HTF_DETVFLR.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Detected victims of human trafficking for forced labour", + "servitude and slavery (under 18 years old) by Sex" + ], + "memberList": [ + "sdg/VC_HTF_DETVFLR.AGE--Y0T17__SEX--F", + "sdg/VC_HTF_DETVFLR.AGE--Y0T17__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_HTF_DETVOG.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Detected victims of human trafficking for removal of organ" + ], + "memberList": [ + "sdg/VC_HTF_DETVOG" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_HTF_DETVOG.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Detected victims of human trafficking for removal of organ (18 years old and over) by Sex" + ], + "memberList": [ + "sdg/VC_HTF_DETVOG.AGE--Y_GE18", + "sdg/VC_HTF_DETVOG.AGE--Y_GE18__SEX--F", + "sdg/VC_HTF_DETVOG.AGE--Y_GE18__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_HTF_DETVOGR.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Detected victims of human trafficking for removal of organ" + ], + "memberList": [ + "sdg/VC_HTF_DETVOGR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_HTF_DETVOGR.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Detected victims of human trafficking for removal of organ (18 years old and over) by Sex" + ], + "memberList": [ + "sdg/VC_HTF_DETVOGR.AGE--Y_GE18", + "sdg/VC_HTF_DETVOGR.AGE--Y_GE18__SEX--F", + "sdg/VC_HTF_DETVOGR.AGE--Y_GE18__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_HTF_DETVOP.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Detected victims of human trafficking for other purposes" + ], + "memberList": [ + "sdg/VC_HTF_DETVOP" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_HTF_DETVOP.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Detected victims of human trafficking for other purposes by Age group" + ], + "memberList": [ + "sdg/VC_HTF_DETVOP.AGE--Y0T17", + "sdg/VC_HTF_DETVOP.AGE--Y_GE18" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_HTF_DETVOP.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Detected victims of human trafficking for other purposes (18 years old and over) by Sex" + ], + "memberList": [ + "sdg/VC_HTF_DETVOP.AGE--Y_GE18__SEX--F", + "sdg/VC_HTF_DETVOP.AGE--Y_GE18__SEX--M", + "sdg/VC_HTF_DETVOP.AGE--Y_GE18__SEX--_O" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_HTF_DETVOP.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Detected victims of human trafficking for other purposes (age and sex unknown)" + ], + "memberList": [ + "sdg/VC_HTF_DETVOP.AGE--_U__SEX--_U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_HTF_DETVOP.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Detected victims of human trafficking for other purposes (under 18 years old) by Sex" + ], + "memberList": [ + "sdg/VC_HTF_DETVOP.AGE--Y0T17__SEX--F", + "sdg/VC_HTF_DETVOP.AGE--Y0T17__SEX--M", + "sdg/VC_HTF_DETVOP.AGE--Y0T17__SEX--_O" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_HTF_DETVOPR.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Detected victims of human trafficking for other purposes" + ], + "memberList": [ + "sdg/VC_HTF_DETVOPR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_HTF_DETVOPR.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Detected victims of human trafficking for other purposes by Age group" + ], + "memberList": [ + "sdg/VC_HTF_DETVOPR.AGE--Y0T17", + "sdg/VC_HTF_DETVOPR.AGE--Y_GE18" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_HTF_DETVOPR.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Detected victims of human trafficking for other purposes (18 years old and over) by Sex" + ], + "memberList": [ + "sdg/VC_HTF_DETVOPR.AGE--Y_GE18__SEX--F", + "sdg/VC_HTF_DETVOPR.AGE--Y_GE18__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_HTF_DETVOPR.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Detected victims of human trafficking for other purposes (under 18 years old) by Sex" + ], + "memberList": [ + "sdg/VC_HTF_DETVOPR.AGE--Y0T17__SEX--F", + "sdg/VC_HTF_DETVOPR.AGE--Y0T17__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_HTF_DETVR.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Detected victims of human trafficking" + ], + "memberList": [ + "sdg/VC_HTF_DETVR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_HTF_DETVR.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Detected victims of human trafficking by Age group" + ], + "memberList": [ + "sdg/VC_HTF_DETVR.AGE--Y0T17", + "sdg/VC_HTF_DETVR.AGE--Y_GE18" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_HTF_DETVR.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Detected victims of human trafficking (18 years old and over) by Sex" + ], + "memberList": [ + "sdg/VC_HTF_DETVR.AGE--Y_GE18__SEX--F", + "sdg/VC_HTF_DETVR.AGE--Y_GE18__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_HTF_DETVR.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Detected victims of human trafficking (under 18 years old) by Sex" + ], + "memberList": [ + "sdg/VC_HTF_DETVR.AGE--Y0T17__SEX--F", + "sdg/VC_HTF_DETVR.AGE--Y0T17__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_HTF_DETVR.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Detected victims of human trafficking by Sex" + ], + "memberList": [ + "sdg/VC_HTF_DETVR.SEX--F", + "sdg/VC_HTF_DETVR.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_HTF_DETVSX.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Detected victims of human trafficking for sexual exploitation" + ], + "memberList": [ + "sdg/VC_HTF_DETVSX" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_HTF_DETVSX.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Detected victims of human trafficking for sexual exploitation by Age group" + ], + "memberList": [ + "sdg/VC_HTF_DETVSX.AGE--Y0T17", + "sdg/VC_HTF_DETVSX.AGE--Y_GE18" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_HTF_DETVSX.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Detected victims of human trafficking for sexual exploitation (18 years old and over) by Sex" + ], + "memberList": [ + "sdg/VC_HTF_DETVSX.AGE--Y_GE18__SEX--F", + "sdg/VC_HTF_DETVSX.AGE--Y_GE18__SEX--M", + "sdg/VC_HTF_DETVSX.AGE--Y_GE18__SEX--_O" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_HTF_DETVSX.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Detected victims of human trafficking for sexual exploitation (age and sex unknown)" + ], + "memberList": [ + "sdg/VC_HTF_DETVSX.AGE--_U__SEX--_U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_HTF_DETVSX.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Detected victims of human trafficking for sexual exploitation (under 18 years old) by Sex" + ], + "memberList": [ + "sdg/VC_HTF_DETVSX.AGE--Y0T17__SEX--F", + "sdg/VC_HTF_DETVSX.AGE--Y0T17__SEX--M", + "sdg/VC_HTF_DETVSX.AGE--Y0T17__SEX--_O" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_HTF_DETVSXR.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Detected victims of human trafficking for sexual exploitation" + ], + "memberList": [ + "sdg/VC_HTF_DETVSXR" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_HTF_DETVSXR.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Detected victims of human trafficking for sexual exploitation by Age group" + ], + "memberList": [ + "sdg/VC_HTF_DETVSXR.AGE--Y0T17", + "sdg/VC_HTF_DETVSXR.AGE--Y_GE18" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_HTF_DETVSXR.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Detected victims of human trafficking for sexual exploitation (18 years old and over) by Sex" + ], + "memberList": [ + "sdg/VC_HTF_DETVSXR.AGE--Y_GE18__SEX--F", + "sdg/VC_HTF_DETVSXR.AGE--Y_GE18__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_HTF_DETVSXR.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Detected victims of human trafficking for sexual exploitation (under 18 years old) by Sex" + ], + "memberList": [ + "sdg/VC_HTF_DETVSXR.AGE--Y0T17__SEX--F", + "sdg/VC_HTF_DETVSXR.AGE--Y0T17__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_IHR_PSRC.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of victims of intentional homicide per 100", + "000 population" + ], + "memberList": [ + "sdg/VC_IHR_PSRC" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_IHR_PSRC.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of victims of intentional homicide per 100", + "000 population by Sex" + ], + "memberList": [ + "sdg/VC_IHR_PSRC.SEX--F", + "sdg/VC_IHR_PSRC.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_IHR_PSRCN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of victims of intentional homicide" + ], + "memberList": [ + "sdg/VC_IHR_PSRCN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_IHR_PSRCN.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of victims of intentional homicide by Sex" + ], + "memberList": [ + "sdg/VC_IHR_PSRCN.SEX--F", + "sdg/VC_IHR_PSRCN.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_PRR_PHYV.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Police reporting rate for physical assault in the previous 12 months" + ], + "memberList": [ + "sdg/VC_PRR_PHYV" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_PRR_PHYV.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Police reporting rate for physical assault in the previous 12 months by Sex" + ], + "memberList": [ + "sdg/VC_PRR_PHYV.SEX--F", + "sdg/VC_PRR_PHYV.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_PRR_PHY_VIO.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Police reporting rate for physical violence in the previous 12 months" + ], + "memberList": [ + "sdg/VC_PRR_PHY_VIO" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_PRR_PHY_VIO.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Police reporting rate for physical violence in the previous 12 months by Sex" + ], + "memberList": [ + "sdg/VC_PRR_PHY_VIO.SEX--F", + "sdg/VC_PRR_PHY_VIO.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_PRR_PSYCHV.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Police reporting rate for psychological violence in the previous 12 months" + ], + "memberList": [ + "sdg/VC_PRR_PSYCHV" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_PRR_PSYCHV.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Police reporting rate for psychological violence in the previous 12 months by Sex" + ], + "memberList": [ + "sdg/VC_PRR_PSYCHV.SEX--F", + "sdg/VC_PRR_PSYCHV.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_PRR_ROBB.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Police reporting rate for robbery in the previous 12 months" + ], + "memberList": [ + "sdg/VC_PRR_ROBB" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_PRR_ROBB.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Police reporting rate for robbery in the previous 12 months by Sex" + ], + "memberList": [ + "sdg/VC_PRR_ROBB.SEX--F", + "sdg/VC_PRR_ROBB.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_PRR_SEXV.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Police reporting rate for sexual assault in the previous 12 months" + ], + "memberList": [ + "sdg/VC_PRR_SEXV" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_PRR_SEXV.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Police reporting rate for sexual assault in the previous 12 months by Sex" + ], + "memberList": [ + "sdg/VC_PRR_SEXV.SEX--F", + "sdg/VC_PRR_SEXV.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_PRR_SEX_VIO.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Police reporting rate for sexual violence in the previous 12 months" + ], + "memberList": [ + "sdg/VC_PRR_SEX_VIO" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_PRR_SEX_VIO.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Police reporting rate for sexual violence in the previous 12 months by Sex" + ], + "memberList": [ + "sdg/VC_PRR_SEX_VIO.SEX--F", + "sdg/VC_PRR_SEX_VIO.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_PRS_UNSNT.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Unsentenced detainees as a proportion of overall prison population" + ], + "memberList": [ + "sdg/VC_PRS_UNSNT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_PRS_UNSNT.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Unsentenced detainees as a proportion of overall prison population by Sex" + ], + "memberList": [ + "sdg/VC_PRS_UNSNT.SEX--F", + "sdg/VC_PRS_UNSNT.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_SNS_WALN_DRK.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population that feel safe walking alone around the area they live after dark" + ], + "memberList": [ + "sdg/VC_SNS_WALN_DRK" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_SNS_WALN_DRK.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population that feel safe walking alone around the area they live after dark by Sex" + ], + "memberList": [ + "sdg/VC_SNS_WALN_DRK.SEX--F", + "sdg/VC_SNS_WALN_DRK.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VAW_MARR.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of ever-partnered women and girls subjected to physical and/or sexual violence by a current or former intimate partner in the previous 12 months by Age group" + ], + "memberList": [ + "sdg/VC_VAW_MARR.AGE--Y15T49__SEX--F", + "sdg/VC_VAW_MARR.AGE--Y_GE15__SEX--F" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VAW_MTUHRA.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of cases of killings of human rights defenders", + "journalists and trade unionists" + ], + "memberList": [ + "sdg/VC_VAW_MTUHRA" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VAW_MTUHRA.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of cases of killings of human rights defenders", + "journalists and trade unionists by Sex" + ], + "memberList": [ + "sdg/VC_VAW_MTUHRA.SEX--F", + "sdg/VC_VAW_MTUHRA.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VAW_MTUHRAN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Countries with at least one verified case of killings of human rights defenders", + "journalists", + "and trade unionists" + ], + "memberList": [ + "sdg/VC_VAW_MTUHRAN" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VAW_PHYPYV.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of children aged 1-14 years who experienced physical punishment and/or psychological aggression by caregivers in last month by Age group" + ], + "memberList": [ + "sdg/VC_VAW_PHYPYV.AGE--Y1T14", + "sdg/VC_VAW_PHYPYV.AGE--Y1T4", + "sdg/VC_VAW_PHYPYV.AGE--Y2T14", + "sdg/VC_VAW_PHYPYV.AGE--Y5T12" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VAW_SXVLN.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population aged 18-29 years who experienced sexual violence by age\\xa018 (18 to 29 years old) by Sex" + ], + "memberList": [ + "sdg/VC_VAW_SXVLN.AGE--Y18T29__SEX--F", + "sdg/VC_VAW_SXVLN.AGE--Y18T29__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VAW_SXVLN.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population aged 18-29 years who experienced sexual violence by age\\xa018 (18 to 74 years old) by Sex" + ], + "memberList": [ + "sdg/VC_VAW_SXVLN.AGE--Y18T74__SEX--F", + "sdg/VC_VAW_SXVLN.AGE--Y18T74__SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VOC_ENFDIS.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of cases of enforced disappearance of human rights defenders", + "journalists and trade unionists" + ], + "memberList": [ + "sdg/VC_VOC_ENFDIS" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VOC_ENFDIS.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Number of cases of enforced disappearance of human rights defenders", + "journalists and trade unionists by Sex" + ], + "memberList": [ + "sdg/VC_VOC_ENFDIS.SEX--F", + "sdg/VC_VOC_ENFDIS.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VOH_SXPH.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of persons victim of non-sexual or sexual harassment", + "in the previous 12 months" + ], + "memberList": [ + "sdg/VC_VOH_SXPH" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VOH_SXPH.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of persons victim of non-sexual or sexual harassment", + "in the previous 12 months by Sex" + ], + "memberList": [ + "sdg/VC_VOH_SXPH.SEX--F", + "sdg/VC_VOH_SXPH.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VOV_GDSD.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population reporting having felt discriminated against" + ], + "memberList": [ + "sdg/VC_VOV_GDSD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VOV_GDSD.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population reporting having felt discriminated against by Disability status" + ], + "memberList": [ + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VOV_GDSD.003" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population reporting having felt discriminated against (Persons with disability) by Grounds of discrimination" + ], + "memberList": [ + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--AGE", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--COLR", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--DIS", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--DISHEA", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--ETH", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--ETHCOLLAN", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--ETHI", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--ETHIO", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--ETHRACECOLLAN", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--GENID", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--GEO", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--HEAILLINJ", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--LANDIA", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--MARFAM", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--MIG", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--NETW", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--ORIGIN", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--OTHER", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--POLVIEW", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--RACECOLR", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--RELIGION", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--SEX", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--SEXGENID", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--SEXO", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--SEXOGENID", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--SOCIOECON", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--TRAD", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--WEDLOCK" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VOV_GDSD.004" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population reporting having felt discriminated against (Persons without disability) by Grounds of discrimination" + ], + "memberList": [ + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--AGE", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--COLR", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--DIS", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--DISHEA", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--ETH", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--ETHCOLLAN", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--ETHI", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--ETHIO", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--ETHRACECOLLAN", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--GENID", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--GEO", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--HEAILLINJ", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--LANDIA", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--MARFAM", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--MIG", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--NETW", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--ORIGIN", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--OTHER", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--POLVIEW", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--RACECOLR", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--RELIGION", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--SEX", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--SEXGENID", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--SEXO", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--SEXOGENID", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--SOCIOECON", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--TRAD", + "sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--WEDLOCK" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VOV_GDSD.005" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population reporting having felt discriminated against by Grounds of discrimination" + ], + "memberList": [ + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--AGE", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--CLOTH", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--COLR", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--DIS", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--DISHEA", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--EDU", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--ETH", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--ETHCOLLAN", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--ETHCOLLANMIG", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--ETHCOLLANNAL", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--ETHCUL", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--ETHI", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--ETHIO", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--ETHRACECOLLAN", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--FAM", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--FNAM", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--GENID", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--GEO", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--HEAILLINJ", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--HEALTH", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--INTERS", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--LANDIA", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--MAR", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--MARFAM", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--MHEALTH", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--MIG", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--NETW", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--ORIGIN", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--OTHER", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--PHEALTH", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--PHYSCOND", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--POLVIEW", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--RACE", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--RACECOLR", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--RELIGION", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--RES", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--SEX", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--SEXGENID", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--SEXO", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--SEXOGENID", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--SOCIOECON", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--TRAD", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--TRANSG", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--VIEW", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--WEDLOCK", + "sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--WORK" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VOV_GDSD.006" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population reporting having felt discriminated against by Sex" + ], + "memberList": [ + "sdg/VC_VOV_GDSD.SEX--F", + "sdg/VC_VOV_GDSD.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VOV_GDSD.007" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population reporting having felt discriminated against (Female) by Disability status" + ], + "memberList": [ + "sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PD", + "sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PWD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VOV_GDSD.008" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population reporting having felt discriminated against (Male) by Disability status" + ], + "memberList": [ + "sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PD", + "sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PWD" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VOV_GDSD.009" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population reporting having felt discriminated against (Female", + "Persons with disability) by Grounds of discrimination" + ], + "memberList": [ + "sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--AGE", + "sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--COLR", + "sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--DIS", + "sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--ETH", + "sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--ETHI", + "sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--ETHIO", + "sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--MARFAM", + "sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--MIG", + "sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--NATION", + "sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--OTHER", + "sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--POLVIEW", + "sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--PREGY", + "sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--RELIGION", + "sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--RES", + "sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--SEX", + "sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--SEXO", + "sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--SOCIOECON", + "sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--WEDLOCK" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VOV_GDSD.010" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population reporting having felt discriminated against (Female", + "Persons without disability) by Grounds of discrimination" + ], + "memberList": [ + "sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--AGE", + "sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--COLR", + "sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--DIS", + "sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--ETH", + "sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--ETHI", + "sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--ETHIO", + "sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--MARFAM", + "sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--MIG", + "sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--NATION", + "sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--OTHER", + "sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--POLVIEW", + "sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--PREGY", + "sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--RELIGION", + "sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--RES", + "sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--SEX", + "sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--SEXO", + "sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--SOCIOECON", + "sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--WEDLOCK" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VOV_GDSD.011" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population reporting having felt discriminated against (Male", + "Persons with disability) by Grounds of discrimination" + ], + "memberList": [ + "sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--AGE", + "sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--DIS", + "sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--ETH", + "sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--ETHI", + "sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--ETHIO", + "sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--MARFAM", + "sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--MIG", + "sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--OTHER", + "sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--POLVIEW", + "sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--RELIGION", + "sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--SEX", + "sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--SEXO", + "sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--WEDLOCK" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VOV_GDSD.012" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population reporting having felt discriminated against (Male", + "Persons without disability) by Grounds of discrimination" + ], + "memberList": [ + "sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--AGE", + "sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--COLR", + "sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--DIS", + "sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--ETH", + "sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--ETHI", + "sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--ETHIO", + "sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--MARFAM", + "sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--MIG", + "sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--OTHER", + "sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--POLVIEW", + "sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--RELIGION", + "sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--SEX", + "sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--SEXO", + "sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--WEDLOCK" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VOV_GDSD.013" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population reporting having felt discriminated against (Female) by Grounds of discrimination" + ], + "memberList": [ + "sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--AGE", + "sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--CLOTH", + "sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--COLR", + "sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--DIS", + "sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--DISHEA", + "sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--EDU", + "sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--ETH", + "sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--ETHCOLLAN", + "sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--ETHCOLLANMIG", + "sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--ETHCOLLANNAL", + "sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--ETHCUL", + "sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--ETHI", + "sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--ETHIO", + "sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--ETHRACECOLLAN", + "sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--FAM", + "sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--GENID", + "sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--GEO", + "sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--HEAILLINJ", + "sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--HEALTH", + "sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--INTERS", + "sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--LANDIA", + "sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--MAR", + "sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--MARFAM", + "sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--MIG", + "sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--NATION", + "sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--NETW", + "sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--ORIGIN", + "sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--OTHER", + "sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--PHYSCOND", + "sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--POLVIEW", + "sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--PREGY", + "sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--RACE", + "sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--RACECOLR", + "sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--RELIGION", + "sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--RES", + "sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--SEX", + "sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--SEXGENID", + "sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--SEXO", + "sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--SEXOGENID", + "sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--SOCIOECON", + "sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--TRAD", + "sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--TRANSG", + "sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--WEDLOCK", + "sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--WORK" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VOV_GDSD.014" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population reporting having felt discriminated against (Male) by Grounds of discrimination" + ], + "memberList": [ + "sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--AGE", + "sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--CLOTH", + "sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--COLR", + "sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--DIS", + "sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--DISHEA", + "sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--EDU", + "sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--ETH", + "sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--ETHCOLLAN", + "sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--ETHCOLLANMIG", + "sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--ETHCOLLANNAL", + "sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--ETHCUL", + "sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--ETHI", + "sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--ETHIO", + "sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--ETHRACECOLLAN", + "sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--FAM", + "sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--GENID", + "sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--GEO", + "sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--HEAILLINJ", + "sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--HEALTH", + "sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--INTERS", + "sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--LANDIA", + "sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--MAR", + "sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--MARFAM", + "sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--MIG", + "sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--NETW", + "sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--ORIGIN", + "sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--OTHER", + "sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--PHYSCOND", + "sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--POLVIEW", + "sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--RACE", + "sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--RACECOLR", + "sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--RELIGION", + "sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--RES", + "sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--SEX", + "sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--SEXGENID", + "sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--SEXO", + "sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--SEXOGENID", + "sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--SOCIOECON", + "sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--TRAD", + "sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--TRANSG", + "sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--WEDLOCK", + "sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--WORK" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VOV_GDSD.015" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population reporting having felt discriminated against by Type of location" + ], + "memberList": [ + "sdg/VC_VOV_GDSD.URBANIZATION--R", + "sdg/VC_VOV_GDSD.URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VOV_GDSD.016" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population reporting having felt discriminated against (Rural) by Grounds of discrimination" + ], + "memberList": [ + "sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--AGE", + "sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--CLOTH", + "sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--COLR", + "sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--DIS", + "sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--DISHEA", + "sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--ETH", + "sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--ETHCOLLAN", + "sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--ETHCOLLANMIG", + "sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--ETHI", + "sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--ETHIO", + "sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--GEO", + "sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--HEALTH", + "sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--INTERS", + "sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--LANDIA", + "sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--MAR", + "sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--MARFAM", + "sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--MIG", + "sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--ORIGIN", + "sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--OTHER", + "sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--PHYSCOND", + "sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--POLVIEW", + "sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--RACECOLR", + "sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--RELIGION", + "sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--RES", + "sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--SEX", + "sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--SEXO", + "sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--SEXOGENID", + "sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--SOCIOECON", + "sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--TRANSG", + "sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--WEDLOCK", + "sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--WORK" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VOV_GDSD.017" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population reporting having felt discriminated against (Urban) by Grounds of discrimination" + ], + "memberList": [ + "sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--AGE", + "sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--CLOTH", + "sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--COLR", + "sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--DIS", + "sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--DISHEA", + "sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--ETH", + "sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--ETHCOLLAN", + "sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--ETHCOLLANMIG", + "sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--ETHI", + "sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--ETHIO", + "sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--GEO", + "sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--HEALTH", + "sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--INTERS", + "sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--LANDIA", + "sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--MAR", + "sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--MARFAM", + "sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--MIG", + "sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--ORIGIN", + "sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--OTHER", + "sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--PHYSCOND", + "sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--POLVIEW", + "sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--RACECOLR", + "sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--RELIGION", + "sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--RES", + "sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--SEX", + "sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--SEXO", + "sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--SEXOGENID", + "sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--SOCIOECON", + "sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--TRANSG", + "sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--WEDLOCK", + "sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--WORK" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VOV_GDSD.018" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population reporting having felt discriminated against (Rural) by Sex" + ], + "memberList": [ + "sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--R", + "sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--R" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VOV_GDSD.019" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population reporting having felt discriminated against (Urban) by Sex" + ], + "memberList": [ + "sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--U", + "sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--U" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VOV_GDSD.020" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population reporting having felt discriminated against (Rural", + "Female) by Grounds of discrimination" + ], + "memberList": [ + "sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--AGE", + "sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--COLR", + "sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--DIS", + "sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--ETH", + "sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--ETHI", + "sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--ETHIO", + "sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--MARFAM", + "sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--MIG", + "sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--NATION", + "sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--OTHER", + "sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--POLVIEW", + "sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--PREGY", + "sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--RELIGION", + "sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--RES", + "sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--SEX", + "sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--SEXO", + "sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--SOCIOECON", + "sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--WEDLOCK", + "sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--WORK" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VOV_GDSD.021" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population reporting having felt discriminated against (Rural", + "Male) by Grounds of discrimination" + ], + "memberList": [ + "sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--AGE", + "sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--COLR", + "sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--DIS", + "sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--ETHI", + "sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--ETHIO", + "sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--MARFAM", + "sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--MIG", + "sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--OTHER", + "sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--POLVIEW", + "sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--RELIGION", + "sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--SEX", + "sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--SEXO", + "sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--SOCIOECON", + "sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--WEDLOCK", + "sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--WORK" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VOV_GDSD.022" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population reporting having felt discriminated against (Urban", + "Female) by Grounds of discrimination" + ], + "memberList": [ + "sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--AGE", + "sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--COLR", + "sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--DIS", + "sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--ETH", + "sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--ETHI", + "sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--ETHIO", + "sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--MARFAM", + "sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--MIG", + "sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--NATION", + "sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--OTHER", + "sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--POLVIEW", + "sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--PREGY", + "sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--RELIGION", + "sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--RES", + "sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--SEX", + "sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--SEXO", + "sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--SOCIOECON", + "sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--WEDLOCK", + "sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--WORK" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VOV_GDSD.023" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population reporting having felt discriminated against (Urban", + "Male) by Grounds of discrimination" + ], + "memberList": [ + "sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--AGE", + "sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--COLR", + "sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--DIS", + "sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--ETH", + "sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--ETHI", + "sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--ETHIO", + "sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--MARFAM", + "sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--MIG", + "sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--OTHER", + "sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--POLVIEW", + "sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--RELIGION", + "sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--SEX", + "sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--SEXO", + "sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--SOCIOECON", + "sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--WEDLOCK", + "sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--WORK" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VOV_PHYL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population subjected to physical violence in the previous 12 months" + ], + "memberList": [ + "sdg/VC_VOV_PHYL" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VOV_PHYL.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population subjected to physical violence in the previous 12 months by Sex" + ], + "memberList": [ + "sdg/VC_VOV_PHYL.SEX--F", + "sdg/VC_VOV_PHYL.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VOV_PHY_ASLT.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population subjected to physical assault in the previous 12 months" + ], + "memberList": [ + "sdg/VC_VOV_PHY_ASLT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VOV_PHY_ASLT.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population subjected to physical assault in the previous 12 months by Sex" + ], + "memberList": [ + "sdg/VC_VOV_PHY_ASLT.SEX--F", + "sdg/VC_VOV_PHY_ASLT.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VOV_PSYCHL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population subjected to psychological violence in the previous 12 months" + ], + "memberList": [ + "sdg/VC_VOV_PSYCHL" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VOV_PSYCHL.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population subjected to psychological violence in the previous 12 months by Sex" + ], + "memberList": [ + "sdg/VC_VOV_PSYCHL.SEX--F", + "sdg/VC_VOV_PSYCHL.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VOV_ROBB.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population subjected to robbery in the previous 12 months" + ], + "memberList": [ + "sdg/VC_VOV_ROBB" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VOV_ROBB.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population subjected to robbery in the previous 12 months by Sex" + ], + "memberList": [ + "sdg/VC_VOV_ROBB.SEX--F", + "sdg/VC_VOV_ROBB.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VOV_SEXL.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population subjected to sexual violence in the previous 12 months" + ], + "memberList": [ + "sdg/VC_VOV_SEXL" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VOV_SEXL.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population subjected to sexual violence in the previous 12 months by Sex" + ], + "memberList": [ + "sdg/VC_VOV_SEXL.SEX--F", + "sdg/VC_VOV_SEXL.SEX--M" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VOV_SEX_ASLT.001" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population subjected to sexual assault in the previous 12 months" + ], + "memberList": [ + "sdg/VC_VOV_SEX_ASLT" + ] + }, + { + "dcid": [ + "dc/svpg/SDGVC_VOV_SEX_ASLT.002" + ], + "typeOf": [ + "StatVarPeerGroup" + ], + "name": [ + "Proportion of population subjected to sexual assault in the previous 12 months by Sex" + ], + "memberList": [ + "sdg/VC_VOV_SEX_ASLT.SEX--F", + "sdg/VC_VOV_SEX_ASLT.SEX--M" + ] + }, + { + "dcid": [ + "dc/topic/SDGAGFLSINDEX" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Global food loss index" + ], + "relevantVariableList": [ + "dc/svpg/sdg/AG_FLS_INDEX.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGAGFLSPCT" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Food loss percentage" + ], + "relevantVariableList": [ + "dc/svpg/sdg/AG_FLS_PCT.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGAGFOODWST" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Food waste" + ], + "relevantVariableList": [ + "dc/svpg/sdg/AG_FOOD_WST.001", + "dc/svpg/sdg/AG_FOOD_WST.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGAGFOODWSTPC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Food waste per capita" + ], + "relevantVariableList": [ + "dc/svpg/sdg/AG_FOOD_WST_PC.001", + "dc/svpg/sdg/AG_FOOD_WST_PC.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGAGFPACFPI" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Indicator of Food Price Anomalies (IFPA) by Consumer Price Index of Food" + ], + "relevantVariableList": [ + "dc/svpg/sdg/AG_FPA_CFPI.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGAGFPACOMM" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Indicator of Food Price Anomalies (IFPA) by Product" + ], + "relevantVariableList": [ + "dc/svpg/sdg/AG_FPA_COMM.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGAGFPAHMFP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of countries recording abnormally high or moderately high food prices, according to the Indicator of Food Price Anomalies" + ], + "relevantVariableList": [ + "dc/svpg/sdg/AG_FPA_HMFP.001", + "dc/svpg/sdg/AG_FPA_HMFP.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGAGLNDAGRBIO" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of agricultural land area that has achieved an acceptable or desirable level of use of agro-biodiversity supportive practices" + ], + "relevantVariableList": [ + "dc/svpg/sdg/AG_LND_AGRBIO.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGAGLNDAGRWAG" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of agricultural land area that has achieved an acceptable or desirable level of wage rate in agriculture" + ], + "relevantVariableList": [ + "dc/svpg/sdg/AG_LND_AGRWAG.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGAGLNDDGRD" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of land that is degraded over total land area" + ], + "relevantVariableList": [ + "dc/svpg/sdg/AG_LND_DGRD.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGAGLNDFERTMG" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of agricultural land area that has achieved an acceptable or desirable level of management of fertilizers" + ], + "relevantVariableList": [ + "dc/svpg/sdg/AG_LND_FERTMG.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGAGLNDFIES" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of agricultural land area that has achieved an acceptable or desirable level of food security" + ], + "relevantVariableList": [ + "dc/svpg/sdg/AG_LND_FIES.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGAGLNDFOVH" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of agricultural land area that has achieved an acceptable or desirable level of farm output value per hectare" + ], + "relevantVariableList": [ + "dc/svpg/sdg/AG_LND_FOVH.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGAGLNDFRST" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Forest area as a proportion of total land area" + ], + "relevantVariableList": [ + "dc/svpg/sdg/AG_LND_FRST.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGAGLNDFRSTBIOPHA" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Above-ground biomass in forest" + ], + "relevantVariableList": [ + "dc/svpg/sdg/AG_LND_FRSTBIOPHA.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGAGLNDFRSTCERT" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Forest area certified under an independently verified certification scheme" + ], + "relevantVariableList": [ + "dc/svpg/sdg/AG_LND_FRSTCERT.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGAGLNDFRSTCHG" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Annual forest area change rate" + ], + "relevantVariableList": [ + "dc/svpg/sdg/AG_LND_FRSTCHG.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGAGLNDFRSTMGT" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of forest area with a long-term management plan" + ], + "relevantVariableList": [ + "dc/svpg/sdg/AG_LND_FRSTMGT.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGAGLNDFRSTN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Forest area" + ], + "relevantVariableList": [ + "dc/svpg/sdg/AG_LND_FRSTN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGAGLNDFRSTPRCT" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of forest area within legally established protected areas" + ], + "relevantVariableList": [ + "dc/svpg/sdg/AG_LND_FRSTPRCT.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGAGLNDH2OAVAIL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of agricultural land area that has achieved an acceptable or desirable level of variation in water availability" + ], + "relevantVariableList": [ + "dc/svpg/sdg/AG_LND_H2OAVAIL.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGAGLNDLNDSTR" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of agricultural land area that has achieved an acceptable or desirable level of secure tenure rights to agricultural land" + ], + "relevantVariableList": [ + "dc/svpg/sdg/AG_LND_LNDSTR.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGAGLNDNFI" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of agricultural land area that has achieved an acceptable or desirable level of net farm income" + ], + "relevantVariableList": [ + "dc/svpg/sdg/AG_LND_NFI.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGAGLNDPSTCDSMG" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of agricultural land area that has achieved an acceptable or desirable level of management of pesticides" + ], + "relevantVariableList": [ + "dc/svpg/sdg/AG_LND_PSTCDSMG.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGAGLNDRMM" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of agricultural land area that has achieved an acceptable or desirable level of risk mitigation mechanisms" + ], + "relevantVariableList": [ + "dc/svpg/sdg/AG_LND_RMM.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGAGLNDSDGRD" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of agricultural land area that has achieved an acceptable or desirable level of soil degradation" + ], + "relevantVariableList": [ + "dc/svpg/sdg/AG_LND_SDGRD.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGAGLNDSUST" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of agricultural area under productive and sustainable agriculture" + ], + "relevantVariableList": [ + "dc/svpg/sdg/AG_LND_SUST.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGAGLNDSUSTPRXCSS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Progress toward productive and sustainable agriculture, current status score (proxy)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/AG_LND_SUST_PRXCSS.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGAGLNDSUSTPRXTS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Progress toward productive and sustainable agriculture, trend score (proxy)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/AG_LND_SUST_PRXTS.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGAGLNDTOTL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Land area" + ], + "relevantVariableList": [ + "dc/svpg/sdg/AG_LND_TOTL.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGAGPRDAGVAS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Agriculture value added share of GDP" + ], + "relevantVariableList": [ + "dc/svpg/sdg/AG_PRD_AGVAS.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGAGPRDFIESMS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Prevalence of moderate or severe food insecurity in the population" + ], + "relevantVariableList": [ + "dc/svpg/sdg/AG_PRD_FIESMS.001", + "dc/svpg/sdg/AG_PRD_FIESMS.002", + "dc/svpg/sdg/AG_PRD_FIESMS.003" + ] + }, + { + "dcid": [ + "dc/topic/SDGAGPRDFIESMSN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Population in moderate or severe food insecurity" + ], + "relevantVariableList": [ + "dc/svpg/sdg/AG_PRD_FIESMSN.001", + "dc/svpg/sdg/AG_PRD_FIESMSN.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGAGPRDFIESS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Prevalence of severe food insecurity in the population" + ], + "relevantVariableList": [ + "dc/svpg/sdg/AG_PRD_FIESS.001", + "dc/svpg/sdg/AG_PRD_FIESS.002", + "dc/svpg/sdg/AG_PRD_FIESS.003" + ] + }, + { + "dcid": [ + "dc/topic/SDGAGPRDFIESSN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Population in severe food insecurity" + ], + "relevantVariableList": [ + "dc/svpg/sdg/AG_PRD_FIESSN.001", + "dc/svpg/sdg/AG_PRD_FIESSN.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGAGPRDORTIND" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Agriculture orientation index for government expenditures" + ], + "relevantVariableList": [ + "dc/svpg/sdg/AG_PRD_ORTIND.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGAGPRDXSUBDY" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Agricultural export subsidies" + ], + "relevantVariableList": [ + "dc/svpg/sdg/AG_PRD_XSUBDY.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGAGXPDAGSGB" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Agriculture share of Government Expenditure" + ], + "relevantVariableList": [ + "dc/svpg/sdg/AG_XPD_AGSGB.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGBNCABXOKAGDZS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Current account balance as a proportion of GDP" + ], + "relevantVariableList": [ + "dc/svpg/sdg/BN_CAB_XOKA_GD_ZS.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGBNKLTPTXLCD" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Portfolio investment, net (Balance of Payments)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/BN_KLT_PTXL_CD.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGBXKLTDINVWDGDZS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Foreign direct investment, net inflows, as a proportion of GDP" + ], + "relevantVariableList": [ + "dc/svpg/sdg/BX_KLT_DINV_WD_GD_ZS.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGBXTRFPWKR" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Volume of remittances as a proportion of total GDP" + ], + "relevantVariableList": [ + "dc/svpg/sdg/BX_TRF_PWKR.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCENVTECHEXP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Amount of tracked exported Environmentally Sound Technologies" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_ENVTECH_EXP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCENVTECHIMP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Amount of tracked imported Environmentally Sound Technologies" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_ENVTECH_IMP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCENVTECHINV" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Total investment in Environment Sound Technologies" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_ENVTECH_INV.001", + "dc/svpg/sdg/DC_ENVTECH_INV.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCENVTECHREXP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Amount of tracked re-exported Environmentally Sound Technologies" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_ENVTECH_REXP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCENVTECHRIMP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Amount of tracked re-imported Environmentally Sound Technologies" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_ENVTECH_RIMP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCENVTECHTT" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Total trade of tracked Environmentally Sound Technologies" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_ENVTECH_TT.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCFINCLIMB" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Climate-specific financial support provided via bilateral, regional and other channels" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_FIN_CLIMB.001", + "dc/svpg/sdg/DC_FIN_CLIMB.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCFINCLIMM" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Climate-specific financial support provided via multilateral channels" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_FIN_CLIMM.001", + "dc/svpg/sdg/DC_FIN_CLIMM.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCFINCLIMT" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Total climate-specific financial support provided" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_FIN_CLIMT.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCFINGEN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Core/general contributions provided to multilateral institutions" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_FIN_GEN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCFINTOT" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Total financial support provided" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_FIN_TOT.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCFTATOTAL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Total official development assistance (gross disbursement) for technical cooperation" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_FTA_TOTAL.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCODABDVDL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Total outbound official development assistance for biodiversity" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_ODA_BDVDL.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCODABDVL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Total inbound official development assistance for biodiversity" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_ODA_BDVL.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCODALDCG" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Net outbound official development assistance (ODA) to LDCs as a percentage of OECD-DAC donors' GNI" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_ODA_LDCG.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCODALDCS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Net inbound official development assistance (ODA) to LDCs from OECD-DAC countries" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_ODA_LDCS.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCODALLDC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Net outbound official development assistance (ODA) to landlocked developing countries from OECD-DAC countries" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_ODA_LLDC.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCODALLDCG" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Net outbound official development assistance (ODA) to landlocked developing countries as a percentage of OECD-DAC donors' GNI" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_ODA_LLDCG.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCODAPOVDLG" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Outbound official development assistance grants for poverty reduction, as percentage of GNI" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_ODA_POVDLG.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCODAPOVG" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Official development assistance grants for poverty reduction (percentage of GNI)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_ODA_POVG.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCODAPOVLG" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Inbound official development assistance grants for poverty reduction, as a percentage of GNI" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_ODA_POVLG.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCODASIDS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Net outbound official development assistance (ODA) to small island states (SIDS) from OECD-DAC countries" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_ODA_SIDS.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCODASIDSG" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Net outbound official development assistance (ODA) to small island states (SIDS) as a percentage of OECD-DAC donors' GNI" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_ODA_SIDSG.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCODATOTG" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Net outbound official development assistance (ODA) as a percentage of OECD-DAC donors' GNI" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_ODA_TOTG.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCODATOTGGE" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Outbound official development assistance (ODA) as a percentage of OECD-DAC donors' GNI on grant equivalent basis" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_ODA_TOTGGE.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCODATOTL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Net outbound official development assistance (ODA) from OECD-DAC countries" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_ODA_TOTL.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCODATOTLGE" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Outbound official development assistance (ODA) from OECD-DAC countries on grant equivalent basis" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_ODA_TOTLGE.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCOSSDGRT" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Gross receipts by developing countries of official sustainable development grants" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_OSSD_GRT.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCOSSDMPF" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Gross receipts by developing countries of mobilised private finance (MPF) - on an experimental basis" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_OSSD_MPF.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCOSSDOFFCL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Gross receipts by developing countries of official concessional sustainable development loans" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_OSSD_OFFCL.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCOSSDOFFNL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Gross receipts by developing countries of official non-concessional sustainable development loans" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_OSSD_OFFNL.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCOSSDPRVGRT" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Gross receipts by developing countries of private grants" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_OSSD_PRVGRT.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCTOFAGRL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Total inbound official flows (disbursements) for agriculture" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_TOF_AGRL.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCTOFHLTHL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Total inbound official development assistance to medical research and basic health sectors, gross disbursement" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_TOF_HLTHL.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCTOFHLTHNT" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Total inbound official development assistance to medical research and basic health sectors, net disbursement" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_TOF_HLTHNT.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCTOFINFRAL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Total inbound official flows for infrastructure" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_TOF_INFRAL.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCTOFSCHIPSL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Total inbound official flows for scholarships" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_TOF_SCHIPSL.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCTOFTRDCMDL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Total outbound official flows (commitments) for Aid for Trade" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_TOF_TRDCMDL.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCTOFTRDCML" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Total inbound official flows (commitments) for Aid for Trade" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_TOF_TRDCML.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCTOFTRDDBMDL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Total outbound official flows (disbursement) for Aid for Trade" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_TOF_TRDDBMDL.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCTOFTRDDBML" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Total inbound official flows (disbursement) for Aid for Trade" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_TOF_TRDDBML.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCTOFWASHL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Total inbound official development assistance (gross disbursement) for water supply and sanitation" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_TOF_WASHL.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCTRFTFDV" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Total inbound resource flows for development" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_TRF_TFDV.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCTRFTOTDL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Total outbound assistance for development" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_TRF_TOTDL.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDCTRFTOTL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Total inbound assistance for development" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DC_TRF_TOTL.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDIILLIN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Total value of inward illicit financial flows by Type of flow" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DI_ILL_IN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDIILLOUT" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Total value of outward illicit financial flows by Type of flow" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DI_ILL_OUT.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDPDODDLD2CRCGZ1" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Gross public sector debt, Central Government, as a proportion of GDP" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DP_DOD_DLD2_CR_CG_Z1.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDTDODDECTGNZS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "External debt stocks as a proportion of GNI" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DT_DOD_DECT_GN_ZS.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGDTTDSDECT" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Debt service as a proportion of exports of goods and services" + ], + "relevantVariableList": [ + "dc/svpg/sdg/DT_TDS_DECT.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGEGACSELEC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of population with access to electricity" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EG_ACS_ELEC.001", + "dc/svpg/sdg/EG_ACS_ELEC.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGEGEGYCLEAN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of population with primary reliance on clean fuels and technology" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EG_EGY_CLEAN.001", + "dc/svpg/sdg/EG_EGY_CLEAN.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGEGEGYPRIM" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Energy intensity level of primary energy" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EG_EGY_PRIM.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGEGEGYRNEW" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Installed renewable\u00a0electricity-generating capacity" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EG_EGY_RNEW.001", + "dc/svpg/sdg/EG_EGY_RNEW.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGEGFECRNEW" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Share of renewable energy in the total final energy consumption" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EG_FEC_RNEW.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGEGIFFRANDN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "International financial flows to developing countries in support of clean energy research and development and renewable energy production, including in hybrid systems" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EG_IFF_RANDN.001", + "dc/svpg/sdg/EG_IFF_RANDN.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGEGTBAH2CO" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of transboundary basins (river and lake basins and aquifers) with an operational arrangement for water cooperation" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EG_TBA_H2CO.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGEGTBAH2COAQ" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of transboundary aquifers with an operational arrangement for water cooperation" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EG_TBA_H2COAQ.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGEGTBAH2CORL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of transboundary river and lake basins with an operational arrangement for water cooperation" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EG_TBA_H2CORL.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENACSURBOPENSP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Average share of urban population with convenient access to open public spaces" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_ACS_URB_OPENSP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENADAPCOM" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of countries with adaptation communications by Report" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_ADAP_COM.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENADAPCOMDV" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of least developed countries and small island developing States with adaptation communications by Report" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_ADAP_COM_DV.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENATMCO2" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Carbon dioxide emissions from fuel combustion" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_ATM_CO2.001", + "dc/svpg/sdg/EN_ATM_CO2.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGENATMCO2GDP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Carbon dioxide emissions per unit of GDP at purchaning power parity rates" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_ATM_CO2GDP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENATMCO2MVA" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Carbon dioxide emissions from manufacturing industries per unit of manufacturing value added by Major division of ISIC Rev. 4" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_ATM_CO2MVA.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENATMGHGTAIP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Total greenhouse gas emissions (excluding land use, land-use changes and forestry) for Annex I Parties to the United Nations Framework Convention on Climate Change" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_ATM_GHGT_AIP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENATMGHGTNAIP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Total greenhouse gas emissions (excluding land use, land-use changes and forestry) for non-Annex I Parties to the United Nations Framework Convention on Climate Change" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_ATM_GHGT_NAIP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENATMPM25" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Annual mean levels of fine particulate matter (population-weighted)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_ATM_PM25.001", + "dc/svpg/sdg/EN_ATM_PM25.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGENBIUREPAIP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Countries with biennial reports, Annex I Parties to the United Nations Framework Convention on Climate Change by Report" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_BIUREP_AIP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENBIUREPNAIP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Countries with biennial update reports, non-Annex I Parties to the United Nations Framework Convention on Climate Change by Report" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_BIUREP_NAIP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENBIUREPNAIPDV" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Least developed countries and small island developing States with biennial update reports, non-Annex I Parties to the United Nations Framework Convention on Climate Change by Report" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_BIUREP_NAIP_DV.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENEWTCOLLPCAP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Electronic waste collected per capita" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_EWT_COLLPCAP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENEWTCOLLR" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of electronic waste that is collected" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_EWT_COLLR.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENEWTCOLLV" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Total electronic waste collected" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_EWT_COLLV.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENEWTGENPCAP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Electronic waste generated per capita" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_EWT_GENPCAP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENEWTGENV" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Total electronic waste generated" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_EWT_GENV.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENEWTRCYPCAP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Electronic waste recycled per capita" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_EWT_RCYPCAP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENEWTRCYR" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of electronic waste that is recycled" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_EWT_RCYR.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENEWTRCYV" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Total electronic waste recycled" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_EWT_RCYV.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENH2OGRAMBQ" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of groundwater bodies with good ambient water quality" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_H2O_GRAMBQ.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENH2OOPAMBQ" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of open water bodies with good ambient water quality" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_H2O_OPAMBQ.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENH2ORVAMBQ" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of river water bodies with good ambient water quality" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_H2O_RVAMBQ.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENH2OWBAMBQ" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of bodies of water with good ambient water quality" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_H2O_WBAMBQ.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENHAZEXP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Hazardous waste exported" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_HAZ_EXP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENHAZGENGDP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Hazardous waste generated per unit of GDP" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_HAZ_GENGDP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENHAZGENV" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Hazardous waste generated" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_HAZ_GENV.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENHAZIMP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Hazardous waste imported" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_HAZ_IMP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENHAZPCAP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Hazardous waste generated, per capita" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_HAZ_PCAP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENHAZTREATV" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Hazardous waste treated by Type of waste treatment" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_HAZ_TREATV.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENHAZTRTDISR" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of hazardous waste that is treated or disposed" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_HAZ_TRTDISR.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENHAZTRTDISV" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Hazardous waste treated or disposed" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_HAZ_TRTDISV.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENLKRVPWAC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Change in permanent water area of lakes and rivers" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_LKRV_PWAC.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENLKRVPWAN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Permanent water area of lakes and rivers" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_LKRV_PWAN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENLKRVPWAP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Permanent water area of lakes and rivers as a proportion of total land area" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_LKRV_PWAP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENLKRVSWAC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Change in seasonal water area of lakes and rivers" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_LKRV_SWAC.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENLKRVSWAN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Seasonal water area of lakes and rivers" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_LKRV_SWAN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENLKRVSWAP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Seasonal water area of lakes and rivers as a proportion of total land area" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_LKRV_SWAP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENLKWQLTRB" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Lake water quality: turbidity by Deviation level" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_LKW_QLTRB.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENLKWQLTRST" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Lake water quality: trophic state by Deviation level" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_LKW_QLTRST.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENLNDCNSPOP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Ratio of land consumption rate to population growth rate" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_LND_CNSPOP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENLNDINDQTHSNG" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of urban population living in inadequate housing" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_LND_INDQTHSNG.001", + "dc/svpg/sdg/EN_LND_INDQTHSNG.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGENLNDSLUM" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of urban population living in slums by Type of location" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_LND_SLUM.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENMARBEALITSQ" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Beach litter per square kilometer" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_MAR_BEALITSQ.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENMARBEALITBP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of beach litter originating from national land-based sources that ends in the beach" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_MAR_BEALIT_BP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENMARBEALITBV" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Total beach litter originating from national land-based sources that ends in the beach" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_MAR_BEALIT_BV.001", + "dc/svpg/sdg/EN_MAR_BEALIT_BV.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGENMARBEALITEXP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Total beach litter originating from national land-based sources that is exported" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_MAR_BEALIT_EXP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENMARBEALITOP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of beach litter originating from national land-based sources that ends in the ocean" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_MAR_BEALIT_OP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENMARBEALITOV" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Total beach litter originating from national land-based sources that ends in the ocean" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_MAR_BEALIT_OV.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENMARCHLANM" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Chlorophyll-a anomaly, remote sensing by Chlorophyll-a Concentration Frequency" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_MAR_CHLANM.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENMARCHLDEV" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Chlorophyll-a deviations, remote sensing" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_MAR_CHLDEV.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENMARPLASDD" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Floating plastic debris density" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_MAR_PLASDD.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENMATDOMCMPC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Domestic material consumption per capita" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_MAT_DOMCMPC.001", + "dc/svpg/sdg/EN_MAT_DOMCMPC.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGENMATDOMCMPG" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Domestic material consumption per unit of GDP" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_MAT_DOMCMPG.001", + "dc/svpg/sdg/EN_MAT_DOMCMPG.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGENMATDOMCMPT" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Domestic material consumption" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_MAT_DOMCMPT.001", + "dc/svpg/sdg/EN_MAT_DOMCMPT.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGENMATFTPRPC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Material footprint per capita" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_MAT_FTPRPC.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENMATFTPRPG" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Material footprint per unit of GDP" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_MAT_FTPRPG.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENMATFTPRTN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Material footprint" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_MAT_FTPRTN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENMWTCOLLV" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Municipal waste collected" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_MWT_COLLV.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENMWTEXP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Municipal waste exported" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_MWT_EXP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENMWTGENV" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Municipal waste generated" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_MWT_GENV.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENMWTIMP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Municipal waste imported" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_MWT_IMP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENMWTRCYR" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of municipal waste recycled" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_MWT_RCYR.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENMWTRCYV" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Municipal waste recycled" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_MWT_RCYV.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENMWTTREATR" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of municipal waste treated by Type of waste treatment" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_MWT_TREATR.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENMWTTREATV" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Municipal waste treated by type of treatment by Type of waste treatment" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_MWT_TREATV.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENNAAPLAN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Countries with national adaptation plans" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_NAA_PLAN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENNAAPLANDV" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Least developed countries and small island developing States with national adaptation plans" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_NAA_PLAN_DV.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENNACOMAIP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Countries with national communications, Annex I Parties to the United Nations Framework Convention on Climate Change by Report" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_NACOM_AIP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENNACOMNAIP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Countries with national communications, non-Annex I Parties by Report" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_NACOM_NAIP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENNACOMNAIPDV" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Least developed countries and small island developing States with national communications, non-Annex I Parties to the United Nations Framework Convention on Climate Change by Report" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_NACOM_NAIP_DV.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENNADCONTR" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Countries with nationally determined contributions by Report" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_NAD_CONTR.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENNADCONTRDV" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Least developed countries and small island developing States with nationally determined contributions by Report" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_NAD_CONTR_DV.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENREFWASCOL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Municipal Solid Waste collection coverage" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_REF_WASCOL.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENRSRVMNWAC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Change in minimum reservoir water area" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_RSRV_MNWAC.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENRSRVMNWAN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Minimum reservoir water area" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_RSRV_MNWAN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENRSRVMNWAP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Minimum reservoir water area as a proportion of total land area" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_RSRV_MNWAP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENRSRVMXWAN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Maxiumum reservoir water area" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_RSRV_MXWAN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENRSRVMXWAP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Maximum reservoir water area as a proportion of total land area" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_RSRV_MXWAP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENSCPECSYBA" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Countries using ecosystem-based approaches to managing marine areas" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_SCP_ECSYBA.001", + "dc/svpg/sdg/EN_SCP_ECSYBA.002", + "dc/svpg/sdg/EN_SCP_ECSYBA.003", + "dc/svpg/sdg/EN_SCP_ECSYBA.004", + "dc/svpg/sdg/EN_SCP_ECSYBA.005", + "dc/svpg/sdg/EN_SCP_ECSYBA.006", + "dc/svpg/sdg/EN_SCP_ECSYBA.007", + "dc/svpg/sdg/EN_SCP_ECSYBA.008", + "dc/svpg/sdg/EN_SCP_ECSYBA.009", + "dc/svpg/sdg/EN_SCP_ECSYBA.010", + "dc/svpg/sdg/EN_SCP_ECSYBA.011", + "dc/svpg/sdg/EN_SCP_ECSYBA.012", + "dc/svpg/sdg/EN_SCP_ECSYBA.013", + "dc/svpg/sdg/EN_SCP_ECSYBA.014", + "dc/svpg/sdg/EN_SCP_ECSYBA.015", + "dc/svpg/sdg/EN_SCP_ECSYBA.016", + "dc/svpg/sdg/EN_SCP_ECSYBA.017", + "dc/svpg/sdg/EN_SCP_ECSYBA.018", + "dc/svpg/sdg/EN_SCP_ECSYBA.019", + "dc/svpg/sdg/EN_SCP_ECSYBA.020", + "dc/svpg/sdg/EN_SCP_ECSYBA.021", + "dc/svpg/sdg/EN_SCP_ECSYBA.022", + "dc/svpg/sdg/EN_SCP_ECSYBA.023", + "dc/svpg/sdg/EN_SCP_ECSYBA.024", + "dc/svpg/sdg/EN_SCP_ECSYBA.025", + "dc/svpg/sdg/EN_SCP_ECSYBA.026", + "dc/svpg/sdg/EN_SCP_ECSYBA.027", + "dc/svpg/sdg/EN_SCP_ECSYBA.028", + "dc/svpg/sdg/EN_SCP_ECSYBA.029", + "dc/svpg/sdg/EN_SCP_ECSYBA.030", + "dc/svpg/sdg/EN_SCP_ECSYBA.031", + "dc/svpg/sdg/EN_SCP_ECSYBA.032", + "dc/svpg/sdg/EN_SCP_ECSYBA.033", + "dc/svpg/sdg/EN_SCP_ECSYBA.034", + "dc/svpg/sdg/EN_SCP_ECSYBA.035", + "dc/svpg/sdg/EN_SCP_ECSYBA.036", + "dc/svpg/sdg/EN_SCP_ECSYBA.037", + "dc/svpg/sdg/EN_SCP_ECSYBA.038", + "dc/svpg/sdg/EN_SCP_ECSYBA.039", + "dc/svpg/sdg/EN_SCP_ECSYBA.040", + "dc/svpg/sdg/EN_SCP_ECSYBA.041", + "dc/svpg/sdg/EN_SCP_ECSYBA.042", + "dc/svpg/sdg/EN_SCP_ECSYBA.043", + "dc/svpg/sdg/EN_SCP_ECSYBA.044", + "dc/svpg/sdg/EN_SCP_ECSYBA.045", + "dc/svpg/sdg/EN_SCP_ECSYBA.046", + "dc/svpg/sdg/EN_SCP_ECSYBA.047", + "dc/svpg/sdg/EN_SCP_ECSYBA.048", + "dc/svpg/sdg/EN_SCP_ECSYBA.049", + "dc/svpg/sdg/EN_SCP_ECSYBA.050", + "dc/svpg/sdg/EN_SCP_ECSYBA.051", + "dc/svpg/sdg/EN_SCP_ECSYBA.052", + "dc/svpg/sdg/EN_SCP_ECSYBA.053", + "dc/svpg/sdg/EN_SCP_ECSYBA.054", + "dc/svpg/sdg/EN_SCP_ECSYBA.055", + "dc/svpg/sdg/EN_SCP_ECSYBA.056", + "dc/svpg/sdg/EN_SCP_ECSYBA.057", + "dc/svpg/sdg/EN_SCP_ECSYBA.058", + "dc/svpg/sdg/EN_SCP_ECSYBA.059", + "dc/svpg/sdg/EN_SCP_ECSYBA.060", + "dc/svpg/sdg/EN_SCP_ECSYBA.061", + "dc/svpg/sdg/EN_SCP_ECSYBA.062", + "dc/svpg/sdg/EN_SCP_ECSYBA.063", + "dc/svpg/sdg/EN_SCP_ECSYBA.064", + "dc/svpg/sdg/EN_SCP_ECSYBA.065", + "dc/svpg/sdg/EN_SCP_ECSYBA.066", + "dc/svpg/sdg/EN_SCP_ECSYBA.067", + "dc/svpg/sdg/EN_SCP_ECSYBA.068", + "dc/svpg/sdg/EN_SCP_ECSYBA.069", + "dc/svpg/sdg/EN_SCP_ECSYBA.070", + "dc/svpg/sdg/EN_SCP_ECSYBA.071", + "dc/svpg/sdg/EN_SCP_ECSYBA.072", + "dc/svpg/sdg/EN_SCP_ECSYBA.073", + "dc/svpg/sdg/EN_SCP_ECSYBA.074", + "dc/svpg/sdg/EN_SCP_ECSYBA.075", + "dc/svpg/sdg/EN_SCP_ECSYBA.076", + "dc/svpg/sdg/EN_SCP_ECSYBA.077", + "dc/svpg/sdg/EN_SCP_ECSYBA.078", + "dc/svpg/sdg/EN_SCP_ECSYBA.079", + "dc/svpg/sdg/EN_SCP_ECSYBA.080", + "dc/svpg/sdg/EN_SCP_ECSYBA.081", + "dc/svpg/sdg/EN_SCP_ECSYBA.082", + "dc/svpg/sdg/EN_SCP_ECSYBA.083", + "dc/svpg/sdg/EN_SCP_ECSYBA.084", + "dc/svpg/sdg/EN_SCP_ECSYBA.085", + "dc/svpg/sdg/EN_SCP_ECSYBA.086", + "dc/svpg/sdg/EN_SCP_ECSYBA.087", + "dc/svpg/sdg/EN_SCP_ECSYBA.088", + "dc/svpg/sdg/EN_SCP_ECSYBA.089", + "dc/svpg/sdg/EN_SCP_ECSYBA.090", + "dc/svpg/sdg/EN_SCP_ECSYBA.091", + "dc/svpg/sdg/EN_SCP_ECSYBA.092", + "dc/svpg/sdg/EN_SCP_ECSYBA.093", + "dc/svpg/sdg/EN_SCP_ECSYBA.094", + "dc/svpg/sdg/EN_SCP_ECSYBA.095", + "dc/svpg/sdg/EN_SCP_ECSYBA.096", + "dc/svpg/sdg/EN_SCP_ECSYBA.097", + "dc/svpg/sdg/EN_SCP_ECSYBA.098", + "dc/svpg/sdg/EN_SCP_ECSYBA.099", + "dc/svpg/sdg/EN_SCP_ECSYBA.100", + "dc/svpg/sdg/EN_SCP_ECSYBA.101", + "dc/svpg/sdg/EN_SCP_ECSYBA.102", + "dc/svpg/sdg/EN_SCP_ECSYBA.103", + "dc/svpg/sdg/EN_SCP_ECSYBA.104", + "dc/svpg/sdg/EN_SCP_ECSYBA.105", + "dc/svpg/sdg/EN_SCP_ECSYBA.106", + "dc/svpg/sdg/EN_SCP_ECSYBA.107", + "dc/svpg/sdg/EN_SCP_ECSYBA.108", + "dc/svpg/sdg/EN_SCP_ECSYBA.109", + "dc/svpg/sdg/EN_SCP_ECSYBA.110", + "dc/svpg/sdg/EN_SCP_ECSYBA.111", + "dc/svpg/sdg/EN_SCP_ECSYBA.112", + "dc/svpg/sdg/EN_SCP_ECSYBA.113", + "dc/svpg/sdg/EN_SCP_ECSYBA.114", + "dc/svpg/sdg/EN_SCP_ECSYBA.115", + "dc/svpg/sdg/EN_SCP_ECSYBA.116", + "dc/svpg/sdg/EN_SCP_ECSYBA.117", + "dc/svpg/sdg/EN_SCP_ECSYBA.118" + ] + }, + { + "dcid": [ + "dc/topic/SDGENSCPFRMN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of companies publishing sustainability reports with disclosure by dimension" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_SCP_FRMN.001", + "dc/svpg/sdg/EN_SCP_FRMN.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGENSCPFSHGDP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Sustainable fisheries as a proportion of GDP" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_SCP_FSHGDP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENTWTGENV" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Total waste generation" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_TWT_GENV.001", + "dc/svpg/sdg/EN_TWT_GENV.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGENURBOPENSP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Average share of the built-up area of cities that is open space for public use for all" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_URB_OPENSP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENWBEHMWTL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Extent of human made wetlands" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_WBE_HMWTL.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENWBEINWTL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Extent of inland wetlands" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_WBE_INWTL.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENWBEMANGC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Mangrove total area change" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_WBE_MANGC.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENWBEMANGN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Mangrove area" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_WBE_MANGN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENWBENDQTGRW" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Quantity of nationally derived groundwater" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_WBE_NDQTGRW.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENWBENDQTRVR" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Quantity of nationally derived water fromrivers" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_WBE_NDQTRVR.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENWBEWTLN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Wetlands area" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_WBE_WTLN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENWBEWTLP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Wetlands area as a proportion of total land area" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_WBE_WTLP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENWWTGEN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Total wastewater generated" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_WWT_GEN.001", + "dc/svpg/sdg/EN_WWT_GEN.002", + "dc/svpg/sdg/EN_WWT_GEN.003", + "dc/svpg/sdg/EN_WWT_GEN.004" + ] + }, + { + "dcid": [ + "dc/topic/SDGENWWTTREAT" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Total wastewater treated" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_WWT_TREAT.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENWWTTREATR" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of wastewater treated" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_WWT_TREATR.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENWWTTREATRSF" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of wastewater safely treated" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_WWT_TREATR_SF.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENWWTTREATSF" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Total wastewater safely treated" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_WWT_TREAT_SF.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGENWWTWWDS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of safely treated domestic wastewater flows" + ], + "relevantVariableList": [ + "dc/svpg/sdg/EN_WWT_WWDS.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERBDYABT2NP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Countries that established national targets in accordance with Aichi Biodiversity Target 2 of the Strategic Plan for Biodiversity 2011-2020 in their National Biodiversity Strategy and Action Plans" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_BDY_ABT2NP.001", + "dc/svpg/sdg/ER_BDY_ABT2NP.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGERBDYSEEA" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Countries with integrated biodiversity values into national accounting and reporting systems, defined as implementation of the System of Environmental-Economic Accounting" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_BDY_SEEA.001", + "dc/svpg/sdg/ER_BDY_SEEA.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGERCBDABSCLRHS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Countries that have legislative, administrative and policy framework or measures reported to the Access and Benefit-Sharing Clearing-House" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_CBD_ABSCLRHS.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERCBDNAGOYA" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Countries that are parties to the Nagoya Protocol" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_CBD_NAGOYA.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERCBDORSPGRFA" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Countries that have legislative, administrative and policy framework or measures reported through the Online Reporting System on Compliance of the International Treaty on Plant Genetic Resources for Food and Agriculture (PGRFA)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_CBD_ORSPGRFA.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERCBDPTYPGRFA" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Countries that are contracting Parties to the International Treaty on Plant Genetic Resources for Food and Agriculture (PGRFA)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_CBD_PTYPGRFA.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERCBDSMTA" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Total reported number of Standard Material Transfer Agreements (SMTAs) transferring plant genetic resources for food and agriculture to the country" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_CBD_SMTA.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERFFSCMPTCD" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Fossil-fuel subsidies (consumption and production)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_FFS_CMPT_CD.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERFFSCMPTGDP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Fossil-fuel subsidies (consumption and production) as a proportion of total GDP" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_FFS_CMPT_GDP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERFFSCMPTPCCD" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Fossil-fuel subsidies (consumption and production) per capita" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_FFS_CMPT_PC_CD.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERGRFANIMKPT" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of local breeds kept in the country" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_GRF_ANIMKPT.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERGRFANIMKPTTRB" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of transboundary breeds (including extinct ones)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_GRF_ANIMKPT_TRB.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERGRFANIMRCNTN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of local breeds for which sufficient genetic resources are stored for reconstitution" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_GRF_ANIMRCNTN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERGRFANIMRCNTNTRB" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of transboundary breeds for which sufficient genetic resources are stored for reconstitution" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_GRF_ANIMRCNTN_TRB.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERGRFPLNTSTOR" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Plant genetic resources accessions stored ex situ" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_GRF_PLNTSTOR.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERH2OFWTL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of fish stocks within biologically sustainable levels (not overexploited)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_H2O_FWTL.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERH2OIWRMD" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Degree of implementation of integrated water resources management" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_H2O_IWRMD.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERH2OIWRMDEE" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Degree of implementation of integrated water resources management: enabling environment" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_H2O_IWRMD_EE.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERH2OIWRMDFI" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Degree of implementation of integrated water resources management: financing" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_H2O_IWRMD_FI.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERH2OIWRMDIP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Degree of implementation of integrated water resources management: institutions and participation" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_H2O_IWRMD_IP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERH2OIWRMDMI" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Degree of implementation of integrated water resources management: management instruments" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_H2O_IWRMD_MI.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERH2OIWRMP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of countries by category of implementation of integrated water resources management (IWRM) by Level of implementation" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_H2O_IWRMP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERH2OPARTIC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of countries with high level of users/communities participating in planning programs in rural drinking-water supply by Type of location" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_H2O_PARTIC.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERH2OPRDU" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Countries with procedures in law or policy for participation by service users/communities in planning program in rural drinking-water supply by Type of location" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_H2O_PRDU.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERH2OPROCED" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of countries with clearly defined procedures in law or policy for participation by service users/communities in planning program in rural drinking-water supply by Type of location" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_H2O_PROCED.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERH2ORURP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Countries with users/communities participating in planning programs in rural drinking-water supply, by level of participation by Type of location" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_H2O_RURP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERH2OSTRESS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Level of water stress: freshwater withdrawal as a proportion of available freshwater resources" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_H2O_STRESS.001", + "dc/svpg/sdg/ER_H2O_STRESS.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGERH2OWUEYST" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Water use efficiency" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_H2O_WUEYST.001", + "dc/svpg/sdg/ER_H2O_WUEYST.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGERIASGLOFUN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Recipient countries of global funding with access to any funding from global financial mechanisms for projects related to invasive alien species\u00a0 management" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_IAS_GLOFUN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERIASGLOFUNP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of recipient countries of global funding with access to any funding from global financial mechanisms for projects related to invasive alien species\u00a0 management" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_IAS_GLOFUNP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERIASLEGIS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Countriees with a legislation, regulation, or act related to the prevention of introduction and management of Invasive Alien Species" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_IAS_LEGIS.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERIASNATBUD" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Countries with an allocation from the national budget to manage the threat of invasive alien species" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_IAS_NATBUD.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERIASNATBUDP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of countries with allocation from the national budget to manage the threat of invasive alien species" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_IAS_NATBUDP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERIASNBSAP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Countries with alignment of National Biodiversity Strategy and Action Plan (NBSAP) targets to target 9 of the Aichi Biodiversity set out in the Strategic Plan for Biodiversity 2011-2020" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_IAS_NBSAP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERIASNBSAPP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of countries with alignment of National Biodiversity Strategy and Action Plan (NBSAP) targets to target 9 of the Aichi Biodiversity target 9 set out in the Strategic Plan for Biodiversity 2011-2020" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_IAS_NBSAPP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERMRNMPA" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Average proportion of Marine Key Biodiversity Areas (KBAs) covered by protected areas" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_MRN_MPA.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERMTNDGRDA" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Area of degraded mountain land" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_MTN_DGRDA.001", + "dc/svpg/sdg/ER_MTN_DGRDA.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGERMTNDGRDP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of degraded mountain land" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_MTN_DGRDP.001", + "dc/svpg/sdg/ER_MTN_DGRDP.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGERMTNGRNCOV" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Area of mountain green cover by Type of land cover" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_MTN_GRNCOV.001", + "dc/svpg/sdg/ER_MTN_GRNCOV.002", + "dc/svpg/sdg/ER_MTN_GRNCOV.003", + "dc/svpg/sdg/ER_MTN_GRNCOV.004", + "dc/svpg/sdg/ER_MTN_GRNCOV.005", + "dc/svpg/sdg/ER_MTN_GRNCOV.006" + ] + }, + { + "dcid": [ + "dc/topic/SDGERMTNGRNCVI" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Mountain Green Cover Index by Type of land cover" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_MTN_GRNCVI.001", + "dc/svpg/sdg/ER_MTN_GRNCVI.002", + "dc/svpg/sdg/ER_MTN_GRNCVI.003", + "dc/svpg/sdg/ER_MTN_GRNCVI.004", + "dc/svpg/sdg/ER_MTN_GRNCVI.005", + "dc/svpg/sdg/ER_MTN_GRNCVI.006" + ] + }, + { + "dcid": [ + "dc/topic/SDGERMTNTOTL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Mountain area" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_MTN_TOTL.001", + "dc/svpg/sdg/ER_MTN_TOTL.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGERNOEXLBREDN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of local breeds (not extinct)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_NOEX_LBREDN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERPTDFRHWTR" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Average proportion of Freshwater Key Biodiversity Areas (KBAs) covered by protected areas" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_PTD_FRHWTR.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERPTDMTN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Average proportion of Mountain Key Biodiversity Areas (KBAs) covered by protected areas" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_PTD_MTN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERPTDTERR" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Average proportion of Terrestrial Key Biodiversity Areas (KBAs) covered by protected areas" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_PTD_TERR.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERRDEOSEX" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "National ocean science expenditure as a share of total research and development funding" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_RDE_OSEX.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERREGSSFRAR" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Degree of application of a legal/regulatory/policy/institutional framework which recognizes and protects access rights for small-scale fisheries" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_REG_SSFRAR.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERREGUNFCIM" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Degree of implementation of international instruments aiming to combat illegal, unreported and unregulated fishing" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_REG_UNFCIM.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERRSKLBREDS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of local breeds classified as being at risk of extinction as a share of local breeds with known level of extinction risk" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_RSK_LBREDS.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERRSKLST" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Red List Index" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_RSK_LST.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERUNCLOSIMPLE" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Score for the implementation of UNCLOS and its two implementing agreements" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_UNCLOS_IMPLE.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERUNCLOSRATACC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Score for the ratification of and accession to UNCLOS and its two implementing agreements" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_UNCLOS_RATACC.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERUNKLBREDN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of local breeds with unknown risk status" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_UNK_LBREDN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERWATPART" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Countries with users/communities participating in planning programs in water resources planning and management" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_WAT_PART.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERWATPARTIC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of countries with high level of users/communities participating in planning programs in water resources planning and management" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_WAT_PARTIC.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERWATPRDU" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Countries with procedures in law or policy for participation by service users/communities in planning program in water resources planning and management" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_WAT_PRDU.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERWATPROCED" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of countries with clearly defined procedures in law or policy for participation by service users/communities in planning program in water resources planning and management" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_WAT_PROCED.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGERWLDTRPOACH" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of traded wildlife that was poached or illicitly trafficked by Plants, animals and derived products" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ER_WLD_TRPOACH.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGFBATMTOTL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of automated teller machines (ATMs) per 100, 000 adults (15 years old and over)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/FB_ATM_TOTL.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGFBBNKACCSS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of adults (15 years and older) with an account at a financial institution or mobile-money-service provider by Age group" + ], + "relevantVariableList": [ + "dc/svpg/sdg/FB_BNK_ACCSS.001", + "dc/svpg/sdg/FB_BNK_ACCSS.002", + "dc/svpg/sdg/FB_BNK_ACCSS.003", + "dc/svpg/sdg/FB_BNK_ACCSS.004", + "dc/svpg/sdg/FB_BNK_ACCSS.005" + ] + }, + { + "dcid": [ + "dc/topic/SDGFBBNKACCSSILF" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of adults (15 years and older) active in labor force with an account at a financial institution or mobile-money-service provider by Age group" + ], + "relevantVariableList": [ + "dc/svpg/sdg/FB_BNK_ACCSS_ILF.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGFBBNKACCSSOLF" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of adults (15 years and older) out of labor force with an account at a financial institution or mobile-money-service provider" + ], + "relevantVariableList": [ + "dc/svpg/sdg/FB_BNK_ACCSS_OLF.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGFBBNKCAPAZS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Bank capital to assets ratio" + ], + "relevantVariableList": [ + "dc/svpg/sdg/FB_BNK_CAPA_ZS.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGFBCBKBRCH" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of commercial bank branches per 100, 000 adults (15 years old and over)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/FB_CBK_BRCH.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGFCACCSSID" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of small-scale manufacturing industries with a loan or line of credit" + ], + "relevantVariableList": [ + "dc/svpg/sdg/FC_ACC_SSID.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGFIFSIFSANL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Non-performing loans to total gross loans" + ], + "relevantVariableList": [ + "dc/svpg/sdg/FI_FSI_FSANL.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGFIFSIFSERA" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Rate of return on assets" + ], + "relevantVariableList": [ + "dc/svpg/sdg/FI_FSI_FSERA.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGFIFSIFSKA" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Ratio of regulatory capital to assets" + ], + "relevantVariableList": [ + "dc/svpg/sdg/FI_FSI_FSKA.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGFIFSIFSKNL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Ratio of non-performing loans (net of provisions) to capital" + ], + "relevantVariableList": [ + "dc/svpg/sdg/FI_FSI_FSKNL.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGFIFSIFSKRTC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Ratio of regulatory tier-1 capital to risk-weighted assets" + ], + "relevantVariableList": [ + "dc/svpg/sdg/FI_FSI_FSKRTC.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGFIFSIFSLS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Ratio of liquid assets to short term liabilities" + ], + "relevantVariableList": [ + "dc/svpg/sdg/FI_FSI_FSLS.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGFIFSIFSSNO" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Ratio of net open position in foreign exchange to capital" + ], + "relevantVariableList": [ + "dc/svpg/sdg/FI_FSI_FSSNO.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGFIRESTOTLMO" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Total\u00a0reserves\u00a0in\u00a0months\u00a0of\u00a0imports" + ], + "relevantVariableList": [ + "dc/svpg/sdg/FI_RES_TOTL_MO.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGFMLBLBMNYIRZS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Ratio of broad money to total reserves" + ], + "relevantVariableList": [ + "dc/svpg/sdg/FM_LBL_BMNY_IR_ZS.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGFMLBLBMNYZG" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Annual growth of broad money" + ], + "relevantVariableList": [ + "dc/svpg/sdg/FM_LBL_BMNY_ZG.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGFPCPITOTLZG" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Annual inflation (consumer prices)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/FP_CPI_TOTL_ZG.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGGBPOPSCIERD" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of full-time-equivalent researchers per million inhabitants" + ], + "relevantVariableList": [ + "dc/svpg/sdg/GB_POP_SCIERD.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGGBXPDCULNATPB" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Total public expenditure per capita on cultural and natural heritage at purchansing-power parity rates" + ], + "relevantVariableList": [ + "dc/svpg/sdg/GB_XPD_CULNAT_PB.001", + "dc/svpg/sdg/GB_XPD_CULNAT_PB.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGGBXPDCULNATPBPV" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Total public and private expenditure per capita on cultural and natural heritage at purchasing-power parity rates" + ], + "relevantVariableList": [ + "dc/svpg/sdg/GB_XPD_CULNAT_PBPV.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGGBXPDCULNATPV" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Total private expenditure per capita spent on cultural and natural heritage at purchasing-power parity rates" + ], + "relevantVariableList": [ + "dc/svpg/sdg/GB_XPD_CULNAT_PV.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGGBXPDCULPBPV" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Total public and private expenditure per capita on cultural heritage at purchasing-power parity rates" + ], + "relevantVariableList": [ + "dc/svpg/sdg/GB_XPD_CUL_PBPV.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGGBXPDNATPBPV" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Total public and private expenditure per capita on natural heritage at purchasing-power parity rates" + ], + "relevantVariableList": [ + "dc/svpg/sdg/GB_XPD_NAT_PBPV.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGGBXPDRSDV" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Research and development expenditure as a proportion of GDP" + ], + "relevantVariableList": [ + "dc/svpg/sdg/GB_XPD_RSDV.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGGCBALCASHGDZS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Cash surplus/deficit as a proportion of GDP" + ], + "relevantVariableList": [ + "dc/svpg/sdg/GC_BAL_CASH_GD_ZS.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGGCGOBTAXD" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of domestic budget funded by domestic taxes" + ], + "relevantVariableList": [ + "dc/svpg/sdg/GC_GOB_TAXD.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGGCTAXTOTLGDZS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Tax revenue as a proportion of GDP" + ], + "relevantVariableList": [ + "dc/svpg/sdg/GC_TAX_TOTL_GD_ZS.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGGFCOMPPPI" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Monetary amount committed to public-private partnerships for infrastructure in nominal terms" + ], + "relevantVariableList": [ + "dc/svpg/sdg/GF_COM_PPPI.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGGFCOMPPPIKD" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Monetary amount committed to public-private partnerships for infrastructure in real terms" + ], + "relevantVariableList": [ + "dc/svpg/sdg/GF_COM_PPPI_KD.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGGFFRNFDI" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Foreign direct investment (FDI) inflows" + ], + "relevantVariableList": [ + "dc/svpg/sdg/GF_FRN_FDI.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGGFXPDGBPC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Primary government expenditures as a proportion of original approved budget" + ], + "relevantVariableList": [ + "dc/svpg/sdg/GF_XPD_GBPC.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGGRG14GDP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Total bugetary revenue of the central government as a proportion of GDP" + ], + "relevantVariableList": [ + "dc/svpg/sdg/GR_G14_GDP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGGRG14XDC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Total government revenue, in local currency" + ], + "relevantVariableList": [ + "dc/svpg/sdg/GR_G14_XDC.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGICFRMBRIB" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Incidence of bribery (proportion of firms experiencing at least one bribe payment request)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/IC_FRM_BRIB.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGICGENMGTL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of women in managerial positions - previous definition (15 years old and over)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/IC_GEN_MGTL.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGICGENMGTL19ICLS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of women in managerial positions - current definition (15 years old and over)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/IC_GEN_MGTL_19ICLS.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGICGENMGTN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of women in senior and middle management positions - previous definition (15 years old and over)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/IC_GEN_MGTN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGICGENMGTN19ICLS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of women in senior and middle management positions - current definition (15 years old and over)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/IC_GEN_MGTN_19ICLS.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGIQSPIPIL4" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Performance index of data sources (Pillar 4 of Statistical Performance Indicators)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/IQ_SPI_PIL4.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGIQSPIPIL5" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Performance index of data Infrastructure (Pillar 5 of Statistical Performance Indicators)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/IQ_SPI_PIL5.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGISRDPFRGVOL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Freight volume by Mode of transport" + ], + "relevantVariableList": [ + "dc/svpg/sdg/IS_RDP_FRGVOL.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGISRDPLULFRG" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Freight loaded and unloaded, maritime transport" + ], + "relevantVariableList": [ + "dc/svpg/sdg/IS_RDP_LULFRG.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGISRDPPFVOL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Passenger volume by Mode of transport" + ], + "relevantVariableList": [ + "dc/svpg/sdg/IS_RDP_PFVOL.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGISRDPPORFVOL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Container port traffic, maritime transport" + ], + "relevantVariableList": [ + "dc/svpg/sdg/IS_RDP_PORFVOL.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGITMOB2GNTWK" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of population covered by at least a 2G mobile network" + ], + "relevantVariableList": [ + "dc/svpg/sdg/IT_MOB_2GNTWK.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGITMOB3GNTWK" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of population covered by at least a 3G mobile network" + ], + "relevantVariableList": [ + "dc/svpg/sdg/IT_MOB_3GNTWK.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGITMOB4GNTWK" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of population covered by at least a 4G mobile network" + ], + "relevantVariableList": [ + "dc/svpg/sdg/IT_MOB_4GNTWK.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGITMOBOWN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of individuals who own a mobile telephone" + ], + "relevantVariableList": [ + "dc/svpg/sdg/IT_MOB_OWN.001", + "dc/svpg/sdg/IT_MOB_OWN.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGITNETBBND" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Fixed broadband subscriptions per 100\u00a0inhabitants" + ], + "relevantVariableList": [ + "dc/svpg/sdg/IT_NET_BBND.001", + "dc/svpg/sdg/IT_NET_BBND.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGITNETBBNDN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of fixed broadband subscriptions" + ], + "relevantVariableList": [ + "dc/svpg/sdg/IT_NET_BBNDN.001", + "dc/svpg/sdg/IT_NET_BBNDN.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGITUSEii99" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of individuals using the Internet" + ], + "relevantVariableList": [ + "dc/svpg/sdg/IT_USE_ii99.001", + "dc/svpg/sdg/IT_USE_ii99.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGIUCORBRIB" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Prevalence rate of bribery" + ], + "relevantVariableList": [ + "dc/svpg/sdg/IU_COR_BRIB.001", + "dc/svpg/sdg/IU_COR_BRIB.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGIUDMKICRS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of population who believe decision-making is inclusive and responsive" + ], + "relevantVariableList": [ + "dc/svpg/sdg/IU_DMK_ICRS.001", + "dc/svpg/sdg/IU_DMK_ICRS.002", + "dc/svpg/sdg/IU_DMK_ICRS.003", + "dc/svpg/sdg/IU_DMK_ICRS.004", + "dc/svpg/sdg/IU_DMK_ICRS.005", + "dc/svpg/sdg/IU_DMK_ICRS.006", + "dc/svpg/sdg/IU_DMK_ICRS.007", + "dc/svpg/sdg/IU_DMK_ICRS.008" + ] + }, + { + "dcid": [ + "dc/topic/SDGIUDMKINCL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of population who believe decision-making is inclusive" + ], + "relevantVariableList": [ + "dc/svpg/sdg/IU_DMK_INCL.001", + "dc/svpg/sdg/IU_DMK_INCL.002", + "dc/svpg/sdg/IU_DMK_INCL.003", + "dc/svpg/sdg/IU_DMK_INCL.004", + "dc/svpg/sdg/IU_DMK_INCL.005", + "dc/svpg/sdg/IU_DMK_INCL.006", + "dc/svpg/sdg/IU_DMK_INCL.007", + "dc/svpg/sdg/IU_DMK_INCL.008" + ] + }, + { + "dcid": [ + "dc/topic/SDGIUDMKRESP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of population who believe decision-making is responsive" + ], + "relevantVariableList": [ + "dc/svpg/sdg/IU_DMK_RESP.001", + "dc/svpg/sdg/IU_DMK_RESP.002", + "dc/svpg/sdg/IU_DMK_RESP.003", + "dc/svpg/sdg/IU_DMK_RESP.004", + "dc/svpg/sdg/IU_DMK_RESP.005", + "dc/svpg/sdg/IU_DMK_RESP.006", + "dc/svpg/sdg/IU_DMK_RESP.007", + "dc/svpg/sdg/IU_DMK_RESP.008", + "dc/svpg/sdg/IU_DMK_RESP.009" + ] + }, + { + "dcid": [ + "dc/topic/SDGNECONGOVTKDZG" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Annual growth of final consumption expenditure of the general government" + ], + "relevantVariableList": [ + "dc/svpg/sdg/NE_CON_GOVT_KD_ZG.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGNECONPRVTKDZG" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Annual growth of final consumption expenditure of households and non-profit institutions serving households (NPISHs)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/NE_CON_PRVT_KD_ZG.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGNEEXPGNFSKDZG" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Annual growth of exports of goods and services" + ], + "relevantVariableList": [ + "dc/svpg/sdg/NE_EXP_GNFS_KD_ZG.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGNEGDITOTLKDZG" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Annual growth of the gross capital formation" + ], + "relevantVariableList": [ + "dc/svpg/sdg/NE_GDI_TOTL_KD_ZG.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGNEIMPGNFSKDZG" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Annual growth of imports of goods and services" + ], + "relevantVariableList": [ + "dc/svpg/sdg/NE_IMP_GNFS_KD_ZG.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGNVINDSSIS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of small-scale manufacturing industries in total manufacturing value added" + ], + "relevantVariableList": [ + "dc/svpg/sdg/NV_IND_SSIS.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGNVINDTECH" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of medium and high-tech manufacturing value added in total value added" + ], + "relevantVariableList": [ + "dc/svpg/sdg/NV_IND_TECH.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGNYGDPMKTPKDZG" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Annual GDP growth" + ], + "relevantVariableList": [ + "dc/svpg/sdg/NY_GDP_MKTP_KD_ZG.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGNYGDPPCAP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Annual growth rate of real GDP per capita" + ], + "relevantVariableList": [ + "dc/svpg/sdg/NY_GDP_PCAP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGPANUSATLS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Alternative conversion factor used by the Development Economics Group (DEC)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/PA_NUS_ATLS.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGPDAGRLSFP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Productivity of large-scale food producers (agricultural output per labour day at purchasing-power parity rates)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/PD_AGR_LSFP.001", + "dc/svpg/sdg/PD_AGR_LSFP.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGPDAGRSSFP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Productivity of small-scale food producers (agricultural output per labour day at purchasing-power parity rates)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/PD_AGR_SSFP.001", + "dc/svpg/sdg/PD_AGR_SSFP.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSDCPAUPRDP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Countries that have national urban policies or regional development plans that respond to population dynamics, ensure balanced territorial development, and increase local fiscal space" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SD_CPA_UPRDP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSDMDPANDI" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Average proportion of deprivations experienced by multidimensionally poor people" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SD_MDP_ANDI.001", + "dc/svpg/sdg/SD_MDP_ANDI.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSDMDPANDIHH" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Average share of weighted deprivations experienced by total households (intensity)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SD_MDP_ANDIHH.001", + "dc/svpg/sdg/SD_MDP_ANDIHH.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSDMDPCSMP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of children living in child-specific multidimensional poverty (under 18 years old)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SD_MDP_CSMP.001", + "dc/svpg/sdg/SD_MDP_CSMP.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSDMDPMUHHC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of households living in multidimensional poverty" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SD_MDP_MUHHC.001", + "dc/svpg/sdg/SD_MDP_MUHHC.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSDXPDESED" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of total government spending on essential services, education" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SD_XPD_ESED.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSDXPDMNPO" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of government spending in health, direct social transfers and education which benefit the monetary poor" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SD_XPD_MNPO.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSEACCHNDWSH" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of schools with basic handwashing facilities by Education level" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SE_ACC_HNDWSH.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSEACSCMPTR" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of schools with access to\u00a0computers for pedagogical purposes by Education level" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SE_ACS_CMPTR.001", + "dc/svpg/sdg/SE_ACS_CMPTR.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSEACSELECT" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of schools with access to\u00a0electricity by Education level" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SE_ACS_ELECT.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSEACSH2O" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of schools with access to basic drinking water by Education level" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SE_ACS_H2O.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSEACSINTNT" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of schools with access to the internet for pedagogical purposes by Education level" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SE_ACS_INTNT.001", + "dc/svpg/sdg/SE_ACS_INTNT.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSEACSSANIT" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of schools with access to single-sex basic sanitation by Education level" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SE_ACS_SANIT.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSEADTACTS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old) by Type of skill" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SE_ADT_ACTS.001", + "dc/svpg/sdg/SE_ADT_ACTS.002", + "dc/svpg/sdg/SE_ADT_ACTS.003", + "dc/svpg/sdg/SE_ADT_ACTS.004", + "dc/svpg/sdg/SE_ADT_ACTS.005", + "dc/svpg/sdg/SE_ADT_ACTS.006", + "dc/svpg/sdg/SE_ADT_ACTS.007", + "dc/svpg/sdg/SE_ADT_ACTS.008", + "dc/svpg/sdg/SE_ADT_ACTS.009", + "dc/svpg/sdg/SE_ADT_ACTS.010", + "dc/svpg/sdg/SE_ADT_ACTS.011", + "dc/svpg/sdg/SE_ADT_ACTS.012", + "dc/svpg/sdg/SE_ADT_ACTS.013", + "dc/svpg/sdg/SE_ADT_ACTS.014", + "dc/svpg/sdg/SE_ADT_ACTS.015", + "dc/svpg/sdg/SE_ADT_ACTS.016", + "dc/svpg/sdg/SE_ADT_ACTS.017", + "dc/svpg/sdg/SE_ADT_ACTS.018", + "dc/svpg/sdg/SE_ADT_ACTS.019", + "dc/svpg/sdg/SE_ADT_ACTS.020", + "dc/svpg/sdg/SE_ADT_ACTS.021", + "dc/svpg/sdg/SE_ADT_ACTS.022", + "dc/svpg/sdg/SE_ADT_ACTS.023", + "dc/svpg/sdg/SE_ADT_ACTS.024", + "dc/svpg/sdg/SE_ADT_ACTS.025", + "dc/svpg/sdg/SE_ADT_ACTS.026", + "dc/svpg/sdg/SE_ADT_ACTS.027", + "dc/svpg/sdg/SE_ADT_ACTS.028", + "dc/svpg/sdg/SE_ADT_ACTS.029", + "dc/svpg/sdg/SE_ADT_ACTS.030", + "dc/svpg/sdg/SE_ADT_ACTS.031", + "dc/svpg/sdg/SE_ADT_ACTS.032", + "dc/svpg/sdg/SE_ADT_ACTS.033", + "dc/svpg/sdg/SE_ADT_ACTS.034", + "dc/svpg/sdg/SE_ADT_ACTS.035", + "dc/svpg/sdg/SE_ADT_ACTS.036", + "dc/svpg/sdg/SE_ADT_ACTS.037", + "dc/svpg/sdg/SE_ADT_ACTS.038", + "dc/svpg/sdg/SE_ADT_ACTS.039", + "dc/svpg/sdg/SE_ADT_ACTS.040", + "dc/svpg/sdg/SE_ADT_ACTS.041", + "dc/svpg/sdg/SE_ADT_ACTS.042", + "dc/svpg/sdg/SE_ADT_ACTS.043", + "dc/svpg/sdg/SE_ADT_ACTS.044", + "dc/svpg/sdg/SE_ADT_ACTS.045", + "dc/svpg/sdg/SE_ADT_ACTS.046", + "dc/svpg/sdg/SE_ADT_ACTS.047", + "dc/svpg/sdg/SE_ADT_ACTS.048", + "dc/svpg/sdg/SE_ADT_ACTS.049", + "dc/svpg/sdg/SE_ADT_ACTS.050", + "dc/svpg/sdg/SE_ADT_ACTS.051", + "dc/svpg/sdg/SE_ADT_ACTS.052", + "dc/svpg/sdg/SE_ADT_ACTS.053", + "dc/svpg/sdg/SE_ADT_ACTS.054", + "dc/svpg/sdg/SE_ADT_ACTS.055", + "dc/svpg/sdg/SE_ADT_ACTS.056", + "dc/svpg/sdg/SE_ADT_ACTS.057", + "dc/svpg/sdg/SE_ADT_ACTS.058", + "dc/svpg/sdg/SE_ADT_ACTS.059", + "dc/svpg/sdg/SE_ADT_ACTS.060", + "dc/svpg/sdg/SE_ADT_ACTS.061", + "dc/svpg/sdg/SE_ADT_ACTS.062", + "dc/svpg/sdg/SE_ADT_ACTS.063", + "dc/svpg/sdg/SE_ADT_ACTS.064", + "dc/svpg/sdg/SE_ADT_ACTS.065", + "dc/svpg/sdg/SE_ADT_ACTS.066", + "dc/svpg/sdg/SE_ADT_ACTS.067", + "dc/svpg/sdg/SE_ADT_ACTS.068", + "dc/svpg/sdg/SE_ADT_ACTS.069", + "dc/svpg/sdg/SE_ADT_ACTS.070", + "dc/svpg/sdg/SE_ADT_ACTS.071", + "dc/svpg/sdg/SE_ADT_ACTS.072", + "dc/svpg/sdg/SE_ADT_ACTS.073", + "dc/svpg/sdg/SE_ADT_ACTS.074", + "dc/svpg/sdg/SE_ADT_ACTS.075", + "dc/svpg/sdg/SE_ADT_ACTS.076", + "dc/svpg/sdg/SE_ADT_ACTS.077", + "dc/svpg/sdg/SE_ADT_ACTS.078", + "dc/svpg/sdg/SE_ADT_ACTS.079", + "dc/svpg/sdg/SE_ADT_ACTS.080", + "dc/svpg/sdg/SE_ADT_ACTS.081", + "dc/svpg/sdg/SE_ADT_ACTS.082", + "dc/svpg/sdg/SE_ADT_ACTS.083", + "dc/svpg/sdg/SE_ADT_ACTS.084", + "dc/svpg/sdg/SE_ADT_ACTS.085", + "dc/svpg/sdg/SE_ADT_ACTS.086", + "dc/svpg/sdg/SE_ADT_ACTS.087", + "dc/svpg/sdg/SE_ADT_ACTS.088", + "dc/svpg/sdg/SE_ADT_ACTS.089", + "dc/svpg/sdg/SE_ADT_ACTS.090", + "dc/svpg/sdg/SE_ADT_ACTS.091", + "dc/svpg/sdg/SE_ADT_ACTS.092", + "dc/svpg/sdg/SE_ADT_ACTS.093", + "dc/svpg/sdg/SE_ADT_ACTS.094", + "dc/svpg/sdg/SE_ADT_ACTS.095", + "dc/svpg/sdg/SE_ADT_ACTS.096", + "dc/svpg/sdg/SE_ADT_ACTS.097", + "dc/svpg/sdg/SE_ADT_ACTS.098", + "dc/svpg/sdg/SE_ADT_ACTS.099", + "dc/svpg/sdg/SE_ADT_ACTS.100", + "dc/svpg/sdg/SE_ADT_ACTS.101", + "dc/svpg/sdg/SE_ADT_ACTS.102", + "dc/svpg/sdg/SE_ADT_ACTS.103", + "dc/svpg/sdg/SE_ADT_ACTS.104", + "dc/svpg/sdg/SE_ADT_ACTS.105", + "dc/svpg/sdg/SE_ADT_ACTS.106", + "dc/svpg/sdg/SE_ADT_ACTS.107", + "dc/svpg/sdg/SE_ADT_ACTS.108", + "dc/svpg/sdg/SE_ADT_ACTS.109", + "dc/svpg/sdg/SE_ADT_ACTS.110", + "dc/svpg/sdg/SE_ADT_ACTS.111", + "dc/svpg/sdg/SE_ADT_ACTS.112", + "dc/svpg/sdg/SE_ADT_ACTS.113", + "dc/svpg/sdg/SE_ADT_ACTS.114", + "dc/svpg/sdg/SE_ADT_ACTS.115", + "dc/svpg/sdg/SE_ADT_ACTS.116", + "dc/svpg/sdg/SE_ADT_ACTS.117", + "dc/svpg/sdg/SE_ADT_ACTS.118", + "dc/svpg/sdg/SE_ADT_ACTS.119", + "dc/svpg/sdg/SE_ADT_ACTS.120", + "dc/svpg/sdg/SE_ADT_ACTS.121", + "dc/svpg/sdg/SE_ADT_ACTS.122", + "dc/svpg/sdg/SE_ADT_ACTS.123", + "dc/svpg/sdg/SE_ADT_ACTS.124", + "dc/svpg/sdg/SE_ADT_ACTS.125", + "dc/svpg/sdg/SE_ADT_ACTS.126", + "dc/svpg/sdg/SE_ADT_ACTS.127", + "dc/svpg/sdg/SE_ADT_ACTS.128", + "dc/svpg/sdg/SE_ADT_ACTS.129", + "dc/svpg/sdg/SE_ADT_ACTS.130", + "dc/svpg/sdg/SE_ADT_ACTS.131", + "dc/svpg/sdg/SE_ADT_ACTS.132", + "dc/svpg/sdg/SE_ADT_ACTS.133", + "dc/svpg/sdg/SE_ADT_ACTS.134", + "dc/svpg/sdg/SE_ADT_ACTS.135", + "dc/svpg/sdg/SE_ADT_ACTS.136", + "dc/svpg/sdg/SE_ADT_ACTS.137", + "dc/svpg/sdg/SE_ADT_ACTS.138", + "dc/svpg/sdg/SE_ADT_ACTS.139", + "dc/svpg/sdg/SE_ADT_ACTS.140", + "dc/svpg/sdg/SE_ADT_ACTS.141", + "dc/svpg/sdg/SE_ADT_ACTS.142", + "dc/svpg/sdg/SE_ADT_ACTS.143", + "dc/svpg/sdg/SE_ADT_ACTS.144", + "dc/svpg/sdg/SE_ADT_ACTS.145", + "dc/svpg/sdg/SE_ADT_ACTS.146", + "dc/svpg/sdg/SE_ADT_ACTS.147", + "dc/svpg/sdg/SE_ADT_ACTS.148", + "dc/svpg/sdg/SE_ADT_ACTS.149", + "dc/svpg/sdg/SE_ADT_ACTS.150", + "dc/svpg/sdg/SE_ADT_ACTS.151", + "dc/svpg/sdg/SE_ADT_ACTS.152", + "dc/svpg/sdg/SE_ADT_ACTS.153", + "dc/svpg/sdg/SE_ADT_ACTS.154", + "dc/svpg/sdg/SE_ADT_ACTS.155", + "dc/svpg/sdg/SE_ADT_ACTS.156", + "dc/svpg/sdg/SE_ADT_ACTS.157", + "dc/svpg/sdg/SE_ADT_ACTS.158", + "dc/svpg/sdg/SE_ADT_ACTS.159", + "dc/svpg/sdg/SE_ADT_ACTS.160", + "dc/svpg/sdg/SE_ADT_ACTS.161", + "dc/svpg/sdg/SE_ADT_ACTS.162", + "dc/svpg/sdg/SE_ADT_ACTS.163", + "dc/svpg/sdg/SE_ADT_ACTS.164", + "dc/svpg/sdg/SE_ADT_ACTS.165", + "dc/svpg/sdg/SE_ADT_ACTS.166", + "dc/svpg/sdg/SE_ADT_ACTS.167", + "dc/svpg/sdg/SE_ADT_ACTS.168", + "dc/svpg/sdg/SE_ADT_ACTS.169", + "dc/svpg/sdg/SE_ADT_ACTS.170", + "dc/svpg/sdg/SE_ADT_ACTS.171", + "dc/svpg/sdg/SE_ADT_ACTS.172", + "dc/svpg/sdg/SE_ADT_ACTS.173", + "dc/svpg/sdg/SE_ADT_ACTS.174", + "dc/svpg/sdg/SE_ADT_ACTS.175", + "dc/svpg/sdg/SE_ADT_ACTS.176", + "dc/svpg/sdg/SE_ADT_ACTS.177", + "dc/svpg/sdg/SE_ADT_ACTS.178", + "dc/svpg/sdg/SE_ADT_ACTS.179", + "dc/svpg/sdg/SE_ADT_ACTS.180", + "dc/svpg/sdg/SE_ADT_ACTS.181", + "dc/svpg/sdg/SE_ADT_ACTS.182", + "dc/svpg/sdg/SE_ADT_ACTS.183", + "dc/svpg/sdg/SE_ADT_ACTS.184", + "dc/svpg/sdg/SE_ADT_ACTS.185", + "dc/svpg/sdg/SE_ADT_ACTS.186" + ] + }, + { + "dcid": [ + "dc/topic/SDGSEADTEDUCTRN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Participation rate in formal and non-formal education and training by Age group" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SE_ADT_EDUCTRN.001", + "dc/svpg/sdg/SE_ADT_EDUCTRN.002", + "dc/svpg/sdg/SE_ADT_EDUCTRN.003", + "dc/svpg/sdg/SE_ADT_EDUCTRN.004", + "dc/svpg/sdg/SE_ADT_EDUCTRN.005" + ] + }, + { + "dcid": [ + "dc/topic/SDGSEADTFUNS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of population achieving at least a fixed level of proficiency in functional skills (16 to 65 years old) by Type of skill" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SE_ADT_FUNS.001", + "dc/svpg/sdg/SE_ADT_FUNS.002", + "dc/svpg/sdg/SE_ADT_FUNS.003" + ] + }, + { + "dcid": [ + "dc/topic/SDGSEAGPCPRA" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Adjusted gender parity index for completion rate by Education level" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SE_AGP_CPRA.001", + "dc/svpg/sdg/SE_AGP_CPRA.002", + "dc/svpg/sdg/SE_AGP_CPRA.003", + "dc/svpg/sdg/SE_AGP_CPRA.004", + "dc/svpg/sdg/SE_AGP_CPRA.005", + "dc/svpg/sdg/SE_AGP_CPRA.006", + "dc/svpg/sdg/SE_AGP_CPRA.007", + "dc/svpg/sdg/SE_AGP_CPRA.008", + "dc/svpg/sdg/SE_AGP_CPRA.009", + "dc/svpg/sdg/SE_AGP_CPRA.010", + "dc/svpg/sdg/SE_AGP_CPRA.011", + "dc/svpg/sdg/SE_AGP_CPRA.012", + "dc/svpg/sdg/SE_AGP_CPRA.013", + "dc/svpg/sdg/SE_AGP_CPRA.014", + "dc/svpg/sdg/SE_AGP_CPRA.015", + "dc/svpg/sdg/SE_AGP_CPRA.016", + "dc/svpg/sdg/SE_AGP_CPRA.017", + "dc/svpg/sdg/SE_AGP_CPRA.018" + ] + }, + { + "dcid": [ + "dc/topic/SDGSEALPCPLR" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Adjusted location parity index for completion rate by Education level" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SE_ALP_CPLR.001", + "dc/svpg/sdg/SE_ALP_CPLR.002", + "dc/svpg/sdg/SE_ALP_CPLR.003", + "dc/svpg/sdg/SE_ALP_CPLR.004", + "dc/svpg/sdg/SE_ALP_CPLR.005", + "dc/svpg/sdg/SE_ALP_CPLR.006", + "dc/svpg/sdg/SE_ALP_CPLR.007", + "dc/svpg/sdg/SE_ALP_CPLR.008", + "dc/svpg/sdg/SE_ALP_CPLR.009", + "dc/svpg/sdg/SE_ALP_CPLR.010", + "dc/svpg/sdg/SE_ALP_CPLR.011", + "dc/svpg/sdg/SE_ALP_CPLR.012", + "dc/svpg/sdg/SE_ALP_CPLR.013", + "dc/svpg/sdg/SE_ALP_CPLR.014", + "dc/svpg/sdg/SE_ALP_CPLR.015", + "dc/svpg/sdg/SE_ALP_CPLR.016", + "dc/svpg/sdg/SE_ALP_CPLR.017", + "dc/svpg/sdg/SE_ALP_CPLR.018" + ] + }, + { + "dcid": [ + "dc/topic/SDGSEAWPCPRA" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Adjusted wealth parity index for completion rate by Education level" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SE_AWP_CPRA.001", + "dc/svpg/sdg/SE_AWP_CPRA.002", + "dc/svpg/sdg/SE_AWP_CPRA.003", + "dc/svpg/sdg/SE_AWP_CPRA.004", + "dc/svpg/sdg/SE_AWP_CPRA.005", + "dc/svpg/sdg/SE_AWP_CPRA.006", + "dc/svpg/sdg/SE_AWP_CPRA.007", + "dc/svpg/sdg/SE_AWP_CPRA.008", + "dc/svpg/sdg/SE_AWP_CPRA.009" + ] + }, + { + "dcid": [ + "dc/topic/SDGSEDEVONTRK" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of children aged 24\u221259 months who are developmentally on track in at least three of the following domains: literacy-numeracy, physical development, social-emotional development, and learning by Age group" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SE_DEV_ONTRK.001", + "dc/svpg/sdg/SE_DEV_ONTRK.002", + "dc/svpg/sdg/SE_DEV_ONTRK.003", + "dc/svpg/sdg/SE_DEV_ONTRK.004" + ] + }, + { + "dcid": [ + "dc/topic/SDGSEGCEDESDCUR" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Extent to which global citizenship education and education for sustainable development are mainstreamed in curricula" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SE_GCEDESD_CUR.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSEGCEDESDNEP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Extent to which global citizenship education and education for sustainable development are mainstreamed in national education policies" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SE_GCEDESD_NEP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSEGCEDESDSAS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Extent to which global citizenship education and education for sustainable development are mainstreamed in student assessment" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SE_GCEDESD_SAS.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSEGCEDESDTED" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Extent to which global citizenship education and education for sustainable development are mainstreamed in teacher education" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SE_GCEDESD_TED.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSEGPIICTS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Gender parity index for youth/adults with information and communications technology (ICT) skills by Type of skill" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SE_GPI_ICTS.001", + "dc/svpg/sdg/SE_GPI_ICTS.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSEGPIPART" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Adjusted gender parity index for participation rate in formal and non-formal education and training by Age group" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SE_GPI_PART.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSEGPIPTNPRE" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Adjusted gender parity index for participation rate in organized learning (one year before the official primary entry age)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SE_GPI_PTNPRE.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSEGPITCAQ" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Adjusted gender parity index for the proportion of teachers with the minimum required qualifications by Education level" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SE_GPI_TCAQ.001", + "dc/svpg/sdg/SE_GPI_TCAQ.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSEIMPFPOF" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Adjusted immigration status parity index for achieving at least a fixed level of proficiency in functional skills (16 to 65 years old) by Type of skill" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SE_IMP_FPOF.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSEINFDSBL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of schools with access to adapted infrastructure and materials for students with disabilities by Education level" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SE_INF_DSBL.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSELGPACHI" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Adjusted language test parity index for achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in mathematics) by Education level" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SE_LGP_ACHI.001", + "dc/svpg/sdg/SE_LGP_ACHI.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSENAPACHI" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Adjusted immigration status parity index for achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in mathematics) by Education level" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SE_NAP_ACHI.001", + "dc/svpg/sdg/SE_NAP_ACHI.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSEPREPARTN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Participation rate in organized learning (one year before the official primary entry age)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SE_PRE_PARTN.001", + "dc/svpg/sdg/SE_PRE_PARTN.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSETOTCPLR" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "School completion rate by Education level" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SE_TOT_CPLR.001", + "dc/svpg/sdg/SE_TOT_CPLR.002", + "dc/svpg/sdg/SE_TOT_CPLR.003", + "dc/svpg/sdg/SE_TOT_CPLR.004", + "dc/svpg/sdg/SE_TOT_CPLR.005", + "dc/svpg/sdg/SE_TOT_CPLR.006", + "dc/svpg/sdg/SE_TOT_CPLR.007", + "dc/svpg/sdg/SE_TOT_CPLR.008", + "dc/svpg/sdg/SE_TOT_CPLR.009", + "dc/svpg/sdg/SE_TOT_CPLR.010", + "dc/svpg/sdg/SE_TOT_CPLR.011", + "dc/svpg/sdg/SE_TOT_CPLR.012", + "dc/svpg/sdg/SE_TOT_CPLR.013", + "dc/svpg/sdg/SE_TOT_CPLR.014", + "dc/svpg/sdg/SE_TOT_CPLR.015", + "dc/svpg/sdg/SE_TOT_CPLR.016", + "dc/svpg/sdg/SE_TOT_CPLR.017", + "dc/svpg/sdg/SE_TOT_CPLR.018", + "dc/svpg/sdg/SE_TOT_CPLR.019", + "dc/svpg/sdg/SE_TOT_CPLR.020", + "dc/svpg/sdg/SE_TOT_CPLR.021", + "dc/svpg/sdg/SE_TOT_CPLR.022", + "dc/svpg/sdg/SE_TOT_CPLR.023", + "dc/svpg/sdg/SE_TOT_CPLR.024", + "dc/svpg/sdg/SE_TOT_CPLR.025", + "dc/svpg/sdg/SE_TOT_CPLR.026", + "dc/svpg/sdg/SE_TOT_CPLR.027", + "dc/svpg/sdg/SE_TOT_CPLR.028", + "dc/svpg/sdg/SE_TOT_CPLR.029", + "dc/svpg/sdg/SE_TOT_CPLR.030", + "dc/svpg/sdg/SE_TOT_CPLR.031", + "dc/svpg/sdg/SE_TOT_CPLR.032", + "dc/svpg/sdg/SE_TOT_CPLR.033", + "dc/svpg/sdg/SE_TOT_CPLR.034", + "dc/svpg/sdg/SE_TOT_CPLR.035", + "dc/svpg/sdg/SE_TOT_CPLR.036", + "dc/svpg/sdg/SE_TOT_CPLR.037", + "dc/svpg/sdg/SE_TOT_CPLR.038", + "dc/svpg/sdg/SE_TOT_CPLR.039", + "dc/svpg/sdg/SE_TOT_CPLR.040", + "dc/svpg/sdg/SE_TOT_CPLR.041", + "dc/svpg/sdg/SE_TOT_CPLR.042", + "dc/svpg/sdg/SE_TOT_CPLR.043", + "dc/svpg/sdg/SE_TOT_CPLR.044", + "dc/svpg/sdg/SE_TOT_CPLR.045", + "dc/svpg/sdg/SE_TOT_CPLR.046", + "dc/svpg/sdg/SE_TOT_CPLR.047", + "dc/svpg/sdg/SE_TOT_CPLR.048", + "dc/svpg/sdg/SE_TOT_CPLR.049", + "dc/svpg/sdg/SE_TOT_CPLR.050", + "dc/svpg/sdg/SE_TOT_CPLR.051", + "dc/svpg/sdg/SE_TOT_CPLR.052", + "dc/svpg/sdg/SE_TOT_CPLR.053", + "dc/svpg/sdg/SE_TOT_CPLR.054" + ] + }, + { + "dcid": [ + "dc/topic/SDGSETOTGPI" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Adjusted gender parity index for achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in mathematics) by Education level" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SE_TOT_GPI.001", + "dc/svpg/sdg/SE_TOT_GPI.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSETOTGPIFS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Adjusted gender parity index for achieving at least a fixed level of proficiency in functional skills (16 to 65 years old) by Type of skill" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SE_TOT_GPI_FS.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSETOTPRFL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of children and young people achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in mathematics) by Education level" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SE_TOT_PRFL.001", + "dc/svpg/sdg/SE_TOT_PRFL.002", + "dc/svpg/sdg/SE_TOT_PRFL.003", + "dc/svpg/sdg/SE_TOT_PRFL.004", + "dc/svpg/sdg/SE_TOT_PRFL.005", + "dc/svpg/sdg/SE_TOT_PRFL.006" + ] + }, + { + "dcid": [ + "dc/topic/SDGSETOTRUPI" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Adjusted rural to urban parity index for achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in mathematics) by Education level" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SE_TOT_RUPI.001", + "dc/svpg/sdg/SE_TOT_RUPI.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSETOTSESPI" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Adjusted low to high socio-economic parity index for achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in mathematics) by Education level" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SE_TOT_SESPI.001", + "dc/svpg/sdg/SE_TOT_SESPI.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSETOTSESPIFS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Adjusted low to high socio-economic parity status index for achieving at least a fixed level of proficiency in functional skills (16 to 65 years old) by Type of skill" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SE_TOT_SESPI_FS.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSETRAGRDL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of teachers with the minimum required qualifications (Pre-primary education) by Sex" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SE_TRA_GRDL.001", + "dc/svpg/sdg/SE_TRA_GRDL.002", + "dc/svpg/sdg/SE_TRA_GRDL.003", + "dc/svpg/sdg/SE_TRA_GRDL.004", + "dc/svpg/sdg/SE_TRA_GRDL.005" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGCPAMIGRP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of countries with migration policies to facilitate orderly, safe, regular and responsible migration and mobility of people" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_CPA_MIGRP.001", + "dc/svpg/sdg/SG_CPA_MIGRP.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGCPAMIGRS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Countries with migration policies to facilitate orderly, safe, regular and responsible migration and mobility of people" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_CPA_MIGRS.001", + "dc/svpg/sdg/SG_CPA_MIGRS.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGCPAOFDI" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of countries with an outward investment promotion scheme which can benefit developing countries, including LDCs" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_CPA_OFDI.001", + "dc/svpg/sdg/SG_CPA_OFDI.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGCPASDEVP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Mechanisms in place to enhance policy coherence for sustainable development" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_CPA_SDEVP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGDMKJDC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of positions held by persons under 45 years of age in the judiciary, compared to national distributions" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_DMK_JDC.001", + "dc/svpg/sdg/SG_DMK_JDC.002", + "dc/svpg/sdg/SG_DMK_JDC.003", + "dc/svpg/sdg/SG_DMK_JDC.004", + "dc/svpg/sdg/SG_DMK_JDC.005", + "dc/svpg/sdg/SG_DMK_JDC.006", + "dc/svpg/sdg/SG_DMK_JDC.007", + "dc/svpg/sdg/SG_DMK_JDC.008", + "dc/svpg/sdg/SG_DMK_JDC.009", + "dc/svpg/sdg/SG_DMK_JDC.010", + "dc/svpg/sdg/SG_DMK_JDC.011" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGDMKJDCCNS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportions of positions held by persons under 45 years of age in the Constitutional Court" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_DMK_JDC_CNS.001", + "dc/svpg/sdg/SG_DMK_JDC_CNS.002", + "dc/svpg/sdg/SG_DMK_JDC_CNS.003", + "dc/svpg/sdg/SG_DMK_JDC_CNS.004" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGDMKJDCHGR" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportions of positions held by persons under 45 years of age in the Higher Courts" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_DMK_JDC_HGR.001", + "dc/svpg/sdg/SG_DMK_JDC_HGR.002", + "dc/svpg/sdg/SG_DMK_JDC_HGR.003", + "dc/svpg/sdg/SG_DMK_JDC_HGR.004", + "dc/svpg/sdg/SG_DMK_JDC_HGR.005" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGDMKJDCLWR" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportions of positions held by persons under 45 years of age in the Lower Courts" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_DMK_JDC_LWR.001", + "dc/svpg/sdg/SG_DMK_JDC_LWR.002", + "dc/svpg/sdg/SG_DMK_JDC_LWR.003", + "dc/svpg/sdg/SG_DMK_JDC_LWR.004", + "dc/svpg/sdg/SG_DMK_JDC_LWR.005" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGDMKPARLCCJC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of chairs of permanent parliamentary committees held by women 46 years old and over: Joint Committees" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_DMK_PARLCC_JC.001", + "dc/svpg/sdg/SG_DMK_PARLCC_JC.002", + "dc/svpg/sdg/SG_DMK_PARLCC_JC.003", + "dc/svpg/sdg/SG_DMK_PARLCC_JC.004", + "dc/svpg/sdg/SG_DMK_PARLCC_JC.005", + "dc/svpg/sdg/SG_DMK_PARLCC_JC.006" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGDMKPARLCCLC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of chairs of permanent parliamentary committees held by women 46 years old and over: Lower Chamber or Unicameral Committees" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_DMK_PARLCC_LC.001", + "dc/svpg/sdg/SG_DMK_PARLCC_LC.002", + "dc/svpg/sdg/SG_DMK_PARLCC_LC.003", + "dc/svpg/sdg/SG_DMK_PARLCC_LC.004", + "dc/svpg/sdg/SG_DMK_PARLCC_LC.005", + "dc/svpg/sdg/SG_DMK_PARLCC_LC.006", + "dc/svpg/sdg/SG_DMK_PARLCC_LC.007", + "dc/svpg/sdg/SG_DMK_PARLCC_LC.008", + "dc/svpg/sdg/SG_DMK_PARLCC_LC.009" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGDMKPARLCCUC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of chairs of permanent parliamentary committees held by women years old and over: Upper Chamber Committees" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_DMK_PARLCC_UC.001", + "dc/svpg/sdg/SG_DMK_PARLCC_UC.002", + "dc/svpg/sdg/SG_DMK_PARLCC_UC.003", + "dc/svpg/sdg/SG_DMK_PARLCC_UC.004", + "dc/svpg/sdg/SG_DMK_PARLCC_UC.005", + "dc/svpg/sdg/SG_DMK_PARLCC_UC.006", + "dc/svpg/sdg/SG_DMK_PARLCC_UC.007", + "dc/svpg/sdg/SG_DMK_PARLCC_UC.008" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGDMKPARLMPLC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Female representation ratio in parliament (proportion of women in parliament divided by the proportion of women in the national population\u00a0eligible by age): Lower chamber or unicameral" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_DMK_PARLMP_LC.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGDMKPARLMPUC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Female representation ratio in parliament (proportion of women in parliament divided by the proportion of women in the national population\u00a0eligible by age): Upper chamber" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_DMK_PARLMP_UC.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGDMKPARLSPLC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of persons 46 years and over who are speakers in parliement, by sex: Lower Chamber or Unicameral Committees" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_DMK_PARLSP_LC.001", + "dc/svpg/sdg/SG_DMK_PARLSP_LC.002", + "dc/svpg/sdg/SG_DMK_PARLSP_LC.004", + "dc/svpg/sdg/SG_DMK_PARLSP_LC.005" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGDMKPARLSPUC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of persons 46 years old and over who are speakers in parliement, by sex: Upper Chamber Committees" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_DMK_PARLSP_UC.001", + "dc/svpg/sdg/SG_DMK_PARLSP_UC.002", + "dc/svpg/sdg/SG_DMK_PARLSP_UC.004", + "dc/svpg/sdg/SG_DMK_PARLSP_UC.005" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGDMKPARLYNLC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of youth in parliament (age 45 or below): Lower Chamber or Unicameral by Age group" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_DMK_PARLYN_LC.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGDMKPARLYNUC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of youth in parliament (age 45 or below): Upper Chamber by Age group" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_DMK_PARLYN_UC.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGDMKPARLYPLC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of youth in parliament (age 45 or below): Lower Chamber or Unicameral by Age group" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_DMK_PARLYP_LC.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGDMKPARLYPUC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of youth in parliament (age 45 or below): Upper Chamber by Age group" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_DMK_PARLYP_UC.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGDMKPARLYRLC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Youth representation ratio in parliament (proportion of members in parliament aged 45 or below divided by the share of individuals aged 45 or below in the national population eligible by age): Lower Chamber or Unicameral by Age group" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_DMK_PARLYR_LC.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGDMKPARLYRUC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Youth representation ratio in parliament (proportion of members in parliament aged 45 or below divided by the share of individuals aged 45 or below in the national population eligible by age): Upper Chamber or Unicameral by Age group" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_DMK_PARLYR_UC.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGDMKPSRVC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of positions in the public service held by specific groups compared to national distributions" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_DMK_PSRVC.001", + "dc/svpg/sdg/SG_DMK_PSRVC.005" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGDSRLGRGSR" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Score of adoption and implementation of national disaster-risk reduction strategies in line with the Sendai Framework" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_DSR_LGRGSR.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGDSRSFDRR" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of countries that reported having a national disaster-risk reduction strategy which is aligned to the Sendai Framework" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_DSR_SFDRR.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGDSRSILN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of local governments that adopt and implement local disaster-risk reduction strategies in line with national strategies" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_DSR_SILN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGDSRSILS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of local governments that adopt and implement local disaster-risk reduction strategies in line with national disaster-risk reduction strategies" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_DSR_SILS.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGGENEQPWN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of countries with systems to track and make public allocations for gender equality and women's empowerment" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_GEN_EQPWN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGGENEQPWNN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Countries with systems to track and make public allocations for gender equality and women's empowerment" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_GEN_EQPWNN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGGENLOCGELS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of elected seats in deliberative bodies of local government held by women by Sex" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_GEN_LOCGELS.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGGENPARL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of seats in national parliaments held by women by Sex" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_GEN_PARL.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGGENPARLN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of seats in national parliaments held by women by Sex" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_GEN_PARLN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGGENPARLNT" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Current number of seats in national parliaments" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_GEN_PARLNT.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGGOVLOGV" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of local governments" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_GOV_LOGV.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGHAZCMRBASEL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Parties meeting their commitments and obligations in transmitting information as required by Basel Convention on hazardous waste, and other chemicals" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_HAZ_CMRBASEL.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGHAZCMRMNMT" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Parties meeting their commitments and obligations in transmitting information as required by Minamata Convention on hazardous waste, and other chemicals" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_HAZ_CMRMNMT.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGHAZCMRMNTRL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Parties meeting their commitments and obligations in transmitting information as required by Montreal Protocol on hazardous waste, and other chemicals" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_HAZ_CMRMNTRL.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGHAZCMRROTDAM" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Parties meeting their commitments and obligations in transmitting information as required by Rotterdam Convention on hazardous waste, and other chemicals" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_HAZ_CMRROTDAM.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGHAZCMRSTHOLM" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Parties meeting their commitments and obligations in transmitting information as required by Stockholm Convention on hazardous waste, and other chemicals" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_HAZ_CMRSTHOLM.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGINFACCSS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Countries that adopt and implement constitutional, statutory and/or policy guarantees for public access to information" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_INF_ACCSS.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGINTMBRDEV" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of members of developing countries in international organizations by International organization" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_INT_MBRDEV.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGINTVRTDEV" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of voting rights of developing countries in international organizations by International organization" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_INT_VRTDEV.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGLGLGENEQEMP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Level of achievement regarding legal frameworks that promote, enforce and monitor gender equality with respect to employment and economic benefits (Area 3)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_LGL_GENEQEMP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGLGLGENEQLFP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Level of achievement regarding legal frameworks that promote, enforce and monitor gender equality with respect to overarching legal frameworks and public life (Area 1)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_LGL_GENEQLFP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGLGLGENEQMAR" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Level of achievement regarding legal frameworks that promote, enforce and monitor gender equality with respect to marriage and family (Area 4)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_LGL_GENEQMAR.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGLGLGENEQVAW" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Level of achievement regarding legal frameworks that promote, enforce and monitor gender equality with respect to violence against women (Area 2)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_LGL_GENEQVAW.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGLGLLNDFEMOD" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Degree to which the legal framework (including customary law) guarantees women\u2019s equal rights to land ownership and/or control" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_LGL_LNDFEMOD.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGNHRCMPLNC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Countries with National Human Rights Institutions in compliance with the Paris Principles" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_NHR_CMPLNC.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGNHRIMPL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of countries with independent National Human Rights Institutions in compliance with the Paris Principles" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_NHR_IMPL.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGNHRINTEXST" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of countries that applied for accreditation as independent National Human Rights Institutions in compliance with the Paris Principles" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_NHR_INTEXST.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGPLNMSTKSDGP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of provider countries reporting progress in multi-stakeholder development effectiveness monitoring frameworks that support the achievement of the sustainable development goals" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_PLN_MSTKSDG_P.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGPLNMSTKSDGR" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of recipient countries reporting progress in multi-stakeholder development effectiveness monitoring frameworks that support the achievement of the sustainable development goals" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_PLN_MSTKSDG_R.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGPLNPRPOLRES" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Extent of use of country-owned results frameworks and planning tools by providers of development cooperation - data by provider" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_PLN_PRPOLRES.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGPLNPRVNDI" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of project objectives of new development interventions drawn from country-led result frameworks - data by provider" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_PLN_PRVNDI.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGPLNPRVRICTRY" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of results indicators drawn from country-led results frameworks - data by provider" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_PLN_PRVRICTRY.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGPLNPRVRIMON" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of results indicators which will be monitored using government sources and monitoring systems - data by provider" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_PLN_PRVRIMON.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGPLNRECNDI" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of project objectives in new development interventions drawn from country-led result frameworks - data by recipient" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_PLN_RECNDI.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGPLNRECRICTRY" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of results indicators drawn from country-led results frameworks - data by recipient" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_PLN_RECRICTRY.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGPLNRECRIMON" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of results indicators which will be monitored using government sources and monitoring systems - data by recipient" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_PLN_RECRIMON.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGPLNREPOLRES" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Extent of use of country-owned results frameworks and planning tools by providers of development cooperation - data by recipient" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_PLN_REPOLRES.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGREGBRTH" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of children under 5 years of age whose births have been registered with a civil authority by Age group" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_REG_BRTH.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGREGBRTH90" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of countries with birth registration data that are at least 90 percent complete" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_REG_BRTH90.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGREGBRTH90N" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Countries with birth registration data that are at least 90 percent complete" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_REG_BRTH90N.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGREGCENSUS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of countries that have conducted at least one population and housing census in the last 10 years" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_REG_CENSUS.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGREGCENSUSN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Countries that have conducted at least one population and housing census in the last 10 years" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_REG_CENSUSN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGREGDETH75" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of countries with death registration data that are at least 75 percent complete" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_REG_DETH75.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGREGDETH75N" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Countries with death registration data that are at least 75 percent complete" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_REG_DETH75N.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGSCPCNTRY" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Countries with sustainable consumption and production (SCP) national action plans or SCP mainstreamed as a priority or target into national policies" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_SCP_CNTRY.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGSCPPOLINS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Countries with policy instrument for sustainable consumption and production by Policy instrument" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_SCP_POLINS.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGSCPPROCN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of countries implementing sustainable public procurement policies and action plans by Level of implementation" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_SCP_PROCN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGSCPPROCNHS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Artigas) by Level of implementation" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_SCP_PROCN_HS.001", + "dc/svpg/sdg/SG_SCP_PROCN_HS.002", + "dc/svpg/sdg/SG_SCP_PROCN_HS.003", + "dc/svpg/sdg/SG_SCP_PROCN_HS.004", + "dc/svpg/sdg/SG_SCP_PROCN_HS.005", + "dc/svpg/sdg/SG_SCP_PROCN_HS.006", + "dc/svpg/sdg/SG_SCP_PROCN_HS.007", + "dc/svpg/sdg/SG_SCP_PROCN_HS.008", + "dc/svpg/sdg/SG_SCP_PROCN_HS.009", + "dc/svpg/sdg/SG_SCP_PROCN_HS.010", + "dc/svpg/sdg/SG_SCP_PROCN_HS.011", + "dc/svpg/sdg/SG_SCP_PROCN_HS.012", + "dc/svpg/sdg/SG_SCP_PROCN_HS.013", + "dc/svpg/sdg/SG_SCP_PROCN_HS.014", + "dc/svpg/sdg/SG_SCP_PROCN_HS.015", + "dc/svpg/sdg/SG_SCP_PROCN_HS.016", + "dc/svpg/sdg/SG_SCP_PROCN_HS.017", + "dc/svpg/sdg/SG_SCP_PROCN_HS.018", + "dc/svpg/sdg/SG_SCP_PROCN_HS.019", + "dc/svpg/sdg/SG_SCP_PROCN_HS.020", + "dc/svpg/sdg/SG_SCP_PROCN_HS.021", + "dc/svpg/sdg/SG_SCP_PROCN_HS.022", + "dc/svpg/sdg/SG_SCP_PROCN_HS.023", + "dc/svpg/sdg/SG_SCP_PROCN_HS.024", + "dc/svpg/sdg/SG_SCP_PROCN_HS.025", + "dc/svpg/sdg/SG_SCP_PROCN_HS.026", + "dc/svpg/sdg/SG_SCP_PROCN_HS.027", + "dc/svpg/sdg/SG_SCP_PROCN_HS.028", + "dc/svpg/sdg/SG_SCP_PROCN_HS.029", + "dc/svpg/sdg/SG_SCP_PROCN_HS.030" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGSCPPROCNLS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of countries implementing sustainable public procurement policies and action plans at lower subnational level by level of implementation (Ayuntamiento de Barcelona) by Level of implementation" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_SCP_PROCN_LS.001", + "dc/svpg/sdg/SG_SCP_PROCN_LS.002", + "dc/svpg/sdg/SG_SCP_PROCN_LS.003", + "dc/svpg/sdg/SG_SCP_PROCN_LS.004", + "dc/svpg/sdg/SG_SCP_PROCN_LS.005", + "dc/svpg/sdg/SG_SCP_PROCN_LS.006", + "dc/svpg/sdg/SG_SCP_PROCN_LS.007", + "dc/svpg/sdg/SG_SCP_PROCN_LS.008", + "dc/svpg/sdg/SG_SCP_PROCN_LS.009" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGSCPTOTLN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of policies, instruments and mechanism in place for sustainable consumption and production" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_SCP_TOTLN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGSTTCAPTY" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Dollar value of all resources made available to strengthen statistical capacity in developing countries" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_STT_CAPTY.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGSTTFPOS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Countries with national statistical legislation that complies with the Fundamental Principles of Official Statistics" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_STT_FPOS.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGSTTNSDSFDDNR" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Countries with national statistical plans with funding from donors" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_STT_NSDSFDDNR.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGSTTNSDSFDGVT" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Countries with national statistical plans with funding from government" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_STT_NSDSFDGVT.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGSTTNSDSFDOTHR" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Countries with national statistical plans with funding from others" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_STT_NSDSFDOTHR.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGSTTNSDSFND" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Countries with national statistical plans that are fully funded" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_STT_NSDSFND.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGSTTNSDSIMPL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Countries with national statistical plans that are under implementation" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_STT_NSDSIMPL.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGSTTODIN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Open Data Inventory (ODIN) Coverage Index" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_STT_ODIN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGXPDEDUC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of total government spending on essential services: education" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_XPD_EDUC.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGXPDESSRV" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of total government spending on essential services" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_XPD_ESSRV.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGXPDHLTH" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of total government spending on essential services: health" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_XPD_HLTH.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSGXPDPROT" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of total government spending on essential services: social protection" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SG_XPD_PROT.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHAAPASMORT" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Age-standardized mortality rate attributed to ambient air pollution" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_AAP_ASMORT.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHACSDTP3" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of the target population who received 3 doses of diphtheria-tetanus-pertussis (DTP3) vaccine" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_ACS_DTP3.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHACSHPV" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of the target population who received the final dose of human papillomavirus (HPV) vaccine" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_ACS_HPV.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHACSMCV2" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of the target population who received measles-containing-vaccine second-dose (MCV2)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_ACS_MCV2.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHACSPCV3" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of the target population who received a 3rd dose of pneumococcal conjugate (PCV3) vaccine" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_ACS_PCV3.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHACSUNHC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Universal health coverage (UHC) service coverage index" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_ACS_UNHC.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHALCCONSPT" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Alcohol consumption per capita among individuals aged 15 years and older within a calendar year" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_ALC_CONSPT.001", + "dc/svpg/sdg/SH_ALC_CONSPT.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHBLDECOLI" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Percentage of bloodstream infection due to Escherichia coli resistant to 3rd-generation cephalosporin (e.g., ESBL- E. coli) among patients seeking care and whose blood sample is taken and tested" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_BLD_ECOLI.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHBLDMRSA" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Percentage of bloodstream infection due to methicillin-resistant Staphylococcus aureus (MRSA) among patients seeking care and whose blood sample is taken and tested" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_BLD_MRSA.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHDTHNCD" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of deaths attributed to non-communicable diseases by Disease" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_DTH_NCD.001", + "dc/svpg/sdg/SH_DTH_NCD.002", + "dc/svpg/sdg/SH_DTH_NCD.003" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHDTHNCOM" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Mortality rate attributed to cardiovascular disease, cancer, diabetes or chronic respiratory disease (probability) (30 to 70 years old) by Sex" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_DTH_NCOM.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHDYNIMRT" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Infant mortality rate (under 1 year old) by Sex" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_DYN_IMRT.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHDYNIMRTN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Infant deaths (under 1 year old) by Sex" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_DYN_IMRTN.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHDYNMORT" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Under-five mortality rate (under 5 years old) by Sex" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_DYN_MORT.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHDYNMORTN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Under-five deaths (under 5 years old) by Sex" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_DYN_MORTN.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHDYNNMRT" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Neonatal mortality rate" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_DYN_NMRT.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHDYNNMRTN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Neonatal deaths" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_DYN_NMRTN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHFPLINFM" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of women who make their own informed decisions regarding sexual relations, contraceptive use and reproductive health care (15 to 49 years old)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_FPL_INFM.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHFPLINFMCU" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of women who make their own informed decisions regarding contraceptive use (15 to 49 years old)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_FPL_INFMCU.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHFPLINFMRH" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of women who make their own informed decisions regarding reproductive health care (15 to 49 years old)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_FPL_INFMRH.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHFPLINFMSR" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of women who make their own informed decisions regarding sexual relations (15 to 49 years old)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_FPL_INFMSR.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHFPLMTMM" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of women of reproductive age (aged 15-49 years) who have their need for family planning satisfied with modern methods" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_FPL_MTMM.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHH2OSAFE" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of population using safely managed drinking water services" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_H2O_SAFE.001", + "dc/svpg/sdg/SH_H2O_SAFE.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHHAPASMORT" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Age-standardized mortality rate attributed to household air pollution" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_HAP_ASMORT.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHHAPHBSAG" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Prevalence of hepatitis B surface antigen (HBsAg) (under 5 years old)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_HAP_HBSAG.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHHIVINCD" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of new HIV infections per 1, 000 uninfected population" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_HIV_INCD.001", + "dc/svpg/sdg/SH_HIV_INCD.002", + "dc/svpg/sdg/SH_HIV_INCD.003", + "dc/svpg/sdg/SH_HIV_INCD.004", + "dc/svpg/sdg/SH_HIV_INCD.005", + "dc/svpg/sdg/SH_HIV_INCD.006" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHHLFEMED" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of health facilities that have a core set of relevant essential medicines available and affordable on a sustainable basis" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_HLF_EMED.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHIHRCAPS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "International Health Regulations (IHR) capacity" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_IHR_CAPS.001", + "dc/svpg/sdg/SH_IHR_CAPS.002", + "dc/svpg/sdg/SH_IHR_CAPS.003", + "dc/svpg/sdg/SH_IHR_CAPS.004" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHLGRACSRHE" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Extent to which countries have 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" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_LGR_ACSRHE.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHLGRACSRHEC1" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Extent to which countries have 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 (maternity care component)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_LGR_ACSRHEC1.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHLGRACSRHEC10" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Extent to which countries have 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 (HIV testing and counsellilng component)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_LGR_ACSRHEC10.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHLGRACSRHEC11" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Extent to which countries have 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 (HIV treatment and care component)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_LGR_ACSRHEC11.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHLGRACSRHEC12" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Extent to which countries have 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 (HIV Confidentiality component)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_LGR_ACSRHEC12.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHLGRACSRHEC13" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Extent to which countries have 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 (HPV Vaccine component)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_LGR_ACSRHEC13.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHLGRACSRHEC2" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Extent to which countries have 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 (life-saving commodities component)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_LGR_ACSRHEC2.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHLGRACSRHEC3" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Extent to which countries have 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 (abortion component)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_LGR_ACSRHEC3.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHLGRACSRHEC4" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Extent to which countries have 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 (post-abortion care component)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_LGR_ACSRHEC4.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHLGRACSRHEC5" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Extent to which countries have 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 (contraceptive services component)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_LGR_ACSRHEC5.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHLGRACSRHEC6" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Extent to which countries have 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 (consent for contraceptive services component)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_LGR_ACSRHEC6.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHLGRACSRHEC7" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Extent to which countries have 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 (emergency contraception component)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_LGR_ACSRHEC7.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHLGRACSRHEC8" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Extent to which countries have 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 (comprehensive sexuality education curriculum laws component)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_LGR_ACSRHEC8.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHLGRACSRHEC9" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Extent to which countries have 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 (comprehensive sexuality education curriculum topics component)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_LGR_ACSRHEC9.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHLGRACSRHES1" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Extent to which countries have 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 (maternity care section)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_LGR_ACSRHES1.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHLGRACSRHES2" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Extent to which countries have 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 (contraception and family planning section)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_LGR_ACSRHES2.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHLGRACSRHES3" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Extent to which countries have 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 (comprehensive sexuality education and information section)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_LGR_ACSRHES3.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHLGRACSRHES4" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Extent to which countries have 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 (HIV and HPV)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_LGR_ACSRHES4.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHMEDDEN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Health worker density by Professionals (ISCO08 - 2)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_MED_DEN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHMEDHWRKDIS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Health worker distribution (Female) by Professionals (ISCO08 - 2)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_MED_HWRKDIS.001", + "dc/svpg/sdg/SH_MED_HWRKDIS.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHPRVSMOK" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Age-standardized prevalence of current tobacco use among persons aged 15 years and older" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_PRV_SMOK.001", + "dc/svpg/sdg/SH_PRV_SMOK.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHSANDEFECT" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of population practicing open defecation" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_SAN_DEFECT.001", + "dc/svpg/sdg/SH_SAN_DEFECT.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHSANHNDWSH" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of population with basic handwashing facilities on premises" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_SAN_HNDWSH.001", + "dc/svpg/sdg/SH_SAN_HNDWSH.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHSANSAFE" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of population using safely managed sanitation services" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_SAN_SAFE.001", + "dc/svpg/sdg/SH_SAN_SAFE.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHSTAANEM" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of women aged 15-49 years with anaemia" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_STA_ANEM.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHSTAANEMNPRG" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of non-pregnant women aged 15-49 years with anaemia" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_STA_ANEM_NPRG.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHSTAANEMPREG" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of women aged 15-49 years with anaemia, pregnant" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_STA_ANEM_PREG.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHSTAASAIRP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Age-standardized mortality rate attributed to household and ambient air pollution" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_STA_ASAIRP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHSTABRTC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of births attended by skilled health personnel" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_STA_BRTC.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHSTAFGMS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of girls and women aged 15-49 years who have undergone female genital mutilation by Age group" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_STA_FGMS.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHSTAMALR" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Malaria incidence per 1, 000 population at risk" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_STA_MALR.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHSTAMORT" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Maternal mortality ratio" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_STA_MORT.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHSTAPOISN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Mortality rate attributed to unintentional poisonings" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_STA_POISN.001", + "dc/svpg/sdg/SH_STA_POISN.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHSTASCIDE" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Suicide mortality rate" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_STA_SCIDE.001", + "dc/svpg/sdg/SH_STA_SCIDE.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHSTASCIDEN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of deaths attributed to suicide" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_STA_SCIDEN.001", + "dc/svpg/sdg/SH_STA_SCIDEN.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHSTASTNT" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of children moderately or severely stunted" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_STA_STNT.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHSTASTNTN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Children moderately or severely stunted" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_STA_STNTN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHSTATRAF" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Death rate due to road traffic injuries" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_STA_TRAF.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHSTATRAFN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of deaths rate due to road traffic injuries" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_STA_TRAFN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHSTAWASHARI" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Mortality rate attributed to unsafe water, unsafe sanitation and lack of hygiene from diarrhoea, intestinal nematode infections, malnutrition and acute respiratory infections" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_STA_WASHARI.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHSTAWAST" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of children moderately or severely wasted" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_STA_WAST.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHSTAWASTN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Children moderately or severely wasted" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_STA_WASTN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHSUDALCOL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Alcohol use disorders, 12-month prevalence (15 years old and over) by Sex" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_SUD_ALCOL.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHSUDTREAT" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Coverage of treatment interventions (pharmacological, psychosocial and rehabilitation and aftercare services) for substance use disorders by Type of substance" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_SUD_TREAT.001", + "dc/svpg/sdg/SH_SUD_TREAT.002", + "dc/svpg/sdg/SH_SUD_TREAT.003", + "dc/svpg/sdg/SH_SUD_TREAT.004", + "dc/svpg/sdg/SH_SUD_TREAT.005" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHTBSINCD" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Tuberculosis incidence" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_TBS_INCD.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHTRPINTVN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of people requiring interventions against neglected tropical diseases" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_TRP_INTVN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHXPDEARN10" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of population with large household expenditures on health (greater than 10%) as a share of total household expenditure or income" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_XPD_EARN10.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSHXPDEARN25" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of population with large household expenditures on health (greater than 25%) as a share of total household expenditure or income" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SH_XPD_EARN25.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSIAGRLSFP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Average income of large-scale food producers, at purchasing-power parity rates" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SI_AGR_LSFP.001", + "dc/svpg/sdg/SI_AGR_LSFP.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSIAGRSSFP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Average income of small-scale food producers, at purchasing-power parity rates" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SI_AGR_SSFP.001", + "dc/svpg/sdg/SI_AGR_SSFP.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSICOVBENFTS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "ILO Proportion of population covered by at least one social protection benefit" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SI_COV_BENFTS.001", + "dc/svpg/sdg/SI_COV_BENFTS.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSICOVCHLD" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "ILO Proportion of children/households receiving child/family cash benefit by Sex" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SI_COV_CHLD.001", + "dc/svpg/sdg/SI_COV_CHLD.003" + ] + }, + { + "dcid": [ + "dc/topic/SDGSICOVDISAB" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "ILO Proportion of population with severe disabilities receiving disability cash benefit" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SI_COV_DISAB.001", + "dc/svpg/sdg/SI_COV_DISAB.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSICOVLMKT" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "World Bank Proportion of population covered by labour market programs" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SI_COV_LMKT.001", + "dc/svpg/sdg/SI_COV_LMKT.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSICOVMATNL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "ILO Proportion of mothers with newborns receiving maternity cash benefit by Age group" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SI_COV_MATNL.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSICOVPENSN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "ILO Proportion of population above statutory pensionable age receiving a pension, by Age group" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SI_COV_PENSN.001", + "dc/svpg/sdg/SI_COV_PENSN.003", + "dc/svpg/sdg/SI_COV_PENSN.004" + ] + }, + { + "dcid": [ + "dc/topic/SDGSICOVPOOR" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "ILO Proportion of poor population receiving social assistance cash benefit" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SI_COV_POOR.001", + "dc/svpg/sdg/SI_COV_POOR.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSICOVSOCAST" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "World Bank Proportion of population covered by social assistance programs" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SI_COV_SOCAST.001", + "dc/svpg/sdg/SI_COV_SOCAST.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSICOVSOCINS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "World Bank Proportion of population covered by social insurance programs" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SI_COV_SOCINS.001", + "dc/svpg/sdg/SI_COV_SOCINS.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSICOVUEMP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "ILO Proportion of unemployed persons receiving unemployment cash benefit by Age group" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SI_COV_UEMP.002", + "dc/svpg/sdg/SI_COV_UEMP.003", + "dc/svpg/sdg/SI_COV_UEMP.004" + ] + }, + { + "dcid": [ + "dc/topic/SDGSICOVVULN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "ILO Proportion of vulnerable population receiving social assistance cash benefit by Sex" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SI_COV_VULN.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSICOVWKINJRY" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "ILO Proportion of employed population covered in the event of work injury by Sex" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SI_COV_WKINJRY.001", + "dc/svpg/sdg/SI_COV_WKINJRY.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSIDSTFISP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Redistributive impact of fiscal policy, Gini index by Fiscal intervention stage" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SI_DST_FISP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSIHEITOTL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Growth rates of household expenditure or income per capita" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SI_HEI_TOTL.001", + "dc/svpg/sdg/SI_HEI_TOTL.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSIPOV50MI" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of people living below 50 percent of median income by Quantile" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SI_POV_50MI.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSIPOVDAY1" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of population below international poverty line" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SI_POV_DAY1.001", + "dc/svpg/sdg/SI_POV_DAY1.002", + "dc/svpg/sdg/SI_POV_DAY1.003", + "dc/svpg/sdg/SI_POV_DAY1.004" + ] + }, + { + "dcid": [ + "dc/topic/SDGSIPOVEMP1" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Employed population below international poverty line by Age group" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SI_POV_EMP1.001", + "dc/svpg/sdg/SI_POV_EMP1.002", + "dc/svpg/sdg/SI_POV_EMP1.003", + "dc/svpg/sdg/SI_POV_EMP1.004" + ] + }, + { + "dcid": [ + "dc/topic/SDGSIPOVNAHC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of population living below the national poverty line" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SI_POV_NAHC.001", + "dc/svpg/sdg/SI_POV_NAHC.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSIRMTCOST" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Average remittance costs of sending $200 to a receiving country as a proportion of the amount remitted" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SI_RMT_COST.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSIRMTCOSTBC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Average remittance costs of sending $200 in a corridor as a proportion of the amount remitted" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SI_RMT_COST_BC.001", + "dc/svpg/sdg/SI_RMT_COST_BC.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSIRMTCOSTSC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "SmaRT average remittance costs of sending $200 in a corridor as a proportion of the amount remitted" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SI_RMT_COST_SC.001", + "dc/svpg/sdg/SI_RMT_COST_SC.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSIRMTCOSTSND" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Average remittance costs of sending $200 for a sending country as a proportion of the amount remitted" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SI_RMT_COST_SND.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSLCPAYEMP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Existence of a developed and operationalized national strategy for youth employment, as a distinct strategy or as part of a national employment strategy" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SL_CPA_YEMP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSLDOMTSPD" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores and care work (10 to 14 years old) by Sex" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SL_DOM_TSPD.001", + "dc/svpg/sdg/SL_DOM_TSPD.002", + "dc/svpg/sdg/SL_DOM_TSPD.003", + "dc/svpg/sdg/SL_DOM_TSPD.004", + "dc/svpg/sdg/SL_DOM_TSPD.005", + "dc/svpg/sdg/SL_DOM_TSPD.006", + "dc/svpg/sdg/SL_DOM_TSPD.007", + "dc/svpg/sdg/SL_DOM_TSPD.008", + "dc/svpg/sdg/SL_DOM_TSPD.009", + "dc/svpg/sdg/SL_DOM_TSPD.010", + "dc/svpg/sdg/SL_DOM_TSPD.011", + "dc/svpg/sdg/SL_DOM_TSPD.012", + "dc/svpg/sdg/SL_DOM_TSPD.013", + "dc/svpg/sdg/SL_DOM_TSPD.014", + "dc/svpg/sdg/SL_DOM_TSPD.015", + "dc/svpg/sdg/SL_DOM_TSPD.016", + "dc/svpg/sdg/SL_DOM_TSPD.017", + "dc/svpg/sdg/SL_DOM_TSPD.018", + "dc/svpg/sdg/SL_DOM_TSPD.019", + "dc/svpg/sdg/SL_DOM_TSPD.020", + "dc/svpg/sdg/SL_DOM_TSPD.021", + "dc/svpg/sdg/SL_DOM_TSPD.022", + "dc/svpg/sdg/SL_DOM_TSPD.023", + "dc/svpg/sdg/SL_DOM_TSPD.024", + "dc/svpg/sdg/SL_DOM_TSPD.025", + "dc/svpg/sdg/SL_DOM_TSPD.026", + "dc/svpg/sdg/SL_DOM_TSPD.027", + "dc/svpg/sdg/SL_DOM_TSPD.028", + "dc/svpg/sdg/SL_DOM_TSPD.029", + "dc/svpg/sdg/SL_DOM_TSPD.030", + "dc/svpg/sdg/SL_DOM_TSPD.031", + "dc/svpg/sdg/SL_DOM_TSPD.032", + "dc/svpg/sdg/SL_DOM_TSPD.033", + "dc/svpg/sdg/SL_DOM_TSPD.034", + "dc/svpg/sdg/SL_DOM_TSPD.035", + "dc/svpg/sdg/SL_DOM_TSPD.036", + "dc/svpg/sdg/SL_DOM_TSPD.037", + "dc/svpg/sdg/SL_DOM_TSPD.038", + "dc/svpg/sdg/SL_DOM_TSPD.039", + "dc/svpg/sdg/SL_DOM_TSPD.040", + "dc/svpg/sdg/SL_DOM_TSPD.041", + "dc/svpg/sdg/SL_DOM_TSPD.042", + "dc/svpg/sdg/SL_DOM_TSPD.043", + "dc/svpg/sdg/SL_DOM_TSPD.044", + "dc/svpg/sdg/SL_DOM_TSPD.045", + "dc/svpg/sdg/SL_DOM_TSPD.046", + "dc/svpg/sdg/SL_DOM_TSPD.047", + "dc/svpg/sdg/SL_DOM_TSPD.048", + "dc/svpg/sdg/SL_DOM_TSPD.049", + "dc/svpg/sdg/SL_DOM_TSPD.050", + "dc/svpg/sdg/SL_DOM_TSPD.051", + "dc/svpg/sdg/SL_DOM_TSPD.052", + "dc/svpg/sdg/SL_DOM_TSPD.053", + "dc/svpg/sdg/SL_DOM_TSPD.054", + "dc/svpg/sdg/SL_DOM_TSPD.055", + "dc/svpg/sdg/SL_DOM_TSPD.056", + "dc/svpg/sdg/SL_DOM_TSPD.057", + "dc/svpg/sdg/SL_DOM_TSPD.058", + "dc/svpg/sdg/SL_DOM_TSPD.059", + "dc/svpg/sdg/SL_DOM_TSPD.060", + "dc/svpg/sdg/SL_DOM_TSPD.061" + ] + }, + { + "dcid": [ + "dc/topic/SDGSLDOMTSPDCW" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of time spent on unpaid care work (10 to 14 years old) by Sex" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SL_DOM_TSPDCW.001", + "dc/svpg/sdg/SL_DOM_TSPDCW.002", + "dc/svpg/sdg/SL_DOM_TSPDCW.003", + "dc/svpg/sdg/SL_DOM_TSPDCW.004", + "dc/svpg/sdg/SL_DOM_TSPDCW.005", + "dc/svpg/sdg/SL_DOM_TSPDCW.006", + "dc/svpg/sdg/SL_DOM_TSPDCW.007", + "dc/svpg/sdg/SL_DOM_TSPDCW.008", + "dc/svpg/sdg/SL_DOM_TSPDCW.009", + "dc/svpg/sdg/SL_DOM_TSPDCW.010", + "dc/svpg/sdg/SL_DOM_TSPDCW.011", + "dc/svpg/sdg/SL_DOM_TSPDCW.012", + "dc/svpg/sdg/SL_DOM_TSPDCW.013", + "dc/svpg/sdg/SL_DOM_TSPDCW.014", + "dc/svpg/sdg/SL_DOM_TSPDCW.015", + "dc/svpg/sdg/SL_DOM_TSPDCW.016", + "dc/svpg/sdg/SL_DOM_TSPDCW.017", + "dc/svpg/sdg/SL_DOM_TSPDCW.018", + "dc/svpg/sdg/SL_DOM_TSPDCW.019", + "dc/svpg/sdg/SL_DOM_TSPDCW.020", + "dc/svpg/sdg/SL_DOM_TSPDCW.021", + "dc/svpg/sdg/SL_DOM_TSPDCW.022", + "dc/svpg/sdg/SL_DOM_TSPDCW.023", + "dc/svpg/sdg/SL_DOM_TSPDCW.024", + "dc/svpg/sdg/SL_DOM_TSPDCW.025", + "dc/svpg/sdg/SL_DOM_TSPDCW.026", + "dc/svpg/sdg/SL_DOM_TSPDCW.027", + "dc/svpg/sdg/SL_DOM_TSPDCW.028", + "dc/svpg/sdg/SL_DOM_TSPDCW.029", + "dc/svpg/sdg/SL_DOM_TSPDCW.030", + "dc/svpg/sdg/SL_DOM_TSPDCW.031", + "dc/svpg/sdg/SL_DOM_TSPDCW.032", + "dc/svpg/sdg/SL_DOM_TSPDCW.033", + "dc/svpg/sdg/SL_DOM_TSPDCW.034", + "dc/svpg/sdg/SL_DOM_TSPDCW.035", + "dc/svpg/sdg/SL_DOM_TSPDCW.036", + "dc/svpg/sdg/SL_DOM_TSPDCW.037", + "dc/svpg/sdg/SL_DOM_TSPDCW.038", + "dc/svpg/sdg/SL_DOM_TSPDCW.039", + "dc/svpg/sdg/SL_DOM_TSPDCW.040", + "dc/svpg/sdg/SL_DOM_TSPDCW.041", + "dc/svpg/sdg/SL_DOM_TSPDCW.042", + "dc/svpg/sdg/SL_DOM_TSPDCW.043", + "dc/svpg/sdg/SL_DOM_TSPDCW.044", + "dc/svpg/sdg/SL_DOM_TSPDCW.045", + "dc/svpg/sdg/SL_DOM_TSPDCW.046", + "dc/svpg/sdg/SL_DOM_TSPDCW.047", + "dc/svpg/sdg/SL_DOM_TSPDCW.048", + "dc/svpg/sdg/SL_DOM_TSPDCW.049", + "dc/svpg/sdg/SL_DOM_TSPDCW.050", + "dc/svpg/sdg/SL_DOM_TSPDCW.051", + "dc/svpg/sdg/SL_DOM_TSPDCW.052", + "dc/svpg/sdg/SL_DOM_TSPDCW.053", + "dc/svpg/sdg/SL_DOM_TSPDCW.054", + "dc/svpg/sdg/SL_DOM_TSPDCW.055", + "dc/svpg/sdg/SL_DOM_TSPDCW.056" + ] + }, + { + "dcid": [ + "dc/topic/SDGSLDOMTSPDDC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of time spent on unpaid domestic chores (10 to 14 years old) by Sex" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SL_DOM_TSPDDC.001", + "dc/svpg/sdg/SL_DOM_TSPDDC.002", + "dc/svpg/sdg/SL_DOM_TSPDDC.003", + "dc/svpg/sdg/SL_DOM_TSPDDC.004", + "dc/svpg/sdg/SL_DOM_TSPDDC.005", + "dc/svpg/sdg/SL_DOM_TSPDDC.006", + "dc/svpg/sdg/SL_DOM_TSPDDC.007", + "dc/svpg/sdg/SL_DOM_TSPDDC.008", + "dc/svpg/sdg/SL_DOM_TSPDDC.009", + "dc/svpg/sdg/SL_DOM_TSPDDC.010", + "dc/svpg/sdg/SL_DOM_TSPDDC.011", + "dc/svpg/sdg/SL_DOM_TSPDDC.012", + "dc/svpg/sdg/SL_DOM_TSPDDC.013", + "dc/svpg/sdg/SL_DOM_TSPDDC.014", + "dc/svpg/sdg/SL_DOM_TSPDDC.015", + "dc/svpg/sdg/SL_DOM_TSPDDC.016", + "dc/svpg/sdg/SL_DOM_TSPDDC.017", + "dc/svpg/sdg/SL_DOM_TSPDDC.018", + "dc/svpg/sdg/SL_DOM_TSPDDC.019", + "dc/svpg/sdg/SL_DOM_TSPDDC.020", + "dc/svpg/sdg/SL_DOM_TSPDDC.021", + "dc/svpg/sdg/SL_DOM_TSPDDC.022", + "dc/svpg/sdg/SL_DOM_TSPDDC.023", + "dc/svpg/sdg/SL_DOM_TSPDDC.024", + "dc/svpg/sdg/SL_DOM_TSPDDC.025", + "dc/svpg/sdg/SL_DOM_TSPDDC.026", + "dc/svpg/sdg/SL_DOM_TSPDDC.027", + "dc/svpg/sdg/SL_DOM_TSPDDC.028", + "dc/svpg/sdg/SL_DOM_TSPDDC.029", + "dc/svpg/sdg/SL_DOM_TSPDDC.030", + "dc/svpg/sdg/SL_DOM_TSPDDC.031", + "dc/svpg/sdg/SL_DOM_TSPDDC.032", + "dc/svpg/sdg/SL_DOM_TSPDDC.033", + "dc/svpg/sdg/SL_DOM_TSPDDC.034", + "dc/svpg/sdg/SL_DOM_TSPDDC.035", + "dc/svpg/sdg/SL_DOM_TSPDDC.036", + "dc/svpg/sdg/SL_DOM_TSPDDC.037", + "dc/svpg/sdg/SL_DOM_TSPDDC.038", + "dc/svpg/sdg/SL_DOM_TSPDDC.039", + "dc/svpg/sdg/SL_DOM_TSPDDC.040", + "dc/svpg/sdg/SL_DOM_TSPDDC.041", + "dc/svpg/sdg/SL_DOM_TSPDDC.042", + "dc/svpg/sdg/SL_DOM_TSPDDC.043", + "dc/svpg/sdg/SL_DOM_TSPDDC.044", + "dc/svpg/sdg/SL_DOM_TSPDDC.045", + "dc/svpg/sdg/SL_DOM_TSPDDC.046", + "dc/svpg/sdg/SL_DOM_TSPDDC.047", + "dc/svpg/sdg/SL_DOM_TSPDDC.048", + "dc/svpg/sdg/SL_DOM_TSPDDC.049", + "dc/svpg/sdg/SL_DOM_TSPDDC.050", + "dc/svpg/sdg/SL_DOM_TSPDDC.051", + "dc/svpg/sdg/SL_DOM_TSPDDC.052", + "dc/svpg/sdg/SL_DOM_TSPDDC.053", + "dc/svpg/sdg/SL_DOM_TSPDDC.054", + "dc/svpg/sdg/SL_DOM_TSPDDC.055", + "dc/svpg/sdg/SL_DOM_TSPDDC.056" + ] + }, + { + "dcid": [ + "dc/topic/SDGSLEMPEARN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Average hourly earnings of employees in local currency by Age group" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SL_EMP_EARN.001", + "dc/svpg/sdg/SL_EMP_EARN.002", + "dc/svpg/sdg/SL_EMP_EARN.003", + "dc/svpg/sdg/SL_EMP_EARN.004", + "dc/svpg/sdg/SL_EMP_EARN.005", + "dc/svpg/sdg/SL_EMP_EARN.006", + "dc/svpg/sdg/SL_EMP_EARN.007", + "dc/svpg/sdg/SL_EMP_EARN.008" + ] + }, + { + "dcid": [ + "dc/topic/SDGSLEMPFTLINJUR" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Fatal occupational injuries among employees" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SL_EMP_FTLINJUR.001", + "dc/svpg/sdg/SL_EMP_FTLINJUR.002", + "dc/svpg/sdg/SL_EMP_FTLINJUR.003", + "dc/svpg/sdg/SL_EMP_FTLINJUR.004", + "dc/svpg/sdg/SL_EMP_FTLINJUR.005" + ] + }, + { + "dcid": [ + "dc/topic/SDGSLEMPGTOTL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Labour share of GDP by Age group" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SL_EMP_GTOTL.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSLEMPINJUR" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Non-fatal occupational injuries among employees" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SL_EMP_INJUR.001", + "dc/svpg/sdg/SL_EMP_INJUR.002", + "dc/svpg/sdg/SL_EMP_INJUR.003", + "dc/svpg/sdg/SL_EMP_INJUR.004", + "dc/svpg/sdg/SL_EMP_INJUR.005" + ] + }, + { + "dcid": [ + "dc/topic/SDGSLEMPPCAP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Annual growth rate of real GDP per employed person (15 years old and over)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SL_EMP_PCAP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSLEMPRCOSTMO" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Migrant recruitment costs (number of months of earnings) by Sex" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SL_EMP_RCOST_MO.001", + "dc/svpg/sdg/SL_EMP_RCOST_MO.002", + "dc/svpg/sdg/SL_EMP_RCOST_MO.003" + ] + }, + { + "dcid": [ + "dc/topic/SDGSLISVIFEM" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of informal employment, previous definition (15 years old and over)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SL_ISV_IFEM.001", + "dc/svpg/sdg/SL_ISV_IFEM.002", + "dc/svpg/sdg/SL_ISV_IFEM.004", + "dc/svpg/sdg/SL_ISV_IFEM.005", + "dc/svpg/sdg/SL_ISV_IFEM.008" + ] + }, + { + "dcid": [ + "dc/topic/SDGSLISVIFEM19ICLS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of informal employment, current definition (15 years old and over)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SL_ISV_IFEM_19ICLS.001", + "dc/svpg/sdg/SL_ISV_IFEM_19ICLS.002", + "dc/svpg/sdg/SL_ISV_IFEM_19ICLS.004", + "dc/svpg/sdg/SL_ISV_IFEM_19ICLS.005", + "dc/svpg/sdg/SL_ISV_IFEM_19ICLS.007" + ] + }, + { + "dcid": [ + "dc/topic/SDGSLLBRNTLCPL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Level of national compliance with labour rights (freedom of association and collective bargaining) based on International Labour Organization (ILO) textual sources and national legislation" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SL_LBR_NTLCPL.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSLTLFCHLDEA" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of children engaged in economic activity by Age group" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SL_TLF_CHLDEA.001", + "dc/svpg/sdg/SL_TLF_CHLDEA.002", + "dc/svpg/sdg/SL_TLF_CHLDEA.003", + "dc/svpg/sdg/SL_TLF_CHLDEA.004", + "dc/svpg/sdg/SL_TLF_CHLDEA.005", + "dc/svpg/sdg/SL_TLF_CHLDEA.006" + ] + }, + { + "dcid": [ + "dc/topic/SDGSLTLFCHLDEC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of children engaged in economic activity and household chores by Age group" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SL_TLF_CHLDEC.001", + "dc/svpg/sdg/SL_TLF_CHLDEC.002", + "dc/svpg/sdg/SL_TLF_CHLDEC.003", + "dc/svpg/sdg/SL_TLF_CHLDEC.004", + "dc/svpg/sdg/SL_TLF_CHLDEC.005", + "dc/svpg/sdg/SL_TLF_CHLDEC.006" + ] + }, + { + "dcid": [ + "dc/topic/SDGSLTLFMANF" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Manufacturing employment as a proportion of total employment - previous definition" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SL_TLF_MANF.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSLTLFMANF19ICLS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Manufacturing employment as a proportion of total employment - current definition" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SL_TLF_MANF_19ICLS.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSLTLFNEET" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of youth not in education, employment or training - previous definition by Age group" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SL_TLF_NEET.001", + "dc/svpg/sdg/SL_TLF_NEET.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSLTLFNEET19ICLS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of youth not in education, employment or training - current definition by Age group" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SL_TLF_NEET_19ICLS.001", + "dc/svpg/sdg/SL_TLF_NEET_19ICLS.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSLTLFUEM" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Unemployment rate by sex and age - previous definition by Age group" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SL_TLF_UEM.001", + "dc/svpg/sdg/SL_TLF_UEM.002", + "dc/svpg/sdg/SL_TLF_UEM.003", + "dc/svpg/sdg/SL_TLF_UEM.004" + ] + }, + { + "dcid": [ + "dc/topic/SDGSLTLFUEMDIS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Unemployment rate by sex and disability - previous definition (15 years old and over)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SL_TLF_UEMDIS.001", + "dc/svpg/sdg/SL_TLF_UEMDIS.002", + "dc/svpg/sdg/SL_TLF_UEMDIS.003", + "dc/svpg/sdg/SL_TLF_UEMDIS.004", + "dc/svpg/sdg/SL_TLF_UEMDIS.005" + ] + }, + { + "dcid": [ + "dc/topic/SDGSLTLFUEMDIS19ICLS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Unemployment rate by sex and disability - current definition (15 years old and over)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SL_TLF_UEMDIS_19ICLS.001", + "dc/svpg/sdg/SL_TLF_UEMDIS_19ICLS.002", + "dc/svpg/sdg/SL_TLF_UEMDIS_19ICLS.003", + "dc/svpg/sdg/SL_TLF_UEMDIS_19ICLS.004", + "dc/svpg/sdg/SL_TLF_UEMDIS_19ICLS.005" + ] + }, + { + "dcid": [ + "dc/topic/SDGSLTLFUEM19ICLS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Unemployment rate by sex and age - current definition by Age group" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SL_TLF_UEM_19ICLS.001", + "dc/svpg/sdg/SL_TLF_UEM_19ICLS.002", + "dc/svpg/sdg/SL_TLF_UEM_19ICLS.003", + "dc/svpg/sdg/SL_TLF_UEM_19ICLS.004" + ] + }, + { + "dcid": [ + "dc/topic/SDGSMDTHMIGR" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Total deaths and disappearances recorded during migration" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SM_DTH_MIGR.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSMPOPREFGOR" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of refugees per 100, 000 population" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SM_POP_REFG_OR.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSNITKDEFC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Prevalence of undernourishment" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SN_ITK_DEFC.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSNITKDEFCN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of undernourished people" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SN_ITK_DEFCN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSNSTAOVWGT" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of children under 5 years old moderately or severely overweight" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SN_STA_OVWGT.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSNSTAOVWGTN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Children under 5 years old moderately or severely overweight" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SN_STA_OVWGTN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSPACSBSRVH2O" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of population using basic drinking water services" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SP_ACS_BSRVH2O.001", + "dc/svpg/sdg/SP_ACS_BSRVH2O.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSPACSBSRVSAN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of population using basic sanitation services" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SP_ACS_BSRVSAN.001", + "dc/svpg/sdg/SP_ACS_BSRVSAN.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSPDISPRESOL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of the population who have experienced a dispute in the past two years who accessed a formal or informal dispute resolution mechanism" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SP_DISP_RESOL.001", + "dc/svpg/sdg/SP_DISP_RESOL.002", + "dc/svpg/sdg/SP_DISP_RESOL.003" + ] + }, + { + "dcid": [ + "dc/topic/SDGSPDYNADKL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Adolescent birth rate" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SP_DYN_ADKL.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSPDYNMRBF15" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of women aged 20-24 years who were married or in a union before age 15" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SP_DYN_MRBF15.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSPDYNMRBF18" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of women aged 20-24 years who were married or in a union before age 18" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SP_DYN_MRBF18.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSPGNPWNOWNS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Share of women among owners or rights-bearers of agricultural land" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SP_GNP_WNOWNS.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSPLGLLNDAGSEC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of total agricultural population with ownership or secure rights over agricultural land" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SP_LGL_LNDAGSEC.001", + "dc/svpg/sdg/SP_LGL_LNDAGSEC.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSPLGLLNDDOC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of people with legally recognized documentation of their rights to land out of total adult population by Sex" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SP_LGL_LNDDOC.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSPLGLLNDSEC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of people who perceive their rights to land as secure out of total adult population" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SP_LGL_LNDSEC.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSPLGLLNDSTR" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of people with secure tenure rights to land out of total adult population by Sex" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SP_LGL_LNDSTR.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGSPPSROSATISGOV" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of population who say that overall they are satisfied with the quality of government services" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SP_PSR_OSATIS_GOV.001", + "dc/svpg/sdg/SP_PSR_OSATIS_GOV.002", + "dc/svpg/sdg/SP_PSR_OSATIS_GOV.003", + "dc/svpg/sdg/SP_PSR_OSATIS_GOV.004", + "dc/svpg/sdg/SP_PSR_OSATIS_GOV.005", + "dc/svpg/sdg/SP_PSR_OSATIS_GOV.006" + ] + }, + { + "dcid": [ + "dc/topic/SDGSPPSROSATISHLTH" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of population who say that overall they are satisfied with the quality of healthcare services" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SP_PSR_OSATIS_HLTH.001", + "dc/svpg/sdg/SP_PSR_OSATIS_HLTH.002", + "dc/svpg/sdg/SP_PSR_OSATIS_HLTH.003", + "dc/svpg/sdg/SP_PSR_OSATIS_HLTH.004", + "dc/svpg/sdg/SP_PSR_OSATIS_HLTH.005", + "dc/svpg/sdg/SP_PSR_OSATIS_HLTH.006" + ] + }, + { + "dcid": [ + "dc/topic/SDGSPPSROSATISPRM" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of population who say that overall they are satisfied with the quality of primary education services" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SP_PSR_OSATIS_PRM.001", + "dc/svpg/sdg/SP_PSR_OSATIS_PRM.002", + "dc/svpg/sdg/SP_PSR_OSATIS_PRM.003", + "dc/svpg/sdg/SP_PSR_OSATIS_PRM.004", + "dc/svpg/sdg/SP_PSR_OSATIS_PRM.005", + "dc/svpg/sdg/SP_PSR_OSATIS_PRM.006" + ] + }, + { + "dcid": [ + "dc/topic/SDGSPPSROSATISSEC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of population who say that overall they are satisfied with the quality of secondary education services" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SP_PSR_OSATIS_SEC.001", + "dc/svpg/sdg/SP_PSR_OSATIS_SEC.002", + "dc/svpg/sdg/SP_PSR_OSATIS_SEC.003", + "dc/svpg/sdg/SP_PSR_OSATIS_SEC.004", + "dc/svpg/sdg/SP_PSR_OSATIS_SEC.005", + "dc/svpg/sdg/SP_PSR_OSATIS_SEC.006" + ] + }, + { + "dcid": [ + "dc/topic/SDGSPPSRSATISGOV" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of population satisfied with their last experience of government services (25 to 34 years old) by Service attribute" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SP_PSR_SATIS_GOV.001", + "dc/svpg/sdg/SP_PSR_SATIS_GOV.002", + "dc/svpg/sdg/SP_PSR_SATIS_GOV.003", + "dc/svpg/sdg/SP_PSR_SATIS_GOV.004", + "dc/svpg/sdg/SP_PSR_SATIS_GOV.005", + "dc/svpg/sdg/SP_PSR_SATIS_GOV.006", + "dc/svpg/sdg/SP_PSR_SATIS_GOV.007", + "dc/svpg/sdg/SP_PSR_SATIS_GOV.008", + "dc/svpg/sdg/SP_PSR_SATIS_GOV.009", + "dc/svpg/sdg/SP_PSR_SATIS_GOV.010", + "dc/svpg/sdg/SP_PSR_SATIS_GOV.011", + "dc/svpg/sdg/SP_PSR_SATIS_GOV.012", + "dc/svpg/sdg/SP_PSR_SATIS_GOV.013", + "dc/svpg/sdg/SP_PSR_SATIS_GOV.014", + "dc/svpg/sdg/SP_PSR_SATIS_GOV.015", + "dc/svpg/sdg/SP_PSR_SATIS_GOV.016" + ] + }, + { + "dcid": [ + "dc/topic/SDGSPPSRSATISHLTH" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of population satisfied with their last experience of public healthcare services (25 to 34 years old) by Service attribute" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SP_PSR_SATIS_HLTH.001", + "dc/svpg/sdg/SP_PSR_SATIS_HLTH.002", + "dc/svpg/sdg/SP_PSR_SATIS_HLTH.003", + "dc/svpg/sdg/SP_PSR_SATIS_HLTH.004", + "dc/svpg/sdg/SP_PSR_SATIS_HLTH.005", + "dc/svpg/sdg/SP_PSR_SATIS_HLTH.006", + "dc/svpg/sdg/SP_PSR_SATIS_HLTH.007", + "dc/svpg/sdg/SP_PSR_SATIS_HLTH.008", + "dc/svpg/sdg/SP_PSR_SATIS_HLTH.009", + "dc/svpg/sdg/SP_PSR_SATIS_HLTH.010", + "dc/svpg/sdg/SP_PSR_SATIS_HLTH.011", + "dc/svpg/sdg/SP_PSR_SATIS_HLTH.012", + "dc/svpg/sdg/SP_PSR_SATIS_HLTH.013", + "dc/svpg/sdg/SP_PSR_SATIS_HLTH.014", + "dc/svpg/sdg/SP_PSR_SATIS_HLTH.015", + "dc/svpg/sdg/SP_PSR_SATIS_HLTH.016", + "dc/svpg/sdg/SP_PSR_SATIS_HLTH.017", + "dc/svpg/sdg/SP_PSR_SATIS_HLTH.018", + "dc/svpg/sdg/SP_PSR_SATIS_HLTH.019", + "dc/svpg/sdg/SP_PSR_SATIS_HLTH.020", + "dc/svpg/sdg/SP_PSR_SATIS_HLTH.021", + "dc/svpg/sdg/SP_PSR_SATIS_HLTH.022", + "dc/svpg/sdg/SP_PSR_SATIS_HLTH.023" + ] + }, + { + "dcid": [ + "dc/topic/SDGSPPSRSATISPRM" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of population satisfied with their last experience of public primary education services (25 to 34 years old) by Service attribute" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SP_PSR_SATIS_PRM.001", + "dc/svpg/sdg/SP_PSR_SATIS_PRM.002", + "dc/svpg/sdg/SP_PSR_SATIS_PRM.003", + "dc/svpg/sdg/SP_PSR_SATIS_PRM.004", + "dc/svpg/sdg/SP_PSR_SATIS_PRM.005", + "dc/svpg/sdg/SP_PSR_SATIS_PRM.006", + "dc/svpg/sdg/SP_PSR_SATIS_PRM.007", + "dc/svpg/sdg/SP_PSR_SATIS_PRM.008", + "dc/svpg/sdg/SP_PSR_SATIS_PRM.009", + "dc/svpg/sdg/SP_PSR_SATIS_PRM.010", + "dc/svpg/sdg/SP_PSR_SATIS_PRM.011", + "dc/svpg/sdg/SP_PSR_SATIS_PRM.012", + "dc/svpg/sdg/SP_PSR_SATIS_PRM.013", + "dc/svpg/sdg/SP_PSR_SATIS_PRM.014", + "dc/svpg/sdg/SP_PSR_SATIS_PRM.015" + ] + }, + { + "dcid": [ + "dc/topic/SDGSPPSRSATISSEC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of population satisfied with their last experience of public secondary education services (25 to 34 years old) by Service attribute" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SP_PSR_SATIS_SEC.001", + "dc/svpg/sdg/SP_PSR_SATIS_SEC.002", + "dc/svpg/sdg/SP_PSR_SATIS_SEC.003", + "dc/svpg/sdg/SP_PSR_SATIS_SEC.004", + "dc/svpg/sdg/SP_PSR_SATIS_SEC.005", + "dc/svpg/sdg/SP_PSR_SATIS_SEC.006", + "dc/svpg/sdg/SP_PSR_SATIS_SEC.007", + "dc/svpg/sdg/SP_PSR_SATIS_SEC.008", + "dc/svpg/sdg/SP_PSR_SATIS_SEC.009", + "dc/svpg/sdg/SP_PSR_SATIS_SEC.010", + "dc/svpg/sdg/SP_PSR_SATIS_SEC.011", + "dc/svpg/sdg/SP_PSR_SATIS_SEC.012", + "dc/svpg/sdg/SP_PSR_SATIS_SEC.013", + "dc/svpg/sdg/SP_PSR_SATIS_SEC.014" + ] + }, + { + "dcid": [ + "dc/topic/SDGSPRODR2KM" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of the rural population who live within 2\u00a0km of an all-season road" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SP_ROD_R2KM.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSPTRNPUBL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of population that has convenient access to public transport" + ], + "relevantVariableList": [ + "dc/svpg/sdg/SP_TRN_PUBL.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSTEEVACCSEEA" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Implementation of standard accounting tools to monitor the economic and environmental aspects of tourism (SEEA tables)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ST_EEV_ACCSEEA.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSTEEVACCTSA" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Implementation of standard accounting tools to monitor the economic and environmental aspects of tourism (Tourism Satellite Account tables)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ST_EEV_ACCTSA.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSTEEVSTDACCT" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Implementation of standard accounting tools to monitor the economic and environmental aspects of tourism (number of tables)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ST_EEV_STDACCT.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGSTGDPZS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Tourism direct GDP as a proportion of total GDP" + ], + "relevantVariableList": [ + "dc/svpg/sdg/ST_GDP_ZS.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGTGVALTOTLGDZS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Merchandise trade as a proportion of GDP" + ], + "relevantVariableList": [ + "dc/svpg/sdg/TG_VAL_TOTL_GD_ZS.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGTMTAXDMFN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Average tariff applied by developed countries, most-favored nation status" + ], + "relevantVariableList": [ + "dc/svpg/sdg/TM_TAX_DMFN.001", + "dc/svpg/sdg/TM_TAX_DMFN.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGTMTAXDPRF" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Average tariff applied by developed countries, preferential status" + ], + "relevantVariableList": [ + "dc/svpg/sdg/TM_TAX_DPRF.001", + "dc/svpg/sdg/TM_TAX_DPRF.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGTMTAXWMFN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Worldwide weighted tariff-average, most-favoured-nation status" + ], + "relevantVariableList": [ + "dc/svpg/sdg/TM_TAX_WMFN.001", + "dc/svpg/sdg/TM_TAX_WMFN.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGTMTAXWMPS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Worldwide weighted tariff-average, preferential status" + ], + "relevantVariableList": [ + "dc/svpg/sdg/TM_TAX_WMPS.001", + "dc/svpg/sdg/TM_TAX_WMPS.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGTMTRFZERO" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of tariff lines applied to imports with zero-tariff" + ], + "relevantVariableList": [ + "dc/svpg/sdg/TM_TRF_ZERO.001", + "dc/svpg/sdg/TM_TRF_ZERO.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGTXEXPGBMRCH" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Developing countries\u2019 and least developed countries\u2019 share of global merchandise exports" + ], + "relevantVariableList": [ + "dc/svpg/sdg/TX_EXP_GBMRCH.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGTXEXPGBSVR" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Developing countries\u2019 and least developed countries\u2019 share of global services exports" + ], + "relevantVariableList": [ + "dc/svpg/sdg/TX_EXP_GBSVR.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGTXIMPGBMRCH" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Developing countries\u2019 and least developed countries\u2019 share of global merchandise imports" + ], + "relevantVariableList": [ + "dc/svpg/sdg/TX_IMP_GBMRCH.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGTXIMPGBSVR" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Developing countries\u2019 and least developed countries\u2019 share of global services imports" + ], + "relevantVariableList": [ + "dc/svpg/sdg/TX_IMP_GBSVR.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCARMSZTRACE" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "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" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_ARM_SZTRACE.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCDSRAFFCT" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of people affected by disasters" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_DSR_AFFCT.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCDSRAGLH" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Direct agriculture loss attributed to disasters" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_DSR_AGLH.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCDSRBSDN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of disruptions to basic services attributed to disasters" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_DSR_BSDN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCDSRCDAN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of damaged critical infrastructure attributed to disasters" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_DSR_CDAN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCDSRCDYN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of other destroyed or damaged critical infrastructure units and facilities attributed to disasters" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_DSR_CDYN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCDSRCHLN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Direct economic loss to cultural heritage damaged or destroyed attributed to disasters" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_DSR_CHLN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCDSRCILN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Direct economic loss resulting from damaged or destroyed critical infrastructure attributed to disasters" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_DSR_CILN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCDSRDAFF" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of directly affected persons attributed to disasters per 100, 000 population" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_DSR_DAFF.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCDSRDDPA" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Direct economic loss to other damaged or destroyed productive assets attributed to disasters" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_DSR_DDPA.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCDSREFDN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of destroyed or damaged educational facilities attributed to disasters" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_DSR_EFDN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCDSRESDN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of disruptions to educational services attributed to disasters" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_DSR_ESDN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCDSRGDPLS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Direct economic loss attributed to disasters" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_DSR_GDPLS.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCDSRHFDN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of destroyed or damaged health facilities attributed to disasters" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_DSR_HFDN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCDSRHOLH" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Direct economic loss in the housing sector attributed to disasters" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_DSR_HOLH.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCDSRHSDN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of disruptions to health services attributed to disasters" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_DSR_HSDN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCDSRIJILN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of injured or ill people attributed to disasters" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_DSR_IJILN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCDSRLSGP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Direct economic loss attributed to disasters relative to GDP" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_DSR_LSGP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCDSRMISS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of missing persons due to disaster" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_DSR_MISS.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCDSRMMHN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of deaths and missing persons attributed to disasters" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_DSR_MMHN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCDSRMORT" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of deaths due to disaster" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_DSR_MORT.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCDSRMTMP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of deaths and missing persons attributed to disasters per 100, 000 population" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_DSR_MTMP.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCDSROBDN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of disruptions to other basic services attributed to disasters" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_DSR_OBDN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCDSRPDAN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of people whose damaged dwellings were attributed to disasters" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_DSR_PDAN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCDSRPDLN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of people whose livelihoods were disrupted or destroyed, attributed to disasters" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_DSR_PDLN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCDSRPDYN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of people whose destroyed dwellings were attributed to disasters" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_DSR_PDYN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCDTHTOCVN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of conflict-related deaths (civilians)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_DTH_TOCVN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCDTHTONCVN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of conflict-related deaths (non-civilians)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_DTH_TONCVN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCDTHTOTN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of total conflict-related deaths" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_DTH_TOTN.001", + "dc/svpg/sdg/VC_DTH_TOTN.002", + "dc/svpg/sdg/VC_DTH_TOTN.003", + "dc/svpg/sdg/VC_DTH_TOTN.004" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCDTHTOTPT" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Conflict-related total death rate" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_DTH_TOTPT.001", + "dc/svpg/sdg/VC_DTH_TOTPT.002", + "dc/svpg/sdg/VC_DTH_TOTPT.003", + "dc/svpg/sdg/VC_DTH_TOTPT.004" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCDTHTOTR" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of total conflict-related deaths per 100, 000 population" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_DTH_TOTR.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCDTHTOUNN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of conflict-related deaths (unknown)" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_DTH_TOUNN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCHTFDETV" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Detected victims of human trafficking" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_HTF_DETV.001", + "dc/svpg/sdg/VC_HTF_DETV.002", + "dc/svpg/sdg/VC_HTF_DETV.003", + "dc/svpg/sdg/VC_HTF_DETV.004", + "dc/svpg/sdg/VC_HTF_DETV.005", + "dc/svpg/sdg/VC_HTF_DETV.006" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCHTFDETVFL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Detected victims of human trafficking for forced labour, servitude and slavery" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_HTF_DETVFL.001", + "dc/svpg/sdg/VC_HTF_DETVFL.002", + "dc/svpg/sdg/VC_HTF_DETVFL.003", + "dc/svpg/sdg/VC_HTF_DETVFL.004", + "dc/svpg/sdg/VC_HTF_DETVFL.005" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCHTFDETVFLR" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Detected victims of human trafficking for forced labour, servitude and slavery" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_HTF_DETVFLR.001", + "dc/svpg/sdg/VC_HTF_DETVFLR.002", + "dc/svpg/sdg/VC_HTF_DETVFLR.003", + "dc/svpg/sdg/VC_HTF_DETVFLR.004" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCHTFDETVOG" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Detected victims of human trafficking for removal of organ" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_HTF_DETVOG.001", + "dc/svpg/sdg/VC_HTF_DETVOG.003" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCHTFDETVOGR" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Detected victims of human trafficking for removal of organ" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_HTF_DETVOGR.001", + "dc/svpg/sdg/VC_HTF_DETVOGR.003" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCHTFDETVOP" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Detected victims of human trafficking for other purposes" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_HTF_DETVOP.001", + "dc/svpg/sdg/VC_HTF_DETVOP.002", + "dc/svpg/sdg/VC_HTF_DETVOP.003", + "dc/svpg/sdg/VC_HTF_DETVOP.004", + "dc/svpg/sdg/VC_HTF_DETVOP.005" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCHTFDETVOPR" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Detected victims of human trafficking for other purposes" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_HTF_DETVOPR.001", + "dc/svpg/sdg/VC_HTF_DETVOPR.002", + "dc/svpg/sdg/VC_HTF_DETVOPR.003", + "dc/svpg/sdg/VC_HTF_DETVOPR.004" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCHTFDETVR" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Detected victims of human trafficking" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_HTF_DETVR.001", + "dc/svpg/sdg/VC_HTF_DETVR.002", + "dc/svpg/sdg/VC_HTF_DETVR.003", + "dc/svpg/sdg/VC_HTF_DETVR.004", + "dc/svpg/sdg/VC_HTF_DETVR.005" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCHTFDETVSX" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Detected victims of human trafficking for sexual exploitation" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_HTF_DETVSX.001", + "dc/svpg/sdg/VC_HTF_DETVSX.002", + "dc/svpg/sdg/VC_HTF_DETVSX.003", + "dc/svpg/sdg/VC_HTF_DETVSX.004", + "dc/svpg/sdg/VC_HTF_DETVSX.005" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCHTFDETVSXR" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Detected victims of human trafficking for sexual exploitation" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_HTF_DETVSXR.001", + "dc/svpg/sdg/VC_HTF_DETVSXR.002", + "dc/svpg/sdg/VC_HTF_DETVSXR.003", + "dc/svpg/sdg/VC_HTF_DETVSXR.004" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCIHRPSRC" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of victims of intentional homicide per 100, 000 population" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_IHR_PSRC.001", + "dc/svpg/sdg/VC_IHR_PSRC.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCIHRPSRCN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of victims of intentional homicide" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_IHR_PSRCN.001", + "dc/svpg/sdg/VC_IHR_PSRCN.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCPRRPHYV" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Police reporting rate for physical assault in the previous 12 months" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_PRR_PHYV.001", + "dc/svpg/sdg/VC_PRR_PHYV.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCPRRPHYVIO" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Police reporting rate for physical violence in the previous 12 months" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_PRR_PHY_VIO.001", + "dc/svpg/sdg/VC_PRR_PHY_VIO.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCPRRPSYCHV" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Police reporting rate for psychological violence in the previous 12 months" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_PRR_PSYCHV.001", + "dc/svpg/sdg/VC_PRR_PSYCHV.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCPRRROBB" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Police reporting rate for robbery in the previous 12 months" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_PRR_ROBB.001", + "dc/svpg/sdg/VC_PRR_ROBB.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCPRRSEXV" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Police reporting rate for sexual assault in the previous 12 months" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_PRR_SEXV.001", + "dc/svpg/sdg/VC_PRR_SEXV.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCPRRSEXVIO" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Police reporting rate for sexual violence in the previous 12 months" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_PRR_SEX_VIO.001", + "dc/svpg/sdg/VC_PRR_SEX_VIO.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCPRSUNSNT" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Unsentenced detainees as a proportion of overall prison population" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_PRS_UNSNT.001", + "dc/svpg/sdg/VC_PRS_UNSNT.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCSNSWALNDRK" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of population that feel safe walking alone around the area they live after dark" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_SNS_WALN_DRK.001", + "dc/svpg/sdg/VC_SNS_WALN_DRK.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCVAWMARR" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of ever-partnered women and girls subjected to physical and/or sexual violence by a current or former intimate partner in the previous 12 months by Age group" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_VAW_MARR.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCVAWMTUHRA" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of cases of killings of human rights defenders, journalists and trade unionists" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_VAW_MTUHRA.001", + "dc/svpg/sdg/VC_VAW_MTUHRA.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCVAWMTUHRAN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Countries with at least one verified case of killings of human rights defenders, journalists, and trade unionists" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_VAW_MTUHRAN.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCVAWPHYPYV" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of children aged 1-14 years who experienced physical punishment and/or psychological aggression by caregivers in last month by Age group" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_VAW_PHYPYV.001" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCVAWSXVLN" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of population aged 18-29 years who experienced sexual violence by age\\xa018 (18 to 29 years old) by Sex" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_VAW_SXVLN.001", + "dc/svpg/sdg/VC_VAW_SXVLN.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCVOCENFDIS" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Number of cases of enforced disappearance of human rights defenders, journalists and trade unionists" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_VOC_ENFDIS.001", + "dc/svpg/sdg/VC_VOC_ENFDIS.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCVOHSXPH" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of persons victim of non-sexual or sexual harassment, in the previous 12 months" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_VOH_SXPH.001", + "dc/svpg/sdg/VC_VOH_SXPH.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCVOVGDSD" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of population reporting having felt discriminated against" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_VOV_GDSD.001", + "dc/svpg/sdg/VC_VOV_GDSD.002", + "dc/svpg/sdg/VC_VOV_GDSD.003", + "dc/svpg/sdg/VC_VOV_GDSD.004", + "dc/svpg/sdg/VC_VOV_GDSD.005", + "dc/svpg/sdg/VC_VOV_GDSD.006", + "dc/svpg/sdg/VC_VOV_GDSD.007", + "dc/svpg/sdg/VC_VOV_GDSD.008", + "dc/svpg/sdg/VC_VOV_GDSD.009", + "dc/svpg/sdg/VC_VOV_GDSD.010", + "dc/svpg/sdg/VC_VOV_GDSD.011", + "dc/svpg/sdg/VC_VOV_GDSD.012", + "dc/svpg/sdg/VC_VOV_GDSD.013", + "dc/svpg/sdg/VC_VOV_GDSD.014", + "dc/svpg/sdg/VC_VOV_GDSD.015", + "dc/svpg/sdg/VC_VOV_GDSD.016", + "dc/svpg/sdg/VC_VOV_GDSD.017", + "dc/svpg/sdg/VC_VOV_GDSD.018", + "dc/svpg/sdg/VC_VOV_GDSD.019", + "dc/svpg/sdg/VC_VOV_GDSD.020", + "dc/svpg/sdg/VC_VOV_GDSD.021", + "dc/svpg/sdg/VC_VOV_GDSD.022", + "dc/svpg/sdg/VC_VOV_GDSD.023" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCVOVPHYL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of population subjected to physical violence in the previous 12 months" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_VOV_PHYL.001", + "dc/svpg/sdg/VC_VOV_PHYL.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCVOVPHYASLT" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of population subjected to physical assault in the previous 12 months" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_VOV_PHY_ASLT.001", + "dc/svpg/sdg/VC_VOV_PHY_ASLT.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCVOVPSYCHL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of population subjected to psychological violence in the previous 12 months" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_VOV_PSYCHL.001", + "dc/svpg/sdg/VC_VOV_PSYCHL.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCVOVROBB" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of population subjected to robbery in the previous 12 months" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_VOV_ROBB.001", + "dc/svpg/sdg/VC_VOV_ROBB.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCVOVSEXL" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of population subjected to sexual violence in the previous 12 months" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_VOV_SEXL.001", + "dc/svpg/sdg/VC_VOV_SEXL.002" + ] + }, + { + "dcid": [ + "dc/topic/SDGVCVOVSEXASLT" + ], + "typeOf": [ + "Topic" + ], + "name": [ + "Proportion of population subjected to sexual assault in the previous 12 months" + ], + "relevantVariableList": [ + "dc/svpg/sdg/VC_VOV_SEX_ASLT.001", + "dc/svpg/sdg/VC_VOV_SEX_ASLT.002" + ] + } + ] +} \ No newline at end of file diff --git a/tools/sdg/topics/sdg_topics.mcf b/tools/sdg/topics/sdg_topics.mcf new file mode 100644 index 0000000000..c17bed315c --- /dev/null +++ b/tools/sdg/topics/sdg_topics.mcf @@ -0,0 +1,11995 @@ + +Node: dcid:dc/svpg/SDGAG_FLS_INDEX.001 +member: dcid:sdg/AG_FLS_INDEX +name: Global food loss index +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_FLS_PCT.001 +member: dcid:sdg/AG_FLS_PCT +name: Food loss percentage +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_FOOD_WST.001 +member: dcid:sdg/AG_FOOD_WST +name: Food waste +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_FOOD_WST.002 +member: dcid:sdg/AG_FOOD_WST.FOOD_WASTE_SECTOR--FWS_HHS, dcid:sdg/AG_FOOD_WST.FOOD_WASTE_SECTOR--FWS_OOHC, dcid:sdg/AG_FOOD_WST.FOOD_WASTE_SECTOR--FWS_RTL +name: Food waste by Sector +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_FOOD_WST_PC.001 +member: dcid:sdg/AG_FOOD_WST_PC +name: Food waste per capita +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_FOOD_WST_PC.002 +member: dcid:sdg/AG_FOOD_WST_PC.FOOD_WASTE_SECTOR--FWS_HHS, dcid:sdg/AG_FOOD_WST_PC.FOOD_WASTE_SECTOR--FWS_OOHC, dcid:sdg/AG_FOOD_WST_PC.FOOD_WASTE_SECTOR--FWS_RTL +name: Food waste per capita by Sector +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_FPA_CFPI.001 +member: dcid:sdg/AG_FPA_CFPI +name: Indicator of Food Price Anomalies (IFPA) by Consumer Price Index of Food +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_FPA_COMM.001 +member: dcid:sdg/AG_FPA_COMM.PRODUCT--CPC2_1_0111, dcid:sdg/AG_FPA_COMM.PRODUCT--CPC2_1_0112, dcid:sdg/AG_FPA_COMM.PRODUCT--CPC2_1_0113, dcid:sdg/AG_FPA_COMM.PRODUCT--CPC2_1_0114, dcid:sdg/AG_FPA_COMM.PRODUCT--CPC2_1_0118 +name: Indicator of Food Price Anomalies (IFPA) by Product +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_FPA_HMFP.001 +member: dcid:sdg/AG_FPA_HMFP +name: Proportion of countries recording abnormally high or moderately high food prices, according to the Indicator of Food Price Anomalies +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_FPA_HMFP.002 +member: dcid:sdg/AG_FPA_HMFP.PRICE_LEVEL_SEVERITY--SPL_A, dcid:sdg/AG_FPA_HMFP.PRICE_LEVEL_SEVERITY--SPL_M +name: Proportion of countries recording abnormally high or moderately high food prices, according to the Indicator of Food Price Anomalies by Price severity level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_LND_AGRBIO.001 +member: dcid:sdg/AG_LND_AGRBIO +name: Proportion of agricultural land area that has achieved an acceptable or desirable level of use of agro-biodiversity supportive practices +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_LND_AGRWAG.001 +member: dcid:sdg/AG_LND_AGRWAG +name: Proportion of agricultural land area that has achieved an acceptable or desirable level of wage rate in agriculture +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_LND_DGRD.001 +member: dcid:sdg/AG_LND_DGRD +name: Proportion of land that is degraded over total land area +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_LND_FERTMG.001 +member: dcid:sdg/AG_LND_FERTMG +name: Proportion of agricultural land area that has achieved an acceptable or desirable level of management of fertilizers +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_LND_FIES.001 +member: dcid:sdg/AG_LND_FIES +name: Proportion of agricultural land area that has achieved an acceptable or desirable level of food security +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_LND_FOVH.001 +member: dcid:sdg/AG_LND_FOVH +name: Proportion of agricultural land area that has achieved an acceptable or desirable level of farm output value per hectare +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_LND_FRST.001 +member: dcid:sdg/AG_LND_FRST +name: Forest area as a proportion of total land area +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_LND_FRSTBIOPHA.001 +member: dcid:sdg/AG_LND_FRSTBIOPHA +name: Above-ground biomass in forest +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_LND_FRSTCERT.001 +member: dcid:sdg/AG_LND_FRSTCERT +name: Forest area certified under an independently verified certification scheme +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_LND_FRSTCHG.001 +member: dcid:sdg/AG_LND_FRSTCHG +name: Annual forest area change rate +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_LND_FRSTMGT.001 +member: dcid:sdg/AG_LND_FRSTMGT +name: Proportion of forest area with a long-term management plan +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_LND_FRSTN.001 +member: dcid:sdg/AG_LND_FRSTN +name: Forest area +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_LND_FRSTPRCT.001 +member: dcid:sdg/AG_LND_FRSTPRCT +name: Proportion of forest area within legally established protected areas +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_LND_H2OAVAIL.001 +member: dcid:sdg/AG_LND_H2OAVAIL +name: Proportion of agricultural land area that has achieved an acceptable or desirable level of variation in water availability +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_LND_LNDSTR.001 +member: dcid:sdg/AG_LND_LNDSTR +name: Proportion of agricultural land area that has achieved an acceptable or desirable level of secure tenure rights to agricultural land +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_LND_NFI.001 +member: dcid:sdg/AG_LND_NFI +name: Proportion of agricultural land area that has achieved an acceptable or desirable level of net farm income +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_LND_PSTCDSMG.001 +member: dcid:sdg/AG_LND_PSTCDSMG +name: Proportion of agricultural land area that has achieved an acceptable or desirable level of management of pesticides +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_LND_RMM.001 +member: dcid:sdg/AG_LND_RMM +name: Proportion of agricultural land area that has achieved an acceptable or desirable level of risk mitigation mechanisms +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_LND_SDGRD.001 +member: dcid:sdg/AG_LND_SDGRD +name: Proportion of agricultural land area that has achieved an acceptable or desirable level of soil degradation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_LND_SUST.001 +member: dcid:sdg/AG_LND_SUST +name: Proportion of agricultural area under productive and sustainable agriculture +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_LND_SUST_PRXCSS.001 +member: dcid:sdg/AG_LND_SUST_PRXCSS +name: Progress toward productive and sustainable agriculture, current status score (proxy) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_LND_SUST_PRXTS.001 +member: dcid:sdg/AG_LND_SUST_PRXTS +name: Progress toward productive and sustainable agriculture, trend score (proxy) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_LND_TOTL.001 +member: dcid:sdg/AG_LND_TOTL +name: Land area +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_PRD_AGVAS.001 +member: dcid:sdg/AG_PRD_AGVAS +name: Agriculture value added share of GDP +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_PRD_FIESMS.001 +member: dcid:sdg/AG_PRD_FIESMS +name: Prevalence of moderate or severe food insecurity in the population +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_PRD_FIESMS.002 +member: dcid:sdg/AG_PRD_FIESMS.AGE--Y_GE15__SEX--F, dcid:sdg/AG_PRD_FIESMS.AGE--Y_GE15__SEX--M +name: Prevalence of moderate or severe food insecurity in the population (15 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_PRD_FIESMS.003 +member: dcid:sdg/AG_PRD_FIESMS.AGE--Y_GE15__URBANIZATION--R, dcid:sdg/AG_PRD_FIESMS.AGE--Y_GE15__URBANIZATION--TSUB, dcid:sdg/AG_PRD_FIESMS.AGE--Y_GE15__URBANIZATION--U +name: Prevalence of moderate or severe food insecurity in the population (15 years old and over) by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_PRD_FIESMSN.001 +member: dcid:sdg/AG_PRD_FIESMSN +name: Population in moderate or severe food insecurity +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_PRD_FIESMSN.002 +member: dcid:sdg/AG_PRD_FIESMSN.AGE--Y_GE15__SEX--F, dcid:sdg/AG_PRD_FIESMSN.AGE--Y_GE15__SEX--M +name: Population in moderate or severe food insecurity (15 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_PRD_FIESS.001 +member: dcid:sdg/AG_PRD_FIESS +name: Prevalence of severe food insecurity in the population +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_PRD_FIESS.002 +member: dcid:sdg/AG_PRD_FIESS.AGE--Y_GE15__SEX--F, dcid:sdg/AG_PRD_FIESS.AGE--Y_GE15__SEX--M +name: Prevalence of severe food insecurity in the population (15 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_PRD_FIESS.003 +member: dcid:sdg/AG_PRD_FIESS.AGE--Y_GE15__URBANIZATION--R, dcid:sdg/AG_PRD_FIESS.AGE--Y_GE15__URBANIZATION--TSUB, dcid:sdg/AG_PRD_FIESS.AGE--Y_GE15__URBANIZATION--U +name: Prevalence of severe food insecurity in the population (15 years old and over) by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_PRD_FIESSN.001 +member: dcid:sdg/AG_PRD_FIESSN +name: Population in severe food insecurity +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_PRD_FIESSN.002 +member: dcid:sdg/AG_PRD_FIESSN.AGE--Y_GE15__SEX--F, dcid:sdg/AG_PRD_FIESSN.AGE--Y_GE15__SEX--M +name: Population in severe food insecurity (15 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_PRD_ORTIND.001 +member: dcid:sdg/AG_PRD_ORTIND +name: Agriculture orientation index for government expenditures +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_PRD_XSUBDY.001 +member: dcid:sdg/AG_PRD_XSUBDY +name: Agricultural export subsidies +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGAG_XPD_AGSGB.001 +member: dcid:sdg/AG_XPD_AGSGB +name: Agriculture share of Government Expenditure +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGBN_CAB_XOKA_GD_ZS.001 +member: dcid:sdg/BN_CAB_XOKA_GD_ZS +name: Current account balance as a proportion of GDP +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGBN_KLT_PTXL_CD.001 +member: dcid:sdg/BN_KLT_PTXL_CD +name: Portfolio investment, net (Balance of Payments) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGBX_KLT_DINV_WD_GD_ZS.001 +member: dcid:sdg/BX_KLT_DINV_WD_GD_ZS +name: Foreign direct investment, net inflows, as a proportion of GDP +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGBX_TRF_PWKR.001 +member: dcid:sdg/BX_TRF_PWKR +name: Volume of remittances as a proportion of total GDP +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_ENVTECH_EXP.001 +member: dcid:sdg/DC_ENVTECH_EXP +name: Amount of tracked exported Environmentally Sound Technologies +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_ENVTECH_IMP.001 +member: dcid:sdg/DC_ENVTECH_IMP +name: Amount of tracked imported Environmentally Sound Technologies +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_ENVTECH_INV.001 +member: dcid:sdg/DC_ENVTECH_INV +name: Total investment in Environment Sound Technologies +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_ENVTECH_INV.002 +member: dcid:sdg/DC_ENVTECH_INV.ECONOMIC_ACTIVITY--ISIC4_A, dcid:sdg/DC_ENVTECH_INV.ECONOMIC_ACTIVITY--ISIC4_B, dcid:sdg/DC_ENVTECH_INV.ECONOMIC_ACTIVITY--ISIC4_C, dcid:sdg/DC_ENVTECH_INV.ECONOMIC_ACTIVITY--ISIC4_D, dcid:sdg/DC_ENVTECH_INV.ECONOMIC_ACTIVITY--ISIC4_E, dcid:sdg/DC_ENVTECH_INV.ECONOMIC_ACTIVITY--ISIC4_F, dcid:sdg/DC_ENVTECH_INV.ECONOMIC_ACTIVITY--ISIC4_H, dcid:sdg/DC_ENVTECH_INV.ECONOMIC_ACTIVITY--ISIC4_S +name: Total investment in Environment Sound Technologies by Major division of ISIC Rev. 4 +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_ENVTECH_REXP.001 +member: dcid:sdg/DC_ENVTECH_REXP +name: Amount of tracked re-exported Environmentally Sound Technologies +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_ENVTECH_RIMP.001 +member: dcid:sdg/DC_ENVTECH_RIMP +name: Amount of tracked re-imported Environmentally Sound Technologies +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_ENVTECH_TT.001 +member: dcid:sdg/DC_ENVTECH_TT +name: Total trade of tracked Environmentally Sound Technologies +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_FIN_CLIMB.001 +member: dcid:sdg/DC_FIN_CLIMB +name: Climate-specific financial support provided via bilateral, regional and other channels +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_FIN_CLIMB.002 +member: dcid:sdg/DC_FIN_CLIMB.CLIMATE_FINANCIAL_SUPPORT--TOS_ADAPTATION, dcid:sdg/DC_FIN_CLIMB.CLIMATE_FINANCIAL_SUPPORT--TOS_CROSS_CUTTING, dcid:sdg/DC_FIN_CLIMB.CLIMATE_FINANCIAL_SUPPORT--TOS_MITIGATION, dcid:sdg/DC_FIN_CLIMB.CLIMATE_FINANCIAL_SUPPORT--TOS_OTHER +name: Climate-specific financial support provided via bilateral, regional and other channels by Type of support +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_FIN_CLIMM.001 +member: dcid:sdg/DC_FIN_CLIMM +name: Climate-specific financial support provided via multilateral channels +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_FIN_CLIMM.002 +member: dcid:sdg/DC_FIN_CLIMM.CLIMATE_FINANCIAL_SUPPORT--TOS_ADAPTATION, dcid:sdg/DC_FIN_CLIMM.CLIMATE_FINANCIAL_SUPPORT--TOS_CROSS_CUTTING, dcid:sdg/DC_FIN_CLIMM.CLIMATE_FINANCIAL_SUPPORT--TOS_MITIGATION, dcid:sdg/DC_FIN_CLIMM.CLIMATE_FINANCIAL_SUPPORT--TOS_OTHER +name: Climate-specific financial support provided via multilateral channels by Type of support +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_FIN_CLIMT.001 +member: dcid:sdg/DC_FIN_CLIMT +name: Total climate-specific financial support provided +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_FIN_GEN.001 +member: dcid:sdg/DC_FIN_GEN +name: Core/general contributions provided to multilateral institutions +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_FIN_TOT.001 +member: dcid:sdg/DC_FIN_TOT +name: Total financial support provided +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_FTA_TOTAL.001 +member: dcid:sdg/DC_FTA_TOTAL +name: Total official development assistance (gross disbursement) for technical cooperation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_ODA_BDVDL.001 +member: dcid:sdg/DC_ODA_BDVDL +name: Total outbound official development assistance for biodiversity +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_ODA_BDVL.001 +member: dcid:sdg/DC_ODA_BDVL +name: Total inbound official development assistance for biodiversity +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_ODA_LDCG.001 +member: dcid:sdg/DC_ODA_LDCG +name: Net outbound official development assistance (ODA) to LDCs as a percentage of OECD-DAC donors' GNI +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_ODA_LDCS.001 +member: dcid:sdg/DC_ODA_LDCS +name: Net inbound official development assistance (ODA) to LDCs from OECD-DAC countries +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_ODA_LLDC.001 +member: dcid:sdg/DC_ODA_LLDC +name: Net outbound official development assistance (ODA) to landlocked developing countries from OECD-DAC countries +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_ODA_LLDCG.001 +member: dcid:sdg/DC_ODA_LLDCG +name: Net outbound official development assistance (ODA) to landlocked developing countries as a percentage of OECD-DAC donors' GNI +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_ODA_POVDLG.001 +member: dcid:sdg/DC_ODA_POVDLG +name: Outbound official development assistance grants for poverty reduction, as percentage of GNI +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_ODA_POVG.001 +member: dcid:sdg/DC_ODA_POVG +name: Official development assistance grants for poverty reduction (percentage of GNI) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_ODA_POVLG.001 +member: dcid:sdg/DC_ODA_POVLG +name: Inbound official development assistance grants for poverty reduction, as a percentage of GNI +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_ODA_SIDS.001 +member: dcid:sdg/DC_ODA_SIDS +name: Net outbound official development assistance (ODA) to small island states (SIDS) from OECD-DAC countries +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_ODA_SIDSG.001 +member: dcid:sdg/DC_ODA_SIDSG +name: Net outbound official development assistance (ODA) to small island states (SIDS) as a percentage of OECD-DAC donors' GNI +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_ODA_TOTG.001 +member: dcid:sdg/DC_ODA_TOTG +name: Net outbound official development assistance (ODA) as a percentage of OECD-DAC donors' GNI +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_ODA_TOTGGE.001 +member: dcid:sdg/DC_ODA_TOTGGE +name: Outbound official development assistance (ODA) as a percentage of OECD-DAC donors' GNI on grant equivalent basis +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_ODA_TOTL.001 +member: dcid:sdg/DC_ODA_TOTL +name: Net outbound official development assistance (ODA) from OECD-DAC countries +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_ODA_TOTLGE.001 +member: dcid:sdg/DC_ODA_TOTLGE +name: Outbound official development assistance (ODA) from OECD-DAC countries on grant equivalent basis +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_OSSD_GRT.001 +member: dcid:sdg/DC_OSSD_GRT +name: Gross receipts by developing countries of official sustainable development grants +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_OSSD_MPF.001 +member: dcid:sdg/DC_OSSD_MPF +name: Gross receipts by developing countries of mobilised private finance (MPF) - on an experimental basis +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_OSSD_OFFCL.001 +member: dcid:sdg/DC_OSSD_OFFCL +name: Gross receipts by developing countries of official concessional sustainable development loans +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_OSSD_OFFNL.001 +member: dcid:sdg/DC_OSSD_OFFNL +name: Gross receipts by developing countries of official non-concessional sustainable development loans +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_OSSD_PRVGRT.001 +member: dcid:sdg/DC_OSSD_PRVGRT +name: Gross receipts by developing countries of private grants +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_TOF_AGRL.001 +member: dcid:sdg/DC_TOF_AGRL +name: Total inbound official flows (disbursements) for agriculture +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_TOF_HLTHL.001 +member: dcid:sdg/DC_TOF_HLTHL +name: Total inbound official development assistance to medical research and basic health sectors, gross disbursement +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_TOF_HLTHNT.001 +member: dcid:sdg/DC_TOF_HLTHNT +name: Total inbound official development assistance to medical research and basic health sectors, net disbursement +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_TOF_INFRAL.001 +member: dcid:sdg/DC_TOF_INFRAL +name: Total inbound official flows for infrastructure +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_TOF_SCHIPSL.001 +member: dcid:sdg/DC_TOF_SCHIPSL +name: Total inbound official flows for scholarships +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_TOF_TRDCMDL.001 +member: dcid:sdg/DC_TOF_TRDCMDL +name: Total outbound official flows (commitments) for Aid for Trade +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_TOF_TRDCML.001 +member: dcid:sdg/DC_TOF_TRDCML +name: Total inbound official flows (commitments) for Aid for Trade +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_TOF_TRDDBMDL.001 +member: dcid:sdg/DC_TOF_TRDDBMDL +name: Total outbound official flows (disbursement) for Aid for Trade +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_TOF_TRDDBML.001 +member: dcid:sdg/DC_TOF_TRDDBML +name: Total inbound official flows (disbursement) for Aid for Trade +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_TOF_WASHL.001 +member: dcid:sdg/DC_TOF_WASHL +name: Total inbound official development assistance (gross disbursement) for water supply and sanitation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_TRF_TFDV.001 +member: dcid:sdg/DC_TRF_TFDV +name: Total inbound resource flows for development +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_TRF_TOTDL.001 +member: dcid:sdg/DC_TRF_TOTDL +name: Total outbound assistance for development +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDC_TRF_TOTL.001 +member: dcid:sdg/DC_TRF_TOTL +name: Total inbound assistance for development +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDI_ILL_IN.001 +member: dcid:sdg/DI_ILL_IN.ILLICIT_FINANCIAL_FLOWS--ETF_TIP, dcid:sdg/DI_ILL_IN.ILLICIT_FINANCIAL_FLOWS--ILM_DRG +name: Total value of inward illicit financial flows by Type of flow +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDI_ILL_OUT.001 +member: dcid:sdg/DI_ILL_OUT.ILLICIT_FINANCIAL_FLOWS--ILM_DRG, dcid:sdg/DI_ILL_OUT.ILLICIT_FINANCIAL_FLOWS--ILM_SOM +name: Total value of outward illicit financial flows by Type of flow +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDP_DOD_DLD2_CR_CG_Z1.001 +member: dcid:sdg/DP_DOD_DLD2_CR_CG_Z1 +name: Gross public sector debt, Central Government, as a proportion of GDP +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDT_DOD_DECT_GN_ZS.001 +member: dcid:sdg/DT_DOD_DECT_GN_ZS +name: External debt stocks as a proportion of GNI +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGDT_TDS_DECT.001 +member: dcid:sdg/DT_TDS_DECT +name: Debt service as a proportion of exports of goods and services +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEG_ACS_ELEC.001 +member: dcid:sdg/EG_ACS_ELEC +name: Proportion of population with access to electricity +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEG_ACS_ELEC.002 +member: dcid:sdg/EG_ACS_ELEC.URBANIZATION--R, dcid:sdg/EG_ACS_ELEC.URBANIZATION--U +name: Proportion of population with access to electricity by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEG_EGY_CLEAN.001 +member: dcid:sdg/EG_EGY_CLEAN +name: Proportion of population with primary reliance on clean fuels and technology +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEG_EGY_CLEAN.002 +member: dcid:sdg/EG_EGY_CLEAN.URBANIZATION--R, dcid:sdg/EG_EGY_CLEAN.URBANIZATION--U +name: Proportion of population with primary reliance on clean fuels and technology by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEG_EGY_PRIM.001 +member: dcid:sdg/EG_EGY_PRIM +name: Energy intensity level of primary energy +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEG_EGY_RNEW.001 +member: dcid:sdg/EG_EGY_RNEW +name: Installed renewable electricity-generating capacity +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEG_EGY_RNEW.002 +member: dcid:sdg/EG_EGY_RNEW.RENEWABLE_TECHNOLOGY--BIOENERGY, dcid:sdg/EG_EGY_RNEW.RENEWABLE_TECHNOLOGY--GEOTHERMAL, dcid:sdg/EG_EGY_RNEW.RENEWABLE_TECHNOLOGY--HYDROPOWER, dcid:sdg/EG_EGY_RNEW.RENEWABLE_TECHNOLOGY--MARINE, dcid:sdg/EG_EGY_RNEW.RENEWABLE_TECHNOLOGY--SOLAR, dcid:sdg/EG_EGY_RNEW.RENEWABLE_TECHNOLOGY--WIND +name: Installed renewable electricity-generating capacity by Type of renewable technology +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEG_FEC_RNEW.001 +member: dcid:sdg/EG_FEC_RNEW +name: Share of renewable energy in the total final energy consumption +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEG_IFF_RANDN.001 +member: dcid:sdg/EG_IFF_RANDN +name: International financial flows to developing countries in support of clean energy research and development and renewable energy production, including in hybrid systems +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEG_IFF_RANDN.002 +member: dcid:sdg/EG_IFF_RANDN.RENEWABLE_TECHNOLOGY--BIOENERGY, dcid:sdg/EG_IFF_RANDN.RENEWABLE_TECHNOLOGY--GEOTHERMAL, dcid:sdg/EG_IFF_RANDN.RENEWABLE_TECHNOLOGY--HYDROPOWER, dcid:sdg/EG_IFF_RANDN.RENEWABLE_TECHNOLOGY--MARINE, dcid:sdg/EG_IFF_RANDN.RENEWABLE_TECHNOLOGY--MULTIPLE, dcid:sdg/EG_IFF_RANDN.RENEWABLE_TECHNOLOGY--SOLAR, dcid:sdg/EG_IFF_RANDN.RENEWABLE_TECHNOLOGY--WIND +name: International financial flows to developing countries in support of clean energy research and development and renewable energy production, including in hybrid systems by Type of renewable technology +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEG_TBA_H2CO.001 +member: dcid:sdg/EG_TBA_H2CO +name: Proportion of transboundary basins (river and lake basins and aquifers) with an operational arrangement for water cooperation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEG_TBA_H2COAQ.001 +member: dcid:sdg/EG_TBA_H2COAQ +name: Proportion of transboundary aquifers with an operational arrangement for water cooperation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEG_TBA_H2CORL.001 +member: dcid:sdg/EG_TBA_H2CORL +name: Proportion of transboundary river and lake basins with an operational arrangement for water cooperation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_ACS_URB_OPENSP.001 +member: dcid:sdg/EN_ACS_URB_OPENSP +name: Average share of urban population with convenient access to open public spaces +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_ADAP_COM.001 +member: dcid:sdg/EN_ADAP_COM.REPORT_ORDINAL--FIRST, dcid:sdg/EN_ADAP_COM.REPORT_ORDINAL--SECOND +name: Number of countries with adaptation communications by Report +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_ADAP_COM_DV.001 +member: dcid:sdg/EN_ADAP_COM_DV.REPORT_ORDINAL--FIRST +name: Number of least developed countries and small island developing States with adaptation communications by Report +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_ATM_CO2.001 +member: dcid:sdg/EN_ATM_CO2 +name: Carbon dioxide emissions from fuel combustion +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_ATM_CO2.002 +member: dcid:sdg/EN_ATM_CO2.ECONOMIC_ACTIVITY--ISIC4_C10T32X19 +name: Carbon dioxide emissions from fuel combustion +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_ATM_CO2GDP.001 +member: dcid:sdg/EN_ATM_CO2GDP +name: Carbon dioxide emissions per unit of GDP at purchaning power parity rates +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_ATM_CO2MVA.001 +member: dcid:sdg/EN_ATM_CO2MVA.ECONOMIC_ACTIVITY--ISIC4_C +name: Carbon dioxide emissions from manufacturing industries per unit of manufacturing value added by Major division of ISIC Rev. 4 +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_ATM_GHGT_AIP.001 +member: dcid:sdg/EN_ATM_GHGT_AIP +name: Total greenhouse gas emissions (excluding land use, land-use changes and forestry) for Annex I Parties to the United Nations Framework Convention on Climate Change +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_ATM_GHGT_NAIP.001 +member: dcid:sdg/EN_ATM_GHGT_NAIP +name: Total greenhouse gas emissions (excluding land use, land-use changes and forestry) for non-Annex I Parties to the United Nations Framework Convention on Climate Change +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_ATM_PM25.001 +member: dcid:sdg/EN_ATM_PM25 +name: Annual mean levels of fine particulate matter (population-weighted) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_ATM_PM25.002 +member: dcid:sdg/EN_ATM_PM25.URBANIZATION--CITY, dcid:sdg/EN_ATM_PM25.URBANIZATION--R, dcid:sdg/EN_ATM_PM25.URBANIZATION--TSUB, dcid:sdg/EN_ATM_PM25.URBANIZATION--U +name: Annual mean levels of fine particulate matter (population-weighted) by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_BIUREP_AIP.001 +member: dcid:sdg/EN_BIUREP_AIP.REPORT_ORDINAL--FIFTH +name: Countries with biennial reports, Annex I Parties to the United Nations Framework Convention on Climate Change by Report +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_BIUREP_NAIP.001 +member: dcid:sdg/EN_BIUREP_NAIP.REPORT_ORDINAL--FIFTH, dcid:sdg/EN_BIUREP_NAIP.REPORT_ORDINAL--FIRST, dcid:sdg/EN_BIUREP_NAIP.REPORT_ORDINAL--FOURTH, dcid:sdg/EN_BIUREP_NAIP.REPORT_ORDINAL--SECOND, dcid:sdg/EN_BIUREP_NAIP.REPORT_ORDINAL--THIRD +name: Countries with biennial update reports, non-Annex I Parties to the United Nations Framework Convention on Climate Change by Report +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_BIUREP_NAIP_DV.001 +member: dcid:sdg/EN_BIUREP_NAIP_DV.REPORT_ORDINAL--FIFTH, dcid:sdg/EN_BIUREP_NAIP_DV.REPORT_ORDINAL--FIRST, dcid:sdg/EN_BIUREP_NAIP_DV.REPORT_ORDINAL--FOURTH, dcid:sdg/EN_BIUREP_NAIP_DV.REPORT_ORDINAL--SECOND, dcid:sdg/EN_BIUREP_NAIP_DV.REPORT_ORDINAL--THIRD +name: Least developed countries and small island developing States with biennial update reports, non-Annex I Parties to the United Nations Framework Convention on Climate Change by Report +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_EWT_COLLPCAP.001 +member: dcid:sdg/EN_EWT_COLLPCAP +name: Electronic waste collected per capita +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_EWT_COLLR.001 +member: dcid:sdg/EN_EWT_COLLR +name: Proportion of electronic waste that is collected +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_EWT_COLLV.001 +member: dcid:sdg/EN_EWT_COLLV +name: Total electronic waste collected +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_EWT_GENPCAP.001 +member: dcid:sdg/EN_EWT_GENPCAP +name: Electronic waste generated per capita +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_EWT_GENV.001 +member: dcid:sdg/EN_EWT_GENV +name: Total electronic waste generated +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_EWT_RCYPCAP.001 +member: dcid:sdg/EN_EWT_RCYPCAP +name: Electronic waste recycled per capita +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_EWT_RCYR.001 +member: dcid:sdg/EN_EWT_RCYR +name: Proportion of electronic waste that is recycled +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_EWT_RCYV.001 +member: dcid:sdg/EN_EWT_RCYV +name: Total electronic waste recycled +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_H2O_GRAMBQ.001 +member: dcid:sdg/EN_H2O_GRAMBQ +name: Proportion of groundwater bodies with good ambient water quality +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_H2O_OPAMBQ.001 +member: dcid:sdg/EN_H2O_OPAMBQ +name: Proportion of open water bodies with good ambient water quality +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_H2O_RVAMBQ.001 +member: dcid:sdg/EN_H2O_RVAMBQ +name: Proportion of river water bodies with good ambient water quality +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_H2O_WBAMBQ.001 +member: dcid:sdg/EN_H2O_WBAMBQ +name: Proportion of bodies of water with good ambient water quality +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_HAZ_EXP.001 +member: dcid:sdg/EN_HAZ_EXP +name: Hazardous waste exported +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_HAZ_GENGDP.001 +member: dcid:sdg/EN_HAZ_GENGDP +name: Hazardous waste generated per unit of GDP +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_HAZ_GENV.001 +member: dcid:sdg/EN_HAZ_GENV +name: Hazardous waste generated +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_HAZ_IMP.001 +member: dcid:sdg/EN_HAZ_IMP +name: Hazardous waste imported +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_HAZ_PCAP.001 +member: dcid:sdg/EN_HAZ_PCAP +name: Hazardous waste generated, per capita +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_HAZ_TREATV.001 +member: dcid:sdg/EN_HAZ_TREATV.WASTE_TREATMENT--INCINRT, dcid:sdg/EN_HAZ_TREATV.WASTE_TREATMENT--INCINRT_EGY, dcid:sdg/EN_HAZ_TREATV.WASTE_TREATMENT--LANDFIL, dcid:sdg/EN_HAZ_TREATV.WASTE_TREATMENT--LANDFILCTL, dcid:sdg/EN_HAZ_TREATV.WASTE_TREATMENT--OTHERWM +name: Hazardous waste treated by Type of waste treatment +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_HAZ_TRTDISR.001 +member: dcid:sdg/EN_HAZ_TRTDISR +name: Proportion of hazardous waste that is treated or disposed +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_HAZ_TRTDISV.001 +member: dcid:sdg/EN_HAZ_TRTDISV +name: Hazardous waste treated or disposed +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_LKRV_PWAC.001 +member: dcid:sdg/EN_LKRV_PWAC +name: Change in permanent water area of lakes and rivers +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_LKRV_PWAN.001 +member: dcid:sdg/EN_LKRV_PWAN +name: Permanent water area of lakes and rivers +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_LKRV_PWAP.001 +member: dcid:sdg/EN_LKRV_PWAP +name: Permanent water area of lakes and rivers as a proportion of total land area +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_LKRV_SWAC.001 +member: dcid:sdg/EN_LKRV_SWAC +name: Change in seasonal water area of lakes and rivers +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_LKRV_SWAN.001 +member: dcid:sdg/EN_LKRV_SWAN +name: Seasonal water area of lakes and rivers +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_LKRV_SWAP.001 +member: dcid:sdg/EN_LKRV_SWAP +name: Seasonal water area of lakes and rivers as a proportion of total land area +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_LKW_QLTRB.001 +member: dcid:sdg/EN_LKW_QLTRB.DEVIATION_LEVEL--DL_EXTREME, dcid:sdg/EN_LKW_QLTRB.DEVIATION_LEVEL--DL_HIGH, dcid:sdg/EN_LKW_QLTRB.DEVIATION_LEVEL--DL_LOW, dcid:sdg/EN_LKW_QLTRB.DEVIATION_LEVEL--DL_MEDIUM +name: Lake water quality: turbidity by Deviation level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_LKW_QLTRST.001 +member: dcid:sdg/EN_LKW_QLTRST.DEVIATION_LEVEL--DL_EXTREME, dcid:sdg/EN_LKW_QLTRST.DEVIATION_LEVEL--DL_HIGH, dcid:sdg/EN_LKW_QLTRST.DEVIATION_LEVEL--DL_LOW, dcid:sdg/EN_LKW_QLTRST.DEVIATION_LEVEL--DL_MEDIUM +name: Lake water quality: trophic state by Deviation level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_LND_CNSPOP.001 +member: dcid:sdg/EN_LND_CNSPOP +name: Ratio of land consumption rate to population growth rate +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_LND_INDQTHSNG.001 +member: dcid:sdg/EN_LND_INDQTHSNG +name: Proportion of urban population living in inadequate housing +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_LND_INDQTHSNG.002 +member: dcid:sdg/EN_LND_INDQTHSNG.URBANIZATION--CITY, dcid:sdg/EN_LND_INDQTHSNG.URBANIZATION--TSUB, dcid:sdg/EN_LND_INDQTHSNG.URBANIZATION--U +name: Proportion of urban population living in inadequate housing by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_LND_SLUM.001 +member: dcid:sdg/EN_LND_SLUM.URBANIZATION--U +name: Proportion of urban population living in slums by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_MAR_BEALITSQ.001 +member: dcid:sdg/EN_MAR_BEALITSQ +name: Beach litter per square kilometer +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_MAR_BEALIT_BP.001 +member: dcid:sdg/EN_MAR_BEALIT_BP +name: Proportion of beach litter originating from national land-based sources that ends in the beach +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_MAR_BEALIT_BV.001 +member: dcid:sdg/EN_MAR_BEALIT_BV +name: Total beach litter originating from national land-based sources that ends in the beach +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_MAR_BEALIT_BV.002 +member: dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000040, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000050, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000060, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000090, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000100, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000120, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000130, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000150, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000170, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000210, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000220, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000230, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000240, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000270, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000280, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000290, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000340, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000350, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000380, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000410, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000420, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000430, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000460, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000470, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000480, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000510, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000550, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000560, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000600, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000610, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000620, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000630, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000660, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000670, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000680, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000700, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000710, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000720, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000730, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000750, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000780, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000790, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000810, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000820, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000830, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000840, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000890, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000900, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000910, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000940, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000950, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000960, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000970, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00000980, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001000, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001010, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001040, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001050, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001060, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001080, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001100, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001110, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001140, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001150, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001170, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001190, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001200, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001220, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001230, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001250, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001270, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001280, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001290, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001300, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001310, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001320, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001340, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001350, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001370, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001380, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001400, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001410, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001430, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001440, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001450, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001470, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001480, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001490, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001520, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001540, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001570, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001620, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001640, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001650, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001660, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001690, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001700, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001720, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001750, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001770, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001840, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001860, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001870, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001880, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001910, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001930, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00001940, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002000, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002010, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002020, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002040, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002050, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002090, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002120, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002160, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002170, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002190, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002250, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002270, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002290, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002300, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002310, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002350, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002370, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002380, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002400, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002410, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002420, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002430, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002450, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002460, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002470, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002500, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002530, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002630, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002640, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002690, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002710, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002730, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002750, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002800, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002820, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002860, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002880, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002890, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002910, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002950, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002960, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002980, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00002990, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003020, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003030, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003040, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003060, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003090, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003100, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003110, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003130, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003140, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003160, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003170, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003190, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003220, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003250, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003260, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003270, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003300, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003340, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003360, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003380, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003390, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003400, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003460, dcid:sdg/EN_MAR_BEALIT_BV.COUNTERPART--G00003480 +name: Total beach litter originating from national land-based sources that ends in the beach by Counterpart +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_MAR_BEALIT_EXP.001 +member: dcid:sdg/EN_MAR_BEALIT_EXP +name: Total beach litter originating from national land-based sources that is exported +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_MAR_BEALIT_OP.001 +member: dcid:sdg/EN_MAR_BEALIT_OP +name: Proportion of beach litter originating from national land-based sources that ends in the ocean +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_MAR_BEALIT_OV.001 +member: dcid:sdg/EN_MAR_BEALIT_OV +name: Total beach litter originating from national land-based sources that ends in the ocean +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_MAR_CHLANM.001 +member: dcid:sdg/EN_MAR_CHLANM.CHLOROPHYLL_A_CONCENTRATION_FREQ--E, dcid:sdg/EN_MAR_CHLANM.CHLOROPHYLL_A_CONCENTRATION_FREQ--H, dcid:sdg/EN_MAR_CHLANM.CHLOROPHYLL_A_CONCENTRATION_FREQ--M +name: Chlorophyll-a anomaly, remote sensing by Chlorophyll-a Concentration Frequency +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_MAR_CHLDEV.001 +member: dcid:sdg/EN_MAR_CHLDEV +name: Chlorophyll-a deviations, remote sensing +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_MAR_PLASDD.001 +member: dcid:sdg/EN_MAR_PLASDD +name: Floating plastic debris density +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_MAT_DOMCMPC.001 +member: dcid:sdg/EN_MAT_DOMCMPC +name: Domestic material consumption per capita +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_MAT_DOMCMPC.002 +member: dcid:sdg/EN_MAT_DOMCMPC.PRODUCT--MF_1, dcid:sdg/EN_MAT_DOMCMPC.PRODUCT--MF_11, dcid:sdg/EN_MAT_DOMCMPC.PRODUCT--MF_121, dcid:sdg/EN_MAT_DOMCMPC.PRODUCT--MF_122, dcid:sdg/EN_MAT_DOMCMPC.PRODUCT--MF_13, dcid:sdg/EN_MAT_DOMCMPC.PRODUCT--MF_14, dcid:sdg/EN_MAT_DOMCMPC.PRODUCT--MF_2, dcid:sdg/EN_MAT_DOMCMPC.PRODUCT--MF_21, dcid:sdg/EN_MAT_DOMCMPC.PRODUCT--MF_22, dcid:sdg/EN_MAT_DOMCMPC.PRODUCT--MF_3, dcid:sdg/EN_MAT_DOMCMPC.PRODUCT--MF_4, dcid:sdg/EN_MAT_DOMCMPC.PRODUCT--MF_41, dcid:sdg/EN_MAT_DOMCMPC.PRODUCT--MF_413, dcid:sdg/EN_MAT_DOMCMPC.PRODUCT--MF_421, dcid:sdg/EN_MAT_DOMCMPC.PRODUCT--MF_422, dcid:sdg/EN_MAT_DOMCMPC.PRODUCT--MF_AGG3A, dcid:sdg/EN_MAT_DOMCMPC.PRODUCT--MF_AGG3B +name: Domestic material consumption per capita by Product +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_MAT_DOMCMPG.001 +member: dcid:sdg/EN_MAT_DOMCMPG +name: Domestic material consumption per unit of GDP +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_MAT_DOMCMPG.002 +member: dcid:sdg/EN_MAT_DOMCMPG.PRODUCT--MF_1, dcid:sdg/EN_MAT_DOMCMPG.PRODUCT--MF_11, dcid:sdg/EN_MAT_DOMCMPG.PRODUCT--MF_121, dcid:sdg/EN_MAT_DOMCMPG.PRODUCT--MF_122, dcid:sdg/EN_MAT_DOMCMPG.PRODUCT--MF_13, dcid:sdg/EN_MAT_DOMCMPG.PRODUCT--MF_14, dcid:sdg/EN_MAT_DOMCMPG.PRODUCT--MF_2, dcid:sdg/EN_MAT_DOMCMPG.PRODUCT--MF_21, dcid:sdg/EN_MAT_DOMCMPG.PRODUCT--MF_22, dcid:sdg/EN_MAT_DOMCMPG.PRODUCT--MF_3, dcid:sdg/EN_MAT_DOMCMPG.PRODUCT--MF_4, dcid:sdg/EN_MAT_DOMCMPG.PRODUCT--MF_41, dcid:sdg/EN_MAT_DOMCMPG.PRODUCT--MF_413, dcid:sdg/EN_MAT_DOMCMPG.PRODUCT--MF_421, dcid:sdg/EN_MAT_DOMCMPG.PRODUCT--MF_422, dcid:sdg/EN_MAT_DOMCMPG.PRODUCT--MF_AGG3A, dcid:sdg/EN_MAT_DOMCMPG.PRODUCT--MF_AGG3B +name: Domestic material consumption per unit of GDP by Product +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_MAT_DOMCMPT.001 +member: dcid:sdg/EN_MAT_DOMCMPT +name: Domestic material consumption +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_MAT_DOMCMPT.002 +member: dcid:sdg/EN_MAT_DOMCMPT.PRODUCT--MF_1, dcid:sdg/EN_MAT_DOMCMPT.PRODUCT--MF_11, dcid:sdg/EN_MAT_DOMCMPT.PRODUCT--MF_121, dcid:sdg/EN_MAT_DOMCMPT.PRODUCT--MF_122, dcid:sdg/EN_MAT_DOMCMPT.PRODUCT--MF_13, dcid:sdg/EN_MAT_DOMCMPT.PRODUCT--MF_14, dcid:sdg/EN_MAT_DOMCMPT.PRODUCT--MF_2, dcid:sdg/EN_MAT_DOMCMPT.PRODUCT--MF_21, dcid:sdg/EN_MAT_DOMCMPT.PRODUCT--MF_22, dcid:sdg/EN_MAT_DOMCMPT.PRODUCT--MF_3, dcid:sdg/EN_MAT_DOMCMPT.PRODUCT--MF_4, dcid:sdg/EN_MAT_DOMCMPT.PRODUCT--MF_41, dcid:sdg/EN_MAT_DOMCMPT.PRODUCT--MF_413, dcid:sdg/EN_MAT_DOMCMPT.PRODUCT--MF_421, dcid:sdg/EN_MAT_DOMCMPT.PRODUCT--MF_422, dcid:sdg/EN_MAT_DOMCMPT.PRODUCT--MF_AGG3A, dcid:sdg/EN_MAT_DOMCMPT.PRODUCT--MF_AGG3B +name: Domestic material consumption by Product +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_MAT_FTPRPC.001 +member: dcid:sdg/EN_MAT_FTPRPC +name: Material footprint per capita +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_MAT_FTPRPG.001 +member: dcid:sdg/EN_MAT_FTPRPG +name: Material footprint per unit of GDP +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_MAT_FTPRTN.001 +member: dcid:sdg/EN_MAT_FTPRTN +name: Material footprint +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_MWT_COLLV.001 +member: dcid:sdg/EN_MWT_COLLV +name: Municipal waste collected +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_MWT_EXP.001 +member: dcid:sdg/EN_MWT_EXP +name: Municipal waste exported +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_MWT_GENV.001 +member: dcid:sdg/EN_MWT_GENV +name: Municipal waste generated +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_MWT_IMP.001 +member: dcid:sdg/EN_MWT_IMP +name: Municipal waste imported +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_MWT_RCYR.001 +member: dcid:sdg/EN_MWT_RCYR +name: Proportion of municipal waste recycled +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_MWT_RCYV.001 +member: dcid:sdg/EN_MWT_RCYV +name: Municipal waste recycled +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_MWT_TREATR.001 +member: dcid:sdg/EN_MWT_TREATR.WASTE_TREATMENT--COMPOST, dcid:sdg/EN_MWT_TREATR.WASTE_TREATMENT--INCINRT, dcid:sdg/EN_MWT_TREATR.WASTE_TREATMENT--INCINRT_EGY, dcid:sdg/EN_MWT_TREATR.WASTE_TREATMENT--LANDFIL, dcid:sdg/EN_MWT_TREATR.WASTE_TREATMENT--LANDFILCTL, dcid:sdg/EN_MWT_TREATR.WASTE_TREATMENT--OTHERWM +name: Proportion of municipal waste treated by Type of waste treatment +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_MWT_TREATV.001 +member: dcid:sdg/EN_MWT_TREATV.WASTE_TREATMENT--COMPOST, dcid:sdg/EN_MWT_TREATV.WASTE_TREATMENT--INCINRT, dcid:sdg/EN_MWT_TREATV.WASTE_TREATMENT--INCINRT_EGY, dcid:sdg/EN_MWT_TREATV.WASTE_TREATMENT--LANDFIL, dcid:sdg/EN_MWT_TREATV.WASTE_TREATMENT--LANDFILCTL, dcid:sdg/EN_MWT_TREATV.WASTE_TREATMENT--OTHERWM +name: Municipal waste treated by type of treatment by Type of waste treatment +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_NAA_PLAN.001 +member: dcid:sdg/EN_NAA_PLAN +name: Countries with national adaptation plans +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_NAA_PLAN_DV.001 +member: dcid:sdg/EN_NAA_PLAN_DV +name: Least developed countries and small island developing States with national adaptation plans +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_NACOM_AIP.001 +member: dcid:sdg/EN_NACOM_AIP.REPORT_ORDINAL--EIGHTH +name: Countries with national communications, Annex I Parties to the United Nations Framework Convention on Climate Change by Report +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_NACOM_NAIP.001 +member: dcid:sdg/EN_NACOM_NAIP.REPORT_ORDINAL--FIFTH, dcid:sdg/EN_NACOM_NAIP.REPORT_ORDINAL--FIRST, dcid:sdg/EN_NACOM_NAIP.REPORT_ORDINAL--FOURTH, dcid:sdg/EN_NACOM_NAIP.REPORT_ORDINAL--SECOND, dcid:sdg/EN_NACOM_NAIP.REPORT_ORDINAL--SIXTH, dcid:sdg/EN_NACOM_NAIP.REPORT_ORDINAL--THIRD +name: Countries with national communications, non-Annex I Parties by Report +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_NACOM_NAIP_DV.001 +member: dcid:sdg/EN_NACOM_NAIP_DV.REPORT_ORDINAL--FIFTH, dcid:sdg/EN_NACOM_NAIP_DV.REPORT_ORDINAL--FIRST, dcid:sdg/EN_NACOM_NAIP_DV.REPORT_ORDINAL--FOURTH, dcid:sdg/EN_NACOM_NAIP_DV.REPORT_ORDINAL--SECOND, dcid:sdg/EN_NACOM_NAIP_DV.REPORT_ORDINAL--THIRD +name: Least developed countries and small island developing States with national communications, non-Annex I Parties to the United Nations Framework Convention on Climate Change by Report +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_NAD_CONTR.001 +member: dcid:sdg/EN_NAD_CONTR.REPORT_ORDINAL--FIRST, dcid:sdg/EN_NAD_CONTR.REPORT_ORDINAL--SECOND +name: Countries with nationally determined contributions by Report +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_NAD_CONTR_DV.001 +member: dcid:sdg/EN_NAD_CONTR_DV.REPORT_ORDINAL--FIRST, dcid:sdg/EN_NAD_CONTR_DV.REPORT_ORDINAL--SECOND +name: Least developed countries and small island developing States with nationally determined contributions by Report +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_REF_WASCOL.001 +member: dcid:sdg/EN_REF_WASCOL +name: Municipal Solid Waste collection coverage +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_RSRV_MNWAC.001 +member: dcid:sdg/EN_RSRV_MNWAC +name: Change in minimum reservoir water area +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_RSRV_MNWAN.001 +member: dcid:sdg/EN_RSRV_MNWAN +name: Minimum reservoir water area +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_RSRV_MNWAP.001 +member: dcid:sdg/EN_RSRV_MNWAP +name: Minimum reservoir water area as a proportion of total land area +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_RSRV_MXWAN.001 +member: dcid:sdg/EN_RSRV_MXWAN +name: Maxiumum reservoir water area +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_RSRV_MXWAP.001 +member: dcid:sdg/EN_RSRV_MXWAP +name: Maximum reservoir water area as a proportion of total land area +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.001 +member: dcid:sdg/EN_SCP_ECSYBA +name: Countries using ecosystem-based approaches to managing marine areas +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.002 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG, dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG, dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLDV +name: Countries using ecosystem-based approaches to managing marine areas by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.003 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--380_C01 +name: Countries using ecosystem-based approaches to managing marine areas (ADRIATIC, https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/europe/italy/#1668646611801-1bba7d03-5e19) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.004 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--384_C01 +name: Countries using ecosystem-based approaches to managing marine areas (AEP MANAGEMENT PLAN FOR THE CÔTE D’IVOIRE BEACH SEINE FISHERY, PHASE 2, https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/africa/cote-divoire/#1667408017749-174e0caa-f6db1701873244450) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.005 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--031_C01 +name: Countries using ecosystem-based approaches to managing marine areas (Absheron National Park, https://nationalparks.az/) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.006 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLDV__MARINE_SPATATIAL_PLAN--124_C01 +name: Countries using ecosystem-based approaches to managing marine areas (Anguniaqvia niqiyuam MPA Management Plan, https://www.dfo-mpo.gc.ca/oceans/mpa-zpm/anguniaqvia-niqiqyuam/index-eng.html) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.007 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLDV__MARINE_SPATATIAL_PLAN--124_C02 +name: Countries using ecosystem-based approaches to managing marine areas (Banc-des-Américains MPA, https://www.dfo-mpo.gc.ca/oceans/mpa-zpm/american-americains/index-eng.html) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.008 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--124_C03 +name: Countries using ecosystem-based approaches to managing marine areas (Basin Head MPA Operational Management Plan 2021-2026, https://www.dfo-mpo.gc.ca/oceans/publications/basinhead-management-gestion-2021-2026/index-eng.html) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.009 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--124_C04 +name: Countries using ecosystem-based approaches to managing marine areas (Beafort Sea Integrated Management Area, https://www.dfo-mpo.gc.ca/oceans/management-gestion/beaufort-eng.html) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.010 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--218_C01 +name: Countries using ecosystem-based approaches to managing marine areas (COASTAL AND MARINE SPATIAL PLAN 2017-2030 (2017), https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/americas/ecuador/) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.011 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--764_C01 +name: Countries using ecosystem-based approaches to managing marine areas (CORAL REEF MANAGEMENT PLAN: KOH LAN, KOHKHOK AND KOH SAK, https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/asia/thailand/#1668566003904-24e6cdbd-ef11) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.012 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--214_C01 +name: Countries using ecosystem-based approaches to managing marine areas (Constitución de la Reública Dominicana, https://presidencia.gob.do/sites/default/files/statics/transparencia/base-legal/Constitucion-de-la-Republica-Dominicana-2015-actualizada.pdf) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.013 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--516_C01 +name: Countries using ecosystem-based approaches to managing marine areas (DRAFT CENTRAL MARINE SPATIAL PLAN (2021), https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/africa/namibia/) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.014 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--208_C01 +name: Countries using ecosystem-based approaches to managing marine areas (Denmark\'s maritime spatial plan, https://havplan.dk/en/page/info) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.015 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--616_C06 +name: Countries using ecosystem-based approaches to managing marine areas (Detailed maritime spatial plan for waters adjacent to the seashore from ?eba to W?adys?awowo, https://www.umgdy.gov.pl/plany_morskie/projekt-planu-zagospodarowania-przestrzennego-dla-wod-przyleglych-do-brzegu-morskiego-na-odcinku-od-wladyslawowa-do-le) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.016 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--233_C01 +name: Countries using ecosystem-based approaches to managing marine areas (ESTONIAN MARITIME SPATIAL PLAN, https://www.fin.ee/en/state-local-governments-spacial-planning/spatial-planning/maritime-spatial-planning) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.017 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--826_C01 +name: Countries using ecosystem-based approaches to managing marine areas (East Marine Plans, East Marine Plans - GOV.UK (www.gov.uk)) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.018 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--124_C05 +name: Countries using ecosystem-based approaches to managing marine areas (Eastport: marine protected areas management plan: 2013-2018, https://cat.fsl-bsf.scitech.gc.ca/record=4067529&searchscope=06) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.019 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--124_C06 +name: Countries using ecosystem-based approaches to managing marine areas (Endeavour Hydrothermal Vents marine protected area management plan 2010-2015, https://cat.fsl-bsf.scitech.gc.ca/record=4016947&searchscope=06) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.020 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLDV__MARINE_SPATATIAL_PLAN--246_C01 +name: Countries using ecosystem-based approaches to managing marine areas (FINNISH MARITIME SPATIAL PLAN, https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/europe/finland/) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.021 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--100_C01 +name: Countries using ecosystem-based approaches to managing marine areas (Flood Risk Management Plan of the Black Sea River Basin District, https://www.bsbd.bg/bg/index_bg_2513977.html) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.022 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--384_C02 +name: Countries using ecosystem-based approaches to managing marine areas (GRAND-BASSAM MARINE AND COASTAL SPACE MANAGEMENT PLAN, https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/africa/cote-divoire/#1667408017749-174e0caa-f6db1701873244450) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.023 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--100_C02 +name: Countries using ecosystem-based approaches to managing marine areas (General development plans, https://www.mrrb.bg/bg/normativni-aktove/obsti-ustrojstveni-planove/) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.024 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--124_C07 +name: Countries using ecosystem-based approaches to managing marine areas (Gilbert Bay: marine protected area management plan: 2013-2018, https://cat.fsl-bsf.scitech.gc.ca/record=4067531&searchscope=06) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.025 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--752_C01 +name: Countries using ecosystem-based approaches to managing marine areas (Gulf of Bothnia - Maritime spatial plans, https://www.havochvatten.se/vagledning-foreskrifter-och-lagar/vagledningar/havsplaner/bottniska-viken.html) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.026 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--124_C08 +name: Countries using ecosystem-based approaches to managing marine areas (Gulf of St. Lawrence Integrated Management Area, https://www.dfo-mpo.gc.ca/oceans/management-gestion/gulf-golfe-eng.html) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.027 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--031_C02 +name: Countries using ecosystem-based approaches to managing marine areas (Gyzyl-Aghach National Park is the first Marine National Park in the Caspian region, https://nationalparks.az/) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.028 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLDV__MARINE_SPATATIAL_PLAN--233_C02 +name: Countries using ecosystem-based approaches to managing marine areas (HIIU COUNTY (HIIUMAA ISLAND AREA), https://maakonnaplaneering.ee/maakonna-planeeringud/hiiumaa/hiiu-mereala-maakonnaplaneering/) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.029 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLDV__MARINE_SPATATIAL_PLAN--124_C09 +name: Countries using ecosystem-based approaches to managing marine areas (Hecate Strait/Queen Charlotte Sound Glass Sponge Reefs Marine Protected Area, https://www.dfo-mpo.gc.ca/oceans/mpa-zpm/hecate-charlotte/index-eng.html) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.030 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--384_C03 +name: Countries using ecosystem-based approaches to managing marine areas (INTEGRATED COASTAL DEVELOPMENT AND MANAGEMENT PLAN, https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/africa/cote-divoire/#1667408017749-174e0caa-f6db1701873244450) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.031 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--528_C01 +name: Countries using ecosystem-based approaches to managing marine areas (INTEGRATED MANAGEMENT PLAN FOR THE NORTH SEA 2015, https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/europe/netherlands/#1667408007329-bfdd569b-ad8a1684312314410) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.032 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--578_C01 +name: Countries using ecosystem-based approaches to managing marine areas (INTEGRATED OCEAN MANAGEMENT PLAN FOR BARENTS SEA AND LOFETON ISLANDS (2006), https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/europe/norway/#1601637626255-3ce6d0a0-a36d16627293923771684314021752) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.033 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--578_C02 +name: Countries using ecosystem-based approaches to managing marine areas (INTEGRATED OCEAN MANAGEMENT PLAN FOR BARENTS SEA AND LOFETON ISLANDS (2011), https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/europe/norway/#1601637626255-3ce6d0a0-a36d16627293923771684314021752) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.034 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--578_C03 +name: Countries using ecosystem-based approaches to managing marine areas (INTEGRATED OCEAN MANAGEMENT PLAN FOR BARENTS SEA AND LOFETON ISLANDS (2015), https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/europe/norway/#1601637626255-3ce6d0a0-a36d16627293923771684314021752) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.035 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--578_C04 +name: Countries using ecosystem-based approaches to managing marine areas (INTEGRATED OCEAN MANAGEMENT PLAN FOR NORTH SEA (2013), https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/europe/norway/#1601637626255-3ce6d0a0-a36d16627293923771684314021752) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.036 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--578_C05 +name: Countries using ecosystem-based approaches to managing marine areas (INTEGRATED OCEAN MANAGEMENT PLAN FOR NORWEGIAN SEA (2009), https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/europe/norway/#1601637626255-3ce6d0a0-a36d16627293923771684314021752) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.037 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--578_C06 +name: Countries using ecosystem-based approaches to managing marine areas (INTEGRATED OCEAN MANAGEMENT PLAN FOR NORWEGIAN SEA (2017), https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/europe/norway/#1601637626255-3ce6d0a0-a36d16627293923771684314021752) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.038 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--360_C01 +name: Countries using ecosystem-based approaches to managing marine areas (INTERREGIONAL ZONING PLAN OF BONE BAY, https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/asia/indonesia/national-marine-spatial-plan/) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.039 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--360_C02 +name: Countries using ecosystem-based approaches to managing marine areas (INTERREGIONAL ZONING PLAN OF THE BANDA SEA, https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/asia/indonesia/national-marine-spatial-plan/) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.040 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--360_C03 +name: Countries using ecosystem-based approaches to managing marine areas (INTERREGIONAL ZONING PLAN OF THE FLORES SEA, https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/asia/indonesia/national-marine-spatial-plan/) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.041 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--360_C04 +name: Countries using ecosystem-based approaches to managing marine areas (INTERREGIONAL ZONING PLAN OF THE MALACCA STRAIT, https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/asia/indonesia/national-marine-spatial-plan/) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.042 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--360_C05 +name: Countries using ecosystem-based approaches to managing marine areas (INTERREGIONAL ZONING PLAN OF THE MALUKU SEA, https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/asia/indonesia/national-marine-spatial-plan/) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.043 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--360_C06 +name: Countries using ecosystem-based approaches to managing marine areas (INTERREGIONAL ZONING PLAN OF THE NATUNA – NORTH NATUNA SEA, https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/asia/indonesia/national-marine-spatial-plan/) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.044 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--360_C07 +name: Countries using ecosystem-based approaches to managing marine areas (INTERREGIONAL ZONING PLAN OF THE SULAWESI SEA, https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/asia/indonesia/national-marine-spatial-plan/) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.045 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--360_C08 +name: Countries using ecosystem-based approaches to managing marine areas (INTERREGIONAL ZONING PLAN OF TOMINI BAY, https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/asia/indonesia/national-marine-spatial-plan/) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.046 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--380_C02 +name: Countries using ecosystem-based approaches to managing marine areas (IONIAN, https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/europe/italy/#1668646611801-1bba7d03-5e19) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.047 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--376_C01 +name: Countries using ecosystem-based approaches to managing marine areas (ISRAEL’S MEDITERRANEAN WATERS, https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/asia/israel/) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.048 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--276_C01 +name: Countries using ecosystem-based approaches to managing marine areas (Integrated coastal zone management in Germany, https://www.umweltbundesamt.de/en/integrated-coastal-zone-management-in-germany) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.049 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLDV__MARINE_SPATATIAL_PLAN--124_C10 +name: Countries using ecosystem-based approaches to managing marine areas (Laurentian Channel MPA management plan, https://www.dfo-mpo.gc.ca/oceans/mpa-zpm/laurentian-laurentien/index-eng.html) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.050 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_INTPREP__MARINE_SPATATIAL_PLAN--480_C01 +name: Countries using ecosystem-based approaches to managing marine areas (MARINE SPATIAL PLAN FOR THE EXCLUSIVE ECONOMIC ZONE OF THE REPUBLIC OF MAURITIUS, https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/africa/mauritius/) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.051 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--764_C02 +name: Countries using ecosystem-based approaches to managing marine areas (MARINE SPATIAL PLANNING IN KOH SI CHANG, https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/asia/thailand/#1668566003904-24e6cdbd-ef11) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.052 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_INTPREP__MARINE_SPATATIAL_PLAN--764_C03 +name: Countries using ecosystem-based approaches to managing marine areas (MARINE SPATIAL PLANNING IN PHANG NGA BAY, https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/asia/thailand/#1668566003904-24e6cdbd-ef11) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.053 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--508_C01 +name: Countries using ecosystem-based approaches to managing marine areas (MARITIME SPATIAL PLAN (POEM), https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/africa/mozambique/) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.054 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--642_C01 +name: Countries using ecosystem-based approaches to managing marine areas (MARITIME SPATIAL PLAN OF ROMANIA (DRAFT), https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/europe/romania/) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.055 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--724_C01 +name: Countries using ecosystem-based approaches to managing marine areas (MARITIME SPATIAL PLANS OF THE FIVE SPANISH MARINE SUBDIVISIONS (2023), https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/europe/spain/) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.056 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_INTPREP__MARINE_SPATATIAL_PLAN--831_C01 +name: Countries using ecosystem-based approaches to managing marine areas (Marine Spatial Planning is being prepared for but the work has not yet been initiated) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.057 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--100_C03 +name: Countries using ecosystem-based approaches to managing marine areas (Marine Strategy of the Republic of Bulgaria, https://www.bsbd.bg/bg/m_env_and_action.html) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.058 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--616_C01 +name: Countries using ecosystem-based approaches to managing marine areas (Maritime Spatial Plan for Szczecinski and Kamienski Lagoons, https://www.ums.gov.pl/plany-morskie/147-projekty-planow-zagospodarowania-przestrzennego-polskich-obszarow-morskich-morskich-wod-wewnetrznych-dla-zalewu-szczecinskiego-i-zalewu-kamienskieg) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.059 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--428_C01 +name: Countries using ecosystem-based approaches to managing marine areas (Maritime Spatial Plan for the Marine Inland Waters, Territorial Sea and Exclusive Economic Zone Waters of the Republic of Latvia, https://drive.google.com/file/d/1mKigVjv6N03cjgPkwR5RSItcQezsn5zY/view) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.060 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--100_C04 +name: Countries using ecosystem-based approaches to managing marine areas (Maritime Spatial Plan of the Republic of Bulgaria, https://www.mrrb.bg/bg/morski-prostranstven-plan-na-republika-bulgariya-2021-2035-g/) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.061 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--276_C02 +name: Countries using ecosystem-based approaches to managing marine areas (Maritime Spatial Plan, https://www.bsh.de/EN/TOPICS/Offshore/Maritime_spatial_planning/Maritime_Spatial_Plan_2021/maritime-spatial-plan-2021_node.html) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.062 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--616_C03 +name: Countries using ecosystem-based approaches to managing marine areas (Maritime Spatial Plans for Vistula Lagoon, https://www.umgdy.gov.pl/plany_morskie/projekt-planu-zagospodarowania-przestrzennego-zalewu-wislanego/) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.063 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--616_C02 +name: Countries using ecosystem-based approaches to managing marine areas (Maritime spatial plan for the internal marine waters, the territorial sea and the exclusive economic zone on a scale of 1: 200, 000, https://dziennikustaw.gov.pl/DU/2021/935) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.064 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--124_C11 +name: Countries using ecosystem-based approaches to managing marine areas (Musquash Estuary: a management plan for the marine protected area and administered intertidal area, https://cat.fsl-bsf.scitech.gc.ca/record=4041841&searchscope=06) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.065 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--120_C01 +name: Countries using ecosystem-based approaches to managing marine areas (NATIONAL ACTION PLAN FOR THE MANAGEMENT OF MARINE AND COASTAL AREAS: IMPLEMENTATION OF INTEGRATED COASTAL ZONE MANAGEMENT (ICZM) IN THE KRIBI-CAMPO REGION, https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/africa/cameroon/) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.066 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--620_C01 +name: Countries using ecosystem-based approaches to managing marine areas (NATIONAL MARITIME SPATIAL PLANNING SITUATION PLAN (2019)) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.067 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--528_C02 +name: Countries using ecosystem-based approaches to managing marine areas (NORTH SEA PROGRAMME (2022), https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/europe/netherlands/#1667408007329-bfdd569b-ad8a1684312314410) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.068 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--578_C07 +name: Countries using ecosystem-based approaches to managing marine areas (NORWAYS INTEGRATED OCEAN MANAGEMENT PLANS, BARENTS SEA, LOFOTEN AREA; THE NORWEGIAN SEA; AND THE NORTH SEA AND SKAGERRAK (2020), https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/europe/norway/#1601637626255-3ce6d0a0-a36d16627293923771684314) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.069 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--036_C01 +name: Countries using ecosystem-based approaches to managing marine areas (NSW coastal management framework, https://www.environment.nsw.gov.au/topics/water/coasts/coastal-management/framework) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.070 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--100_C05 +name: Countries using ecosystem-based approaches to managing marine areas (Natura 2000 network in Bulgaria, https://natura2000.egov.bg/EsriBg.Natura.Public.Web.App/) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.071 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--826_C02 +name: Countries using ecosystem-based approaches to managing marine areas (North East Marine Plans, https://www.gov.uk/government/publications/the-north-east-marine-plans-documents) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.072 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--752_C02 +name: Countries using ecosystem-based approaches to managing marine areas (North Sea marine spatial planning, https://www.havochvatten.se/vagledning-foreskrifter-och-lagar/vagledningar/havsplaner/vasterhavet.html) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.073 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--826_C03 +name: Countries using ecosystem-based approaches to managing marine areas (North West Marine Plans, The North West Marine Plans Documents - GOV.UK (www.gov.uk)) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.074 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--024_C01 +name: Countries using ecosystem-based approaches to managing marine areas (PLANO DE ORDENAMENTO DO ESPAÇO MARINHO (2023), https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/africa/angola/) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.075 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--528_C03 +name: Countries using ecosystem-based approaches to managing marine areas (POLICY DOCUMENT ON THE NORTH SEA 2009-2015 (SECTION 5.6 OF THE NATIONAL WATER PLAN) (2009), https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/europe/netherlands/#1667408007329-bfdd569b-ad8a1684312314410) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.076 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--528_C04 +name: Countries using ecosystem-based approaches to managing marine areas (POLICY DOCUMENT ON THE NORTH SEA 2016-2021 (APPENDIX 2 TO THE NATIONAL WATER PLAN) (2016), https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/europe/netherlands/#1667408007329-bfdd569b-ad8a1684312314410) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.077 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--170_C02 +name: Countries using ecosystem-based approaches to managing marine areas (POMIUAC ALTA GUAJIRA : Plan de Ordenación y Manejo Integrado de la Unidad Ambiental Costera de la Alta Guajira) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.078 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--170_C03 +name: Countries using ecosystem-based approaches to managing marine areas (POMIUAC BAUDÓ-SAN JUAN: Plan de Ordenación y Manejo Integrado de la Unidad Ambiental Costera Baudó - San Juan, https://codechoco.gov.co) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.079 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--170_C04 +name: Countries using ecosystem-based approaches to managing marine areas (POMIUAC CARIBE INSULAR : Plan de Ordenación y Manejo Integrado de la Unidad Ambiental Caribe Insular, https://www.coralina.gov.co) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.080 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--170_C05 +name: Countries using ecosystem-based approaches to managing marine areas (POMIUAC DARIEN: Plan de Ordenación y Manejo Integrado de la Unidad Ambiental Costera del Darién, https://codechoco.gov.co) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.081 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--170_C06 +name: Countries using ecosystem-based approaches to managing marine areas (POMIUAC LLAS: Plan de Ordenación y Manejo Integrado de la Unidad Ambiental Costera Llanura Aluvial del Sur, https://crc.gov.co) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.082 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--170_C07 +name: Countries using ecosystem-based approaches to managing marine areas (POMIUAC MAGDALENA : Plan de Ordenación y Manejo Integrado de la Unidad Ambiental Costera del RÃ\xado Magdalena, complejo Canal del Dique - Sistema Lagunar de la Ciénaga Grande de Santa Marta, https://www.parquesnacionales.gov.co) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.083 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--170_C08 +name: Countries using ecosystem-based approaches to managing marine areas (POMIUAC MALAGA-BUENAVENTURA : Plan de Ordenación y Manejo Integrado de la Unidad Ambiental Costera del Complejo de Málaga - Buenaventura, https://www.cvc.gov.co) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.084 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--170_C09 +name: Countries using ecosystem-based approaches to managing marine areas (POMIUAC VNSNSM : Plan de Ordenación y Manejo Integrado de la Unidad Ambiental Costera de la Vertiente Norte de La Sierra Nevada de Santa Marta, https://www.corpamag.gov.co) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.085 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--170_C10 +name: Countries using ecosystem-based approaches to managing marine areas (POMIUACPNCh: Plan de Ordenación y Manejo Integrado de la Unidad Ambiental Costera PacÃ\xadfico Norte Chocoano, https://codechoco.gov.co) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.086 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--705_C01 +name: Countries using ecosystem-based approaches to managing marine areas (POMORSKI PROSTORSKI NA?RT SLOVENIJE / MARITIME SPATIAL PLAN OF SLOVENIA (2021), http://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/europe/slovenia/) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.087 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--124_C12 +name: Countries using ecosystem-based approaches to managing marine areas (Pacific North Coast Integrated Management Area, https://www.dfo-mpo.gc.ca/oceans/management-gestion/pncima-zgicnp-eng.html) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.088 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLDV__MARINE_SPATATIAL_PLAN--124_C13 +name: Countries using ecosystem-based approaches to managing marine areas (Pikialasorsuaq (North Water Polynya), https://www.dfo-mpo.gc.ca/oceans/management-gestion/pikialasorsuaq-eng.html) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.089 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--124_C14 +name: Countries using ecosystem-based approaches to managing marine areas (Placentia Bay/Grand Banks Integrated Management Plan, https://www.dfo-mpo.gc.ca/oceans/management-gestion/placentia-eng.html) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.090 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--170_C01 +name: Countries using ecosystem-based approaches to managing marine areas (Plan 5: POMIUAC MORROSQUILLO: Plan de Ordenación y Manejo Integrado de la Unidad Ambiental Costera de Estuarina del rÃ\xado Sinú y el Golfo de Morrosquillo, https://carsucre.gov.co) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.091 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--214_C02 +name: Countries using ecosystem-based approaches to managing marine areas (Plan-de-Accion-Nacional-para-la-Gestion-Integral-de-Residuos-Marinos, https://ambiente.gob.do/wpfd_file/plan-de-accion-nacional-para-la-gestion-integral-de-residuos-marinos/) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.092 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--214_C03 +name: Countries using ecosystem-based approaches to managing marine areas (Planeación estratégica, https://anamar.gob.do/transparencia/index.php/plan-estrategico/planeacion-estrategica) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.093 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_INTPREP__MARINE_SPATATIAL_PLAN--076_C01 +name: Countries using ecosystem-based approaches to managing marine areas (Planejamento Espacial Marinho, https://www.marinha.mil.br/secirm/psrm/pem) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.094 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLDV__MARINE_SPATATIAL_PLAN--233_C03 +name: Countries using ecosystem-based approaches to managing marine areas (PÄRNU COUNTY (PÄRNU BAY AREA), https://maakonnaplaneering.ee/maakonna-planeeringud/parnumaa/parnu-mereala-maakonnaplaneering/) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.095 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_INTPREP__MARINE_SPATATIAL_PLAN--450_C01 +name: Countries using ecosystem-based approaches to managing marine areas (REGIONAL MARINE SPATIAL PLAN 2022-2025, https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/africa/madagascar/) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.096 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--360_C09 +name: Countries using ecosystem-based approaches to managing marine areas (REGULATION OF GOVERNMENT NO. 32 YEAR 2019 ON NATIONAL MARINE SPATIAL PLANNING (2019), https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/asia/indonesia/national-marine-spatial-plan/) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.097 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--360_C10 +name: Countries using ecosystem-based approaches to managing marine areas (REGULATION OF PRESIDENT NO. 3 YEAR 2022 ON INTERREGIONAL ZONING PLAN OF JAVA SEA (2022), https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/asia/indonesia/national-marine-spatial-plan/) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.098 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--360_C11 +name: Countries using ecosystem-based approaches to managing marine areas (REGULATION OF PRESIDENT NO. 83 YEAR 2020 ON INTERREGIONAL ZONING PLAN OF MAKASSAR STRAIT (2020), https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/asia/indonesia/national-marine-spatial-plan/) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.099 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--056_C01 +name: Countries using ecosystem-based approaches to managing marine areas (ROYAL DECREE ESTABLISHING A MARINE SPATIAL PLAN, https://www.ejustice.just.fgov.be/mopdf/2014/03/28_1.pdf#Page2) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.100 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--056_C02 +name: Countries using ecosystem-based approaches to managing marine areas (ROYAL DECREE ESTABLISHING THE MARINE SPATIAL PLANNING FOR THE PERIOD 2020 TO 2026 IN THE BELGIAN SEA-AREAS, https://www.health.belgium.be/en/royal-decree-msp-2020-english-courtesy-translation) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.101 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--100_C06 +name: Countries using ecosystem-based approaches to managing marine areas (River Basin Management Plans of the Black Sea River Basin District, https://www.bsbd.bg/bg/index_bg_5493788.html) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.102 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLDV__MARINE_SPATATIAL_PLAN--690_C01 +name: Countries using ecosystem-based approaches to managing marine areas (SEYCHELLES MARINE SPATIAL PLAN (SMSP), https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/africa/seychelles/) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.103 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--124_C16 +name: Countries using ecosystem-based approaches to managing marine areas (SGaan Kinghlas–Bowie Seamount Gin siigee tl’a damaan kinggangs gin k’aalaagangs Marine Protected Area Management Plan 2019, https://www.dfo-mpo.gc.ca/oceans/publications/sk-b-managementplan-plangestion/page01-eng.html) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.104 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_INTPREP__MARINE_SPATATIAL_PLAN--710_C01 +name: Countries using ecosystem-based approaches to managing marine areas (SOUTHERN MARINE AREA PLAN (THE DRAFTING OF THE PLAN WILL COMMENCE IN APRIL 2023), https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/africa/south-africa/#1667408007329-bfdd569b-ad8a) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.105 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--031_C03 +name: Countries using ecosystem-based approaches to managing marine areas (Samur-Yalama National Park, https://nationalparks.az/) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.106 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--124_C15 +name: Countries using ecosystem-based approaches to managing marine areas (Scotian Shelf, Atlantic Coast and Bay of Fundy regional oceans plan, https://www.dfo-mpo.gc.ca/oceans/management-gestion/scotian-ecossais-eng.html) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.107 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--826_C04 +name: Countries using ecosystem-based approaches to managing marine areas (South East Marine Plan) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.108 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--826_C05 +name: Countries using ecosystem-based approaches to managing marine areas (South Marine Plans, South Marine Plans - GOV.UK (www.gov.uk)) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.109 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--826_C06 +name: Countries using ecosystem-based approaches to managing marine areas (South West Marine Plans, The South West Marine Plans Documents - GOV.UK (www.gov.uk)) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.110 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--616_C04 +name: Countries using ecosystem-based approaches to managing marine areas (Spatial Plans for port area waters Szczecin, ?winouj?cie, Police, Dziwnów, Trzebie?, ?eba, Ustka, Rowy, Ko?obrzeg, Dar?owo, D?wirzyno, Elbl?g, Gda?sk, Gdynia, Hel, W?adys?awowo) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.111 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLDV__MARINE_SPATATIAL_PLAN--124_C17 +name: Countries using ecosystem-based approaches to managing marine areas (St. Anns Bank MPA, https://www.dfo-mpo.gc.ca/oceans/mpa-zpm/stanns-sainteanne/index-eng.html) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.112 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--100_C07 +name: Countries using ecosystem-based approaches to managing marine areas (Strategies, programs and plans, https://www.mrrb.bg/bg/normativni-aktove/strategii-programi-i-planove/) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.113 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--380_C03 +name: Countries using ecosystem-based approaches to managing marine areas (TYRRHENIAN, https://www.mspglobal2030.org/msp-roadmap/msp-around-the-world/europe/italy/#1668646611801-1bba7d03-5e19) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.114 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--124_C18 +name: Countries using ecosystem-based approaches to managing marine areas (Tarium Niryutait marine protected area: management plan, https://cat.fsl-bsf.scitech.gc.ca/record=4059552&searchscope=06) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.115 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--752_C03 +name: Countries using ecosystem-based approaches to managing marine areas (The Baltic Sea spatial planning, https://www.havochvatten.se/vagledning-foreskrifter-och-lagar/vagledningar/havsplaner/ostersjon.html) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.116 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_IMP_ADMNG__MARINE_SPATATIAL_PLAN--124_C19 +name: Countries using ecosystem-based approaches to managing marine areas (The Gully: marine protected area management plan, https://cat.fsl-bsf.scitech.gc.ca/record=4083556&searchscope=06) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.117 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--682_C01 +name: Countries using ecosystem-based approaches to managing marine areas (The National center for wildlife already with other entities build the Road map of protected area to achive 2030 vision for the Kingdom) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_ECSYBA.118 +member: dcid:sdg/EN_SCP_ECSYBA.LEVEL_STATUS--LI_PLA_DSG__MARINE_SPATATIAL_PLAN--616_C05 +name: Countries using ecosystem-based approaches to managing marine areas (The detailed maritime spatial plan for Gda?sk Bay, https://www.umgdy.gov.pl/plany_morskie/szczegolowy-projekt-planu-zagospodarowania-przestrzennego-zatoki-gdanskiej/) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_FRMN.001 +member: dcid:sdg/EN_SCP_FRMN +name: Number of companies publishing sustainability reports with disclosure by dimension +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_FRMN.002 +member: dcid:sdg/EN_SCP_FRMN.ECONOMIC_ACTIVITY--ISIC4_A, dcid:sdg/EN_SCP_FRMN.ECONOMIC_ACTIVITY--ISIC4_B, dcid:sdg/EN_SCP_FRMN.ECONOMIC_ACTIVITY--ISIC4_C, dcid:sdg/EN_SCP_FRMN.ECONOMIC_ACTIVITY--ISIC4_F, dcid:sdg/EN_SCP_FRMN.ECONOMIC_ACTIVITY--ISIC4_G, dcid:sdg/EN_SCP_FRMN.ECONOMIC_ACTIVITY--ISIC4_H, dcid:sdg/EN_SCP_FRMN.ECONOMIC_ACTIVITY--ISIC4_I, dcid:sdg/EN_SCP_FRMN.ECONOMIC_ACTIVITY--ISIC4_J, dcid:sdg/EN_SCP_FRMN.ECONOMIC_ACTIVITY--ISIC4_K, dcid:sdg/EN_SCP_FRMN.ECONOMIC_ACTIVITY--ISIC4_L, dcid:sdg/EN_SCP_FRMN.ECONOMIC_ACTIVITY--ISIC4_M, dcid:sdg/EN_SCP_FRMN.ECONOMIC_ACTIVITY--ISIC4_N, dcid:sdg/EN_SCP_FRMN.ECONOMIC_ACTIVITY--ISIC4_P, dcid:sdg/EN_SCP_FRMN.ECONOMIC_ACTIVITY--ISIC4_Q, dcid:sdg/EN_SCP_FRMN.ECONOMIC_ACTIVITY--ISIC4_R, dcid:sdg/EN_SCP_FRMN.ECONOMIC_ACTIVITY--ISIC4_S +name: Number of companies publishing sustainability reports with disclosure by dimension by Major division of ISIC Rev. 4 +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_SCP_FSHGDP.001 +member: dcid:sdg/EN_SCP_FSHGDP +name: Sustainable fisheries as a proportion of GDP +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_TWT_GENV.001 +member: dcid:sdg/EN_TWT_GENV +name: Total waste generation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_TWT_GENV.002 +member: dcid:sdg/EN_TWT_GENV.ECONOMIC_ACTIVITY--ISIC4_A, dcid:sdg/EN_TWT_GENV.ECONOMIC_ACTIVITY--ISIC4_B, dcid:sdg/EN_TWT_GENV.ECONOMIC_ACTIVITY--ISIC4_C, dcid:sdg/EN_TWT_GENV.ECONOMIC_ACTIVITY--ISIC4_D, dcid:sdg/EN_TWT_GENV.ECONOMIC_ACTIVITY--ISIC4_F, dcid:sdg/EN_TWT_GENV.ECONOMIC_ACTIVITY--ISIC4_S, dcid:sdg/EN_TWT_GENV.ECONOMIC_ACTIVITY--ISIC4_T +name: Total waste generation by Major division of ISIC Rev. 4 +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_URB_OPENSP.001 +member: dcid:sdg/EN_URB_OPENSP +name: Average share of the built-up area of cities that is open space for public use for all +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_WBE_HMWTL.001 +member: dcid:sdg/EN_WBE_HMWTL +name: Extent of human made wetlands +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_WBE_INWTL.001 +member: dcid:sdg/EN_WBE_INWTL +name: Extent of inland wetlands +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_WBE_MANGC.001 +member: dcid:sdg/EN_WBE_MANGC +name: Mangrove total area change +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_WBE_MANGN.001 +member: dcid:sdg/EN_WBE_MANGN +name: Mangrove area +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_WBE_NDQTGRW.001 +member: dcid:sdg/EN_WBE_NDQTGRW +name: Quantity of nationally derived groundwater +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_WBE_NDQTRVR.001 +member: dcid:sdg/EN_WBE_NDQTRVR +name: Quantity of nationally derived water fromrivers +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_WBE_WTLN.001 +member: dcid:sdg/EN_WBE_WTLN +name: Wetlands area +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_WBE_WTLP.001 +member: dcid:sdg/EN_WBE_WTLP +name: Wetlands area as a proportion of total land area +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_WWT_GEN.001 +member: dcid:sdg/EN_WWT_GEN +name: Total wastewater generated +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_WWT_GEN.002 +member: dcid:sdg/EN_WWT_GEN.ECONOMIC_ACTIVITY--HH +name: Total wastewater generated by Private households +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_WWT_GEN.003 +member: dcid:sdg/EN_WWT_GEN.ECONOMIC_ACTIVITY--ISIC4_A, dcid:sdg/EN_WWT_GEN.ECONOMIC_ACTIVITY--ISIC4_B, dcid:sdg/EN_WWT_GEN.ECONOMIC_ACTIVITY--ISIC4_C, dcid:sdg/EN_WWT_GEN.ECONOMIC_ACTIVITY--ISIC4_D, dcid:sdg/EN_WWT_GEN.ECONOMIC_ACTIVITY--ISIC4_E, dcid:sdg/EN_WWT_GEN.ECONOMIC_ACTIVITY--ISIC4_F +name: Total wastewater generated by Major division of ISIC Rev. 4 +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_WWT_GEN.004 +member: dcid:sdg/EN_WWT_GEN.ECONOMIC_ACTIVITY--ISIC4_BTFXE, dcid:sdg/EN_WWT_GEN.ECONOMIC_ACTIVITY--ISIC4_GTS, dcid:sdg/EN_WWT_GEN.ECONOMIC_ACTIVITY--ISIC4_GTS_HH +name: Total wastewater generated by Sector +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_WWT_TREAT.001 +member: dcid:sdg/EN_WWT_TREAT, dcid:sdg/EN_WWT_TREAT.ECONOMIC_ACTIVITY--ISIC4_BTFXE +name: Total wastewater treated +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_WWT_TREATR.001 +member: dcid:sdg/EN_WWT_TREATR, dcid:sdg/EN_WWT_TREATR.ECONOMIC_ACTIVITY--ISIC4_BTFXE +name: Proportion of wastewater treated +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_WWT_TREATR_SF.001 +member: dcid:sdg/EN_WWT_TREATR_SF, dcid:sdg/EN_WWT_TREATR_SF.ECONOMIC_ACTIVITY--ISIC4_BTFXE +name: Proportion of wastewater safely treated +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_WWT_TREAT_SF.001 +member: dcid:sdg/EN_WWT_TREAT_SF, dcid:sdg/EN_WWT_TREAT_SF.ECONOMIC_ACTIVITY--ISIC4_BTFXE +name: Total wastewater safely treated +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGEN_WWT_WWDS.001 +member: dcid:sdg/EN_WWT_WWDS +name: Proportion of safely treated domestic wastewater flows +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_BDY_ABT2NP.001 +member: dcid:sdg/ER_BDY_ABT2NP +name: Countries that established national targets in accordance with Aichi Biodiversity Target 2 of the Strategic Plan for Biodiversity 2011-2020 in their National Biodiversity Strategy and Action Plans +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_BDY_ABT2NP.002 +member: dcid:sdg/ER_BDY_ABT2NP.LEVEL_STATUS--ABT2ACHIEVE, dcid:sdg/ER_BDY_ABT2NP.LEVEL_STATUS--ABT2DIGRESS, dcid:sdg/ER_BDY_ABT2NP.LEVEL_STATUS--ABT2EXCEED, dcid:sdg/ER_BDY_ABT2NP.LEVEL_STATUS--ABT2INSUFNT, dcid:sdg/ER_BDY_ABT2NP.LEVEL_STATUS--ABT2NONTLT, dcid:sdg/ER_BDY_ABT2NP.LEVEL_STATUS--ABT2NOPROG +name: Countries that established national targets in accordance with Aichi Biodiversity Target 2 of the Strategic Plan for Biodiversity 2011-2020 in their National Biodiversity Strategy and Action Plans by Status of national target +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_BDY_SEEA.001 +member: dcid:sdg/ER_BDY_SEEA +name: Countries with integrated biodiversity values into national accounting and reporting systems, defined as implementation of the System of Environmental-Economic Accounting +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_BDY_SEEA.002 +member: dcid:sdg/ER_BDY_SEEA.LEVEL_STATUS--LS_COMP, dcid:sdg/ER_BDY_SEEA.LEVEL_STATUS--LS_COMPDISSE, dcid:sdg/ER_BDY_SEEA.LEVEL_STATUS--LS_DISSEM +name: Countries with integrated biodiversity values into national accounting and reporting systems, defined as implementation of the System of Environmental-Economic Accounting by Status +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_CBD_ABSCLRHS.001 +member: dcid:sdg/ER_CBD_ABSCLRHS +name: Countries that have legislative, administrative and policy framework or measures reported to the Access and Benefit-Sharing Clearing-House +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_CBD_NAGOYA.001 +member: dcid:sdg/ER_CBD_NAGOYA +name: Countries that are parties to the Nagoya Protocol +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_CBD_ORSPGRFA.001 +member: dcid:sdg/ER_CBD_ORSPGRFA +name: Countries that have legislative, administrative and policy framework or measures reported through the Online Reporting System on Compliance of the International Treaty on Plant Genetic Resources for Food and Agriculture (PGRFA) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_CBD_PTYPGRFA.001 +member: dcid:sdg/ER_CBD_PTYPGRFA +name: Countries that are contracting Parties to the International Treaty on Plant Genetic Resources for Food and Agriculture (PGRFA) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_CBD_SMTA.001 +member: dcid:sdg/ER_CBD_SMTA +name: Total reported number of Standard Material Transfer Agreements (SMTAs) transferring plant genetic resources for food and agriculture to the country +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_FFS_CMPT_CD.001 +member: dcid:sdg/ER_FFS_CMPT_CD +name: Fossil-fuel subsidies (consumption and production) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_FFS_CMPT_GDP.001 +member: dcid:sdg/ER_FFS_CMPT_GDP +name: Fossil-fuel subsidies (consumption and production) as a proportion of total GDP +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_FFS_CMPT_PC_CD.001 +member: dcid:sdg/ER_FFS_CMPT_PC_CD +name: Fossil-fuel subsidies (consumption and production) per capita +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_GRF_ANIMKPT.001 +member: dcid:sdg/ER_GRF_ANIMKPT +name: Number of local breeds kept in the country +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_GRF_ANIMKPT_TRB.001 +member: dcid:sdg/ER_GRF_ANIMKPT_TRB +name: Number of transboundary breeds (including extinct ones) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_GRF_ANIMRCNTN.001 +member: dcid:sdg/ER_GRF_ANIMRCNTN +name: Number of local breeds for which sufficient genetic resources are stored for reconstitution +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_GRF_ANIMRCNTN_TRB.001 +member: dcid:sdg/ER_GRF_ANIMRCNTN_TRB +name: Number of transboundary breeds for which sufficient genetic resources are stored for reconstitution +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_GRF_PLNTSTOR.001 +member: dcid:sdg/ER_GRF_PLNTSTOR +name: Plant genetic resources accessions stored ex situ +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_H2O_FWTL.001 +member: dcid:sdg/ER_H2O_FWTL +name: Proportion of fish stocks within biologically sustainable levels (not overexploited) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_H2O_IWRMD.001 +member: dcid:sdg/ER_H2O_IWRMD +name: Degree of implementation of integrated water resources management +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_H2O_IWRMD_EE.001 +member: dcid:sdg/ER_H2O_IWRMD_EE +name: Degree of implementation of integrated water resources management: enabling environment +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_H2O_IWRMD_FI.001 +member: dcid:sdg/ER_H2O_IWRMD_FI +name: Degree of implementation of integrated water resources management: financing +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_H2O_IWRMD_IP.001 +member: dcid:sdg/ER_H2O_IWRMD_IP +name: Degree of implementation of integrated water resources management: institutions and participation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_H2O_IWRMD_MI.001 +member: dcid:sdg/ER_H2O_IWRMD_MI +name: Degree of implementation of integrated water resources management: management instruments +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_H2O_IWRMP.001 +member: dcid:sdg/ER_H2O_IWRMP.LEVEL_STATUS--HIGIMP, dcid:sdg/ER_H2O_IWRMP.LEVEL_STATUS--LOWIMP, dcid:sdg/ER_H2O_IWRMP.LEVEL_STATUS--MHIGIMP, dcid:sdg/ER_H2O_IWRMP.LEVEL_STATUS--MLOWIMP, dcid:sdg/ER_H2O_IWRMP.LEVEL_STATUS--VHIGIMP, dcid:sdg/ER_H2O_IWRMP.LEVEL_STATUS--VLOWIMP +name: Proportion of countries by category of implementation of integrated water resources management (IWRM) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_H2O_PARTIC.001 +member: dcid:sdg/ER_H2O_PARTIC.URBANIZATION--R +name: Proportion of countries with high level of users/communities participating in planning programs in rural drinking-water supply by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_H2O_PRDU.001 +member: dcid:sdg/ER_H2O_PRDU.URBANIZATION--R +name: Countries with procedures in law or policy for participation by service users/communities in planning program in rural drinking-water supply by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_H2O_PROCED.001 +member: dcid:sdg/ER_H2O_PROCED.URBANIZATION--R +name: Proportion of countries with clearly defined procedures in law or policy for participation by service users/communities in planning program in rural drinking-water supply by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_H2O_RURP.001 +member: dcid:sdg/ER_H2O_RURP.URBANIZATION--R +name: Countries with users/communities participating in planning programs in rural drinking-water supply, by level of participation by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_H2O_STRESS.001 +member: dcid:sdg/ER_H2O_STRESS +name: Level of water stress: freshwater withdrawal as a proportion of available freshwater resources +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_H2O_STRESS.002 +member: dcid:sdg/ER_H2O_STRESS.ECONOMIC_ACTIVITY--ISIC4_A01_A0210_A0322, dcid:sdg/ER_H2O_STRESS.ECONOMIC_ACTIVITY--ISIC4_BTFXE, dcid:sdg/ER_H2O_STRESS.ECONOMIC_ACTIVITY--ISIC4_GTT +name: Level of water stress: freshwater withdrawal as a proportion of available freshwater resources by Sector +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_H2O_WUEYST.001 +member: dcid:sdg/ER_H2O_WUEYST +name: Water use efficiency +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_H2O_WUEYST.002 +member: dcid:sdg/ER_H2O_WUEYST.ECONOMIC_ACTIVITY--ISIC4_A01_A0210_A0322, dcid:sdg/ER_H2O_WUEYST.ECONOMIC_ACTIVITY--ISIC4_BTFXE, dcid:sdg/ER_H2O_WUEYST.ECONOMIC_ACTIVITY--ISIC4_GTT +name: Water use efficiency by Sector +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_IAS_GLOFUN.001 +member: dcid:sdg/ER_IAS_GLOFUN +name: Recipient countries of global funding with access to any funding from global financial mechanisms for projects related to invasive alien species  management +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_IAS_GLOFUNP.001 +member: dcid:sdg/ER_IAS_GLOFUNP +name: Proportion of recipient countries of global funding with access to any funding from global financial mechanisms for projects related to invasive alien species  management +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_IAS_LEGIS.001 +member: dcid:sdg/ER_IAS_LEGIS +name: Countriees with a legislation, regulation, or act related to the prevention of introduction and management of Invasive Alien Species +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_IAS_NATBUD.001 +member: dcid:sdg/ER_IAS_NATBUD +name: Countries with an allocation from the national budget to manage the threat of invasive alien species +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_IAS_NATBUDP.001 +member: dcid:sdg/ER_IAS_NATBUDP +name: Proportion of countries with allocation from the national budget to manage the threat of invasive alien species +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_IAS_NBSAP.001 +member: dcid:sdg/ER_IAS_NBSAP +name: Countries with alignment of National Biodiversity Strategy and Action Plan (NBSAP) targets to target 9 of the Aichi Biodiversity set out in the Strategic Plan for Biodiversity 2011-2020 +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_IAS_NBSAPP.001 +member: dcid:sdg/ER_IAS_NBSAPP +name: Proportion of countries with alignment of National Biodiversity Strategy and Action Plan (NBSAP) targets to target 9 of the Aichi Biodiversity target 9 set out in the Strategic Plan for Biodiversity 2011-2020 +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_MRN_MPA.001 +member: dcid:sdg/ER_MRN_MPA +name: Average proportion of Marine Key Biodiversity Areas (KBAs) covered by protected areas +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_MTN_DGRDA.001 +member: dcid:sdg/ER_MTN_DGRDA +name: Area of degraded mountain land +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_MTN_DGRDA.002 +member: dcid:sdg/ER_MTN_DGRDA.BIOCLIMATIC_BELT--ALPINE, dcid:sdg/ER_MTN_DGRDA.BIOCLIMATIC_BELT--MONTANE, dcid:sdg/ER_MTN_DGRDA.BIOCLIMATIC_BELT--NIVAL, dcid:sdg/ER_MTN_DGRDA.BIOCLIMATIC_BELT--REMAIN_MOUNT +name: Area of degraded mountain land by Bioclimatic belt +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_MTN_DGRDP.001 +member: dcid:sdg/ER_MTN_DGRDP +name: Proportion of degraded mountain land +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_MTN_DGRDP.002 +member: dcid:sdg/ER_MTN_DGRDP.BIOCLIMATIC_BELT--ALPINE, dcid:sdg/ER_MTN_DGRDP.BIOCLIMATIC_BELT--MONTANE, dcid:sdg/ER_MTN_DGRDP.BIOCLIMATIC_BELT--NIVAL, dcid:sdg/ER_MTN_DGRDP.BIOCLIMATIC_BELT--REMAIN_MOUNT +name: Proportion of degraded mountain land by Bioclimatic belt +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_MTN_GRNCOV.001 +member: dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--MGCI__BIOCLIMATIC_BELT--ALPINE, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--MGCI__BIOCLIMATIC_BELT--MONTANE, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--MGCI__BIOCLIMATIC_BELT--NIVAL, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--MGCI__BIOCLIMATIC_BELT--REMAIN_MOUNT +name: Area of mountain green cover by Type of land cover +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_MTN_GRNCOV.002 +member: dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--ART__BIOCLIMATIC_BELT--ALPINE, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--CRP__BIOCLIMATIC_BELT--ALPINE, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--GRS__BIOCLIMATIC_BELT--ALPINE, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--IWB__BIOCLIMATIC_BELT--ALPINE, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--PSG__BIOCLIMATIC_BELT--ALPINE, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--SAF__BIOCLIMATIC_BELT--ALPINE, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--SHR__BIOCLIMATIC_BELT--ALPINE, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--SNV__BIOCLIMATIC_BELT--ALPINE, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--TBL__BIOCLIMATIC_BELT--ALPINE, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--TRE__BIOCLIMATIC_BELT--ALPINE +name: Area of mountain green cover (Alpine) by Type of land cover +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_MTN_GRNCOV.003 +member: dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--ART__BIOCLIMATIC_BELT--MONTANE, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--CRP__BIOCLIMATIC_BELT--MONTANE, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--GRS__BIOCLIMATIC_BELT--MONTANE, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--IWB__BIOCLIMATIC_BELT--MONTANE, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--PSG__BIOCLIMATIC_BELT--MONTANE, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--SAF__BIOCLIMATIC_BELT--MONTANE, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--SHR__BIOCLIMATIC_BELT--MONTANE, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--SNV__BIOCLIMATIC_BELT--MONTANE, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--TBL__BIOCLIMATIC_BELT--MONTANE, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--TRE__BIOCLIMATIC_BELT--MONTANE +name: Area of mountain green cover (Montane) by Type of land cover +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_MTN_GRNCOV.004 +member: dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--ART__BIOCLIMATIC_BELT--NIVAL, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--CRP__BIOCLIMATIC_BELT--NIVAL, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--GRS__BIOCLIMATIC_BELT--NIVAL, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--IWB__BIOCLIMATIC_BELT--NIVAL, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--PSG__BIOCLIMATIC_BELT--NIVAL, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--SAF__BIOCLIMATIC_BELT--NIVAL, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--SHR__BIOCLIMATIC_BELT--NIVAL, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--SNV__BIOCLIMATIC_BELT--NIVAL, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--TBL__BIOCLIMATIC_BELT--NIVAL, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--TRE__BIOCLIMATIC_BELT--NIVAL +name: Area of mountain green cover (Nival) by Type of land cover +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_MTN_GRNCOV.005 +member: dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--ART__BIOCLIMATIC_BELT--REMAIN_MOUNT, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--CRP__BIOCLIMATIC_BELT--REMAIN_MOUNT, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--GRS__BIOCLIMATIC_BELT--REMAIN_MOUNT, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--IWB__BIOCLIMATIC_BELT--REMAIN_MOUNT, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--SAF__BIOCLIMATIC_BELT--REMAIN_MOUNT, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--SHR__BIOCLIMATIC_BELT--REMAIN_MOUNT, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--SNV__BIOCLIMATIC_BELT--REMAIN_MOUNT, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--TBL__BIOCLIMATIC_BELT--REMAIN_MOUNT, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--TRE__BIOCLIMATIC_BELT--REMAIN_MOUNT +name: Area of mountain green cover (Remaining mountain area) by Type of land cover +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_MTN_GRNCOV.006 +member: dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--ART, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--CRP, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--GRS, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--IWB, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--MGCI, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--PSG, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--SAF, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--SHR, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--SNV, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--TBL, dcid:sdg/ER_MTN_GRNCOV.LAND_COVER--TRE +name: Area of mountain green cover by Type of land cover +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_MTN_GRNCVI.001 +member: dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--MGCI__BIOCLIMATIC_BELT--ALPINE, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--MGCI__BIOCLIMATIC_BELT--MONTANE, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--MGCI__BIOCLIMATIC_BELT--NIVAL, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--MGCI__BIOCLIMATIC_BELT--REMAIN_MOUNT +name: Mountain Green Cover Index by Type of land cover +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_MTN_GRNCVI.002 +member: dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--ART__BIOCLIMATIC_BELT--ALPINE, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--CRP__BIOCLIMATIC_BELT--ALPINE, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--GRS__BIOCLIMATIC_BELT--ALPINE, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--IWB__BIOCLIMATIC_BELT--ALPINE, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--PSG__BIOCLIMATIC_BELT--ALPINE, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--SAF__BIOCLIMATIC_BELT--ALPINE, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--SHR__BIOCLIMATIC_BELT--ALPINE, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--SNV__BIOCLIMATIC_BELT--ALPINE, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--TBL__BIOCLIMATIC_BELT--ALPINE, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--TRE__BIOCLIMATIC_BELT--ALPINE +name: Mountain Green Cover Index (Alpine) by Type of land cover +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_MTN_GRNCVI.003 +member: dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--ART__BIOCLIMATIC_BELT--MONTANE, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--CRP__BIOCLIMATIC_BELT--MONTANE, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--GRS__BIOCLIMATIC_BELT--MONTANE, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--IWB__BIOCLIMATIC_BELT--MONTANE, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--PSG__BIOCLIMATIC_BELT--MONTANE, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--SAF__BIOCLIMATIC_BELT--MONTANE, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--SHR__BIOCLIMATIC_BELT--MONTANE, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--SNV__BIOCLIMATIC_BELT--MONTANE, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--TBL__BIOCLIMATIC_BELT--MONTANE, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--TRE__BIOCLIMATIC_BELT--MONTANE +name: Mountain Green Cover Index (Montane) by Type of land cover +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_MTN_GRNCVI.004 +member: dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--ART__BIOCLIMATIC_BELT--NIVAL, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--CRP__BIOCLIMATIC_BELT--NIVAL, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--GRS__BIOCLIMATIC_BELT--NIVAL, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--IWB__BIOCLIMATIC_BELT--NIVAL, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--PSG__BIOCLIMATIC_BELT--NIVAL, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--SAF__BIOCLIMATIC_BELT--NIVAL, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--SHR__BIOCLIMATIC_BELT--NIVAL, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--SNV__BIOCLIMATIC_BELT--NIVAL, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--TBL__BIOCLIMATIC_BELT--NIVAL, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--TRE__BIOCLIMATIC_BELT--NIVAL +name: Mountain Green Cover Index (Nival) by Type of land cover +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_MTN_GRNCVI.005 +member: dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--ART__BIOCLIMATIC_BELT--REMAIN_MOUNT, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--CRP__BIOCLIMATIC_BELT--REMAIN_MOUNT, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--GRS__BIOCLIMATIC_BELT--REMAIN_MOUNT, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--IWB__BIOCLIMATIC_BELT--REMAIN_MOUNT, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--PSG__BIOCLIMATIC_BELT--REMAIN_MOUNT, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--SAF__BIOCLIMATIC_BELT--REMAIN_MOUNT, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--SHR__BIOCLIMATIC_BELT--REMAIN_MOUNT, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--SNV__BIOCLIMATIC_BELT--REMAIN_MOUNT, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--TBL__BIOCLIMATIC_BELT--REMAIN_MOUNT, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--TRE__BIOCLIMATIC_BELT--REMAIN_MOUNT +name: Mountain Green Cover Index (Remaining mountain area) by Type of land cover +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_MTN_GRNCVI.006 +member: dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--ART, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--CRP, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--GRS, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--IWB, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--MGCI, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--PSG, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--SAF, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--SHR, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--SNV, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--TBL, dcid:sdg/ER_MTN_GRNCVI.LAND_COVER--TRE +name: Mountain Green Cover Index by Type of land cover +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_MTN_TOTL.001 +member: dcid:sdg/ER_MTN_TOTL +name: Mountain area +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_MTN_TOTL.002 +member: dcid:sdg/ER_MTN_TOTL.BIOCLIMATIC_BELT--ALPINE, dcid:sdg/ER_MTN_TOTL.BIOCLIMATIC_BELT--MONTANE, dcid:sdg/ER_MTN_TOTL.BIOCLIMATIC_BELT--NIVAL, dcid:sdg/ER_MTN_TOTL.BIOCLIMATIC_BELT--REMAIN_MOUNT +name: Mountain area by Bioclimatic belt +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_NOEX_LBREDN.001 +member: dcid:sdg/ER_NOEX_LBREDN +name: Number of local breeds (not extinct) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_PTD_FRHWTR.001 +member: dcid:sdg/ER_PTD_FRHWTR +name: Average proportion of Freshwater Key Biodiversity Areas (KBAs) covered by protected areas +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_PTD_MTN.001 +member: dcid:sdg/ER_PTD_MTN +name: Average proportion of Mountain Key Biodiversity Areas (KBAs) covered by protected areas +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_PTD_TERR.001 +member: dcid:sdg/ER_PTD_TERR +name: Average proportion of Terrestrial Key Biodiversity Areas (KBAs) covered by protected areas +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_RDE_OSEX.001 +member: dcid:sdg/ER_RDE_OSEX +name: National ocean science expenditure as a share of total research and development funding +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_REG_SSFRAR.001 +member: dcid:sdg/ER_REG_SSFRAR +name: Degree of application of a legal/regulatory/policy/institutional framework which recognizes and protects access rights for small-scale fisheries +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_REG_UNFCIM.001 +member: dcid:sdg/ER_REG_UNFCIM +name: Degree of implementation of international instruments aiming to combat illegal, unreported and unregulated fishing +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_RSK_LBREDS.001 +member: dcid:sdg/ER_RSK_LBREDS +name: Proportion of local breeds classified as being at risk of extinction as a share of local breeds with known level of extinction risk +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_RSK_LST.001 +member: dcid:sdg/ER_RSK_LST +name: Red List Index +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_UNCLOS_IMPLE.001 +member: dcid:sdg/ER_UNCLOS_IMPLE +name: Score for the implementation of UNCLOS and its two implementing agreements +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_UNCLOS_RATACC.001 +member: dcid:sdg/ER_UNCLOS_RATACC +name: Score for the ratification of and accession to UNCLOS and its two implementing agreements +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_UNK_LBREDN.001 +member: dcid:sdg/ER_UNK_LBREDN +name: Number of local breeds with unknown risk status +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_WAT_PART.001 +member: dcid:sdg/ER_WAT_PART +name: Countries with users/communities participating in planning programs in water resources planning and management +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_WAT_PARTIC.001 +member: dcid:sdg/ER_WAT_PARTIC +name: Proportion of countries with high level of users/communities participating in planning programs in water resources planning and management +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_WAT_PRDU.001 +member: dcid:sdg/ER_WAT_PRDU +name: Countries with procedures in law or policy for participation by service users/communities in planning program in water resources planning and management +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_WAT_PROCED.001 +member: dcid:sdg/ER_WAT_PROCED +name: Proportion of countries with clearly defined procedures in law or policy for participation by service users/communities in planning program in water resources planning and management +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGER_WLD_TRPOACH.001 +member: dcid:sdg/ER_WLD_TRPOACH.PRODUCT--CITES_ANIMALS, dcid:sdg/ER_WLD_TRPOACH.PRODUCT--CITES_PLANTS, dcid:sdg/ER_WLD_TRPOACH.PRODUCT--CITES_T +name: Proportion of traded wildlife that was poached or illicitly trafficked by Plants, animals and derived products +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGFB_ATM_TOTL.001 +member: dcid:sdg/FB_ATM_TOTL.AGE--Y_GE15 +name: Number of automated teller machines (ATMs) per 100, 000 adults (15 years old and over) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGFB_BNK_ACCSS.001 +member: dcid:sdg/FB_BNK_ACCSS.AGE--Y15T24, dcid:sdg/FB_BNK_ACCSS.AGE--Y_GE15, dcid:sdg/FB_BNK_ACCSS.AGE--Y_GE25 +name: Proportion of adults (15 years and older) with an account at a financial institution or mobile-money-service provider by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGFB_BNK_ACCSS.002 +member: dcid:sdg/FB_BNK_ACCSS.AGE--Y_GE15__EDUCATION_LEVEL--AGG_0_1, dcid:sdg/FB_BNK_ACCSS.AGE--Y_GE15__EDUCATION_LEVEL--AGG_GE2 +name: Proportion of adults (15 years and older) with an account at a financial institution or mobile-money-service provider by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGFB_BNK_ACCSS.003 +member: dcid:sdg/FB_BNK_ACCSS.AGE--Y_GE15__SEX--F, dcid:sdg/FB_BNK_ACCSS.AGE--Y_GE15__SEX--M +name: Proportion of adults (15 years and older) with an account at a financial institution or mobile-money-service provider by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGFB_BNK_ACCSS.004 +member: dcid:sdg/FB_BNK_ACCSS.AGE--Y_GE15__URBANIZATION--R, dcid:sdg/FB_BNK_ACCSS.AGE--Y_GE15__URBANIZATION--U +name: Proportion of adults (15 years and older) with an account at a financial institution or mobile-money-service provider by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGFB_BNK_ACCSS.005 +member: dcid:sdg/FB_BNK_ACCSS.AGE--Y_GE15__WEALTH_QUANTILE--BOTTOM40, dcid:sdg/FB_BNK_ACCSS.AGE--Y_GE15__WEALTH_QUANTILE--TOP60 +name: Proportion of adults (15 years and older) with an account at a financial institution or mobile-money-service provider by Quantile +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGFB_BNK_ACCSS_ILF.001 +member: dcid:sdg/FB_BNK_ACCSS_ILF.AGE--Y_GE15 +name: Proportion of adults (15 years and older) active in labor force with an account at a financial institution or mobile-money-service provider by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGFB_BNK_ACCSS_OLF.001 +member: dcid:sdg/FB_BNK_ACCSS_OLF.AGE--Y_GE15 +name: Proportion of adults (15 years and older) out of labor force with an account at a financial institution or mobile-money-service provider +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGFB_BNK_CAPA_ZS.001 +member: dcid:sdg/FB_BNK_CAPA_ZS +name: Bank capital to assets ratio +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGFB_CBK_BRCH.001 +member: dcid:sdg/FB_CBK_BRCH.AGE--Y_GE15 +name: Number of commercial bank branches per 100, 000 adults (15 years old and over) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGFC_ACC_SSID.001 +member: dcid:sdg/FC_ACC_SSID.ECONOMIC_ACTIVITY--ISIC4_C +name: Proportion of small-scale manufacturing industries with a loan or line of credit +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGFI_FSI_FSANL.001 +member: dcid:sdg/FI_FSI_FSANL +name: Non-performing loans to total gross loans +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGFI_FSI_FSERA.001 +member: dcid:sdg/FI_FSI_FSERA +name: Rate of return on assets +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGFI_FSI_FSKA.001 +member: dcid:sdg/FI_FSI_FSKA +name: Ratio of regulatory capital to assets +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGFI_FSI_FSKNL.001 +member: dcid:sdg/FI_FSI_FSKNL +name: Ratio of non-performing loans (net of provisions) to capital +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGFI_FSI_FSKRTC.001 +member: dcid:sdg/FI_FSI_FSKRTC +name: Ratio of regulatory tier-1 capital to risk-weighted assets +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGFI_FSI_FSLS.001 +member: dcid:sdg/FI_FSI_FSLS +name: Ratio of liquid assets to short term liabilities +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGFI_FSI_FSSNO.001 +member: dcid:sdg/FI_FSI_FSSNO +name: Ratio of net open position in foreign exchange to capital +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGFI_RES_TOTL_MO.001 +member: dcid:sdg/FI_RES_TOTL_MO +name: Total reserves in months of imports +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGFM_LBL_BMNY_IR_ZS.001 +member: dcid:sdg/FM_LBL_BMNY_IR_ZS +name: Ratio of broad money to total reserves +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGFM_LBL_BMNY_ZG.001 +member: dcid:sdg/FM_LBL_BMNY_ZG +name: Annual growth of broad money +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGFP_CPI_TOTL_ZG.001 +member: dcid:sdg/FP_CPI_TOTL_ZG +name: Annual inflation (consumer prices) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGGB_POP_SCIERD.001 +member: dcid:sdg/GB_POP_SCIERD +name: Number of full-time-equivalent researchers per million inhabitants +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGGB_XPD_CULNAT_PB.001 +member: dcid:sdg/GB_XPD_CULNAT_PB +name: Total public expenditure per capita on cultural and natural heritage at purchansing-power parity rates +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGGB_XPD_CULNAT_PB.002 +member: dcid:sdg/GB_XPD_CULNAT_PB.GOVERNMENT_LEVEL--LOCAL, dcid:sdg/GB_XPD_CULNAT_PB.GOVERNMENT_LEVEL--NAT, dcid:sdg/GB_XPD_CULNAT_PB.GOVERNMENT_LEVEL--REG +name: Total public expenditure per capita on cultural and natural heritage at purchansing-power parity rates by Government level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGGB_XPD_CULNAT_PBPV.001 +member: dcid:sdg/GB_XPD_CULNAT_PBPV +name: Total public and private expenditure per capita on cultural and natural heritage at purchasing-power parity rates +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGGB_XPD_CULNAT_PV.001 +member: dcid:sdg/GB_XPD_CULNAT_PV +name: Total private expenditure per capita spent on cultural and natural heritage at purchasing-power parity rates +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGGB_XPD_CUL_PBPV.001 +member: dcid:sdg/GB_XPD_CUL_PBPV +name: Total public and private expenditure per capita on cultural heritage at purchasing-power parity rates +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGGB_XPD_NAT_PBPV.001 +member: dcid:sdg/GB_XPD_NAT_PBPV +name: Total public and private expenditure per capita on natural heritage at purchasing-power parity rates +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGGB_XPD_RSDV.001 +member: dcid:sdg/GB_XPD_RSDV +name: Research and development expenditure as a proportion of GDP +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGGC_BAL_CASH_GD_ZS.001 +member: dcid:sdg/GC_BAL_CASH_GD_ZS +name: Cash surplus/deficit as a proportion of GDP +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGGC_GOB_TAXD.001 +member: dcid:sdg/GC_GOB_TAXD +name: Proportion of domestic budget funded by domestic taxes +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGGC_TAX_TOTL_GD_ZS.001 +member: dcid:sdg/GC_TAX_TOTL_GD_ZS +name: Tax revenue as a proportion of GDP +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGGF_COM_PPPI.001 +member: dcid:sdg/GF_COM_PPPI +name: Monetary amount committed to public-private partnerships for infrastructure in nominal terms +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGGF_COM_PPPI_KD.001 +member: dcid:sdg/GF_COM_PPPI_KD +name: Monetary amount committed to public-private partnerships for infrastructure in real terms +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGGF_FRN_FDI.001 +member: dcid:sdg/GF_FRN_FDI +name: Foreign direct investment (FDI) inflows +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGGF_XPD_GBPC.001 +member: dcid:sdg/GF_XPD_GBPC +name: Primary government expenditures as a proportion of original approved budget +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGGR_G14_GDP.001 +member: dcid:sdg/GR_G14_GDP +name: Total bugetary revenue of the central government as a proportion of GDP +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGGR_G14_XDC.001 +member: dcid:sdg/GR_G14_XDC +name: Total government revenue, in local currency +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIC_FRM_BRIB.001 +member: dcid:sdg/IC_FRM_BRIB +name: Incidence of bribery (proportion of firms experiencing at least one bribe payment request) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIC_GEN_MGTL.001 +member: dcid:sdg/IC_GEN_MGTL.AGE--Y_GE15__SEX--F +name: Proportion of women in managerial positions - previous definition (15 years old and over) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIC_GEN_MGTL_19ICLS.001 +member: dcid:sdg/IC_GEN_MGTL_19ICLS.AGE--Y_GE15__SEX--F +name: Proportion of women in managerial positions - current definition (15 years old and over) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIC_GEN_MGTN.001 +member: dcid:sdg/IC_GEN_MGTN.AGE--Y_GE15__SEX--F +name: Proportion of women in senior and middle management positions - previous definition (15 years old and over) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIC_GEN_MGTN_19ICLS.001 +member: dcid:sdg/IC_GEN_MGTN_19ICLS.AGE--Y_GE15__SEX--F +name: Proportion of women in senior and middle management positions - current definition (15 years old and over) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIQ_SPI_PIL4.001 +member: dcid:sdg/IQ_SPI_PIL4 +name: Performance index of data sources (Pillar 4 of Statistical Performance Indicators) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIQ_SPI_PIL5.001 +member: dcid:sdg/IQ_SPI_PIL5 +name: Performance index of data Infrastructure (Pillar 5 of Statistical Performance Indicators) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIS_RDP_FRGVOL.001 +member: dcid:sdg/IS_RDP_FRGVOL.TRANSPORT_MODE--AIR, dcid:sdg/IS_RDP_FRGVOL.TRANSPORT_MODE--IWW, dcid:sdg/IS_RDP_FRGVOL.TRANSPORT_MODE--RAI, dcid:sdg/IS_RDP_FRGVOL.TRANSPORT_MODE--ROA +name: Freight volume by Mode of transport +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIS_RDP_LULFRG.001 +member: dcid:sdg/IS_RDP_LULFRG.TRANSPORT_MODE--SEA +name: Freight loaded and unloaded, maritime transport +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIS_RDP_PFVOL.001 +member: dcid:sdg/IS_RDP_PFVOL.TRANSPORT_MODE--AIR, dcid:sdg/IS_RDP_PFVOL.TRANSPORT_MODE--RAI, dcid:sdg/IS_RDP_PFVOL.TRANSPORT_MODE--ROA +name: Passenger volume by Mode of transport +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIS_RDP_PORFVOL.001 +member: dcid:sdg/IS_RDP_PORFVOL.TRANSPORT_MODE--SEA +name: Container port traffic, maritime transport +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIT_MOB_2GNTWK.001 +member: dcid:sdg/IT_MOB_2GNTWK +name: Proportion of population covered by at least a 2G mobile network +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIT_MOB_3GNTWK.001 +member: dcid:sdg/IT_MOB_3GNTWK +name: Proportion of population covered by at least a 3G mobile network +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIT_MOB_4GNTWK.001 +member: dcid:sdg/IT_MOB_4GNTWK +name: Proportion of population covered by at least a 4G mobile network +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIT_MOB_OWN.001 +member: dcid:sdg/IT_MOB_OWN +name: Proportion of individuals who own a mobile telephone +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIT_MOB_OWN.002 +member: dcid:sdg/IT_MOB_OWN.SEX--F, dcid:sdg/IT_MOB_OWN.SEX--M +name: Proportion of individuals who own a mobile telephone by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIT_NET_BBND.001 +member: dcid:sdg/IT_NET_BBND +name: Fixed broadband subscriptions per 100 inhabitants +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIT_NET_BBND.002 +member: dcid:sdg/IT_NET_BBND.INTERNET_SPEED--KBPS256T2000, dcid:sdg/IT_NET_BBND.INTERNET_SPEED--MBPS2T10, dcid:sdg/IT_NET_BBND.INTERNET_SPEED--MBPS_GE10 +name: Fixed broadband subscriptions per 100 inhabitants by Internet speed +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIT_NET_BBNDN.001 +member: dcid:sdg/IT_NET_BBNDN +name: Number of fixed broadband subscriptions +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIT_NET_BBNDN.002 +member: dcid:sdg/IT_NET_BBNDN.INTERNET_SPEED--KBPS256T2000, dcid:sdg/IT_NET_BBNDN.INTERNET_SPEED--MBPS2T10, dcid:sdg/IT_NET_BBNDN.INTERNET_SPEED--MBPS_GE10 +name: Number of fixed broadband subscriptions by Internet speed +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIT_USE_ii99.001 +member: dcid:sdg/IT_USE_ii99 +name: Proportion of individuals using the Internet +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIT_USE_ii99.002 +member: dcid:sdg/IT_USE_ii99.SEX--F, dcid:sdg/IT_USE_ii99.SEX--M +name: Proportion of individuals using the Internet by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIU_COR_BRIB.001 +member: dcid:sdg/IU_COR_BRIB +name: Prevalence rate of bribery +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIU_COR_BRIB.002 +member: dcid:sdg/IU_COR_BRIB.SEX--F, dcid:sdg/IU_COR_BRIB.SEX--M +name: Prevalence rate of bribery by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIU_DMK_ICRS.001 +member: dcid:sdg/IU_DMK_ICRS +name: Proportion of population who believe decision-making is inclusive and responsive +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIU_DMK_ICRS.002 +member: dcid:sdg/IU_DMK_ICRS.AGE--Y0T24, dcid:sdg/IU_DMK_ICRS.AGE--Y25T34, dcid:sdg/IU_DMK_ICRS.AGE--Y35T44, dcid:sdg/IU_DMK_ICRS.AGE--Y45T54, dcid:sdg/IU_DMK_ICRS.AGE--Y55T64, dcid:sdg/IU_DMK_ICRS.AGE--Y_GE65 +name: Proportion of population who believe decision-making is inclusive and responsive by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIU_DMK_ICRS.003 +member: dcid:sdg/IU_DMK_ICRS.DISABILITY_STATUS--PD, dcid:sdg/IU_DMK_ICRS.DISABILITY_STATUS--PWD +name: Proportion of population who believe decision-making is inclusive and responsive by Disability status +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIU_DMK_ICRS.004 +member: dcid:sdg/IU_DMK_ICRS.EDUCATION_LEVEL--AGG_2T3, dcid:sdg/IU_DMK_ICRS.EDUCATION_LEVEL--AGG_5T8 +name: Proportion of population who believe decision-making is inclusive and responsive by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIU_DMK_ICRS.005 +member: dcid:sdg/IU_DMK_ICRS.EDUCATION_LEVEL--ISCED11_1 +name: Proportion of population who believe decision-making is inclusive and responsive by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIU_DMK_ICRS.006 +member: dcid:sdg/IU_DMK_ICRS.POPULATION_GROUP--COL_1, dcid:sdg/IU_DMK_ICRS.POPULATION_GROUP--COL_2, dcid:sdg/IU_DMK_ICRS.POPULATION_GROUP--INDIGENOUS_POPULATIONS, dcid:sdg/IU_DMK_ICRS.POPULATION_GROUP--LVA_0, dcid:sdg/IU_DMK_ICRS.POPULATION_GROUP--LVA_1, dcid:sdg/IU_DMK_ICRS.POPULATION_GROUP--LVA_2 +name: Proportion of population who believe decision-making is inclusive and responsive by Population group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIU_DMK_ICRS.007 +member: dcid:sdg/IU_DMK_ICRS.SEX--F, dcid:sdg/IU_DMK_ICRS.SEX--M +name: Proportion of population who believe decision-making is inclusive and responsive by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIU_DMK_ICRS.008 +member: dcid:sdg/IU_DMK_ICRS.URBANIZATION--R, dcid:sdg/IU_DMK_ICRS.URBANIZATION--U +name: Proportion of population who believe decision-making is inclusive and responsive by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIU_DMK_INCL.001 +member: dcid:sdg/IU_DMK_INCL +name: Proportion of population who believe decision-making is inclusive +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIU_DMK_INCL.002 +member: dcid:sdg/IU_DMK_INCL.AGE--Y0T24, dcid:sdg/IU_DMK_INCL.AGE--Y25T34, dcid:sdg/IU_DMK_INCL.AGE--Y35T44, dcid:sdg/IU_DMK_INCL.AGE--Y45T54, dcid:sdg/IU_DMK_INCL.AGE--Y55T64, dcid:sdg/IU_DMK_INCL.AGE--Y_GE65 +name: Proportion of population who believe decision-making is inclusive by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIU_DMK_INCL.003 +member: dcid:sdg/IU_DMK_INCL.DISABILITY_STATUS--PD, dcid:sdg/IU_DMK_INCL.DISABILITY_STATUS--PWD +name: Proportion of population who believe decision-making is inclusive by Disability status +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIU_DMK_INCL.004 +member: dcid:sdg/IU_DMK_INCL.EDUCATION_LEVEL--AGG_2T3, dcid:sdg/IU_DMK_INCL.EDUCATION_LEVEL--AGG_5T8 +name: Proportion of population who believe decision-making is inclusive by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIU_DMK_INCL.005 +member: dcid:sdg/IU_DMK_INCL.EDUCATION_LEVEL--ISCED11_1 +name: Proportion of population who believe decision-making is inclusive by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIU_DMK_INCL.006 +member: dcid:sdg/IU_DMK_INCL.POPULATION_GROUP--COL_1, dcid:sdg/IU_DMK_INCL.POPULATION_GROUP--COL_2, dcid:sdg/IU_DMK_INCL.POPULATION_GROUP--INDIGENOUS_POPULATIONS, dcid:sdg/IU_DMK_INCL.POPULATION_GROUP--LVA_0, dcid:sdg/IU_DMK_INCL.POPULATION_GROUP--LVA_1, dcid:sdg/IU_DMK_INCL.POPULATION_GROUP--LVA_2 +name: Proportion of population who believe decision-making is inclusive by Population group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIU_DMK_INCL.007 +member: dcid:sdg/IU_DMK_INCL.SEX--F, dcid:sdg/IU_DMK_INCL.SEX--M +name: Proportion of population who believe decision-making is inclusive by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIU_DMK_INCL.008 +member: dcid:sdg/IU_DMK_INCL.URBANIZATION--R, dcid:sdg/IU_DMK_INCL.URBANIZATION--U +name: Proportion of population who believe decision-making is inclusive by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIU_DMK_RESP.001 +member: dcid:sdg/IU_DMK_RESP +name: Proportion of population who believe decision-making is responsive +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIU_DMK_RESP.002 +member: dcid:sdg/IU_DMK_RESP.AGE--Y0T24, dcid:sdg/IU_DMK_RESP.AGE--Y25T34, dcid:sdg/IU_DMK_RESP.AGE--Y35T44, dcid:sdg/IU_DMK_RESP.AGE--Y45T54, dcid:sdg/IU_DMK_RESP.AGE--Y55T64, dcid:sdg/IU_DMK_RESP.AGE--Y_GE65 +name: Proportion of population who believe decision-making is responsive by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIU_DMK_RESP.003 +member: dcid:sdg/IU_DMK_RESP.DISABILITY_STATUS--PD, dcid:sdg/IU_DMK_RESP.DISABILITY_STATUS--PWD +name: Proportion of population who believe decision-making is responsive by Disability status +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIU_DMK_RESP.004 +member: dcid:sdg/IU_DMK_RESP.EDUCATION_LEVEL--AGG_2T3, dcid:sdg/IU_DMK_RESP.EDUCATION_LEVEL--AGG_5T8 +name: Proportion of population who believe decision-making is responsive by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIU_DMK_RESP.005 +member: dcid:sdg/IU_DMK_RESP.EDUCATION_LEVEL--ISCED11_1, dcid:sdg/IU_DMK_RESP.EDUCATION_LEVEL--ISCED11_3 +name: Proportion of population who believe decision-making is responsive by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIU_DMK_RESP.006 +member: dcid:sdg/IU_DMK_RESP.POPULATION_GROUP--COL_1, dcid:sdg/IU_DMK_RESP.POPULATION_GROUP--COL_2, dcid:sdg/IU_DMK_RESP.POPULATION_GROUP--INDIGENOUS_POPULATIONS, dcid:sdg/IU_DMK_RESP.POPULATION_GROUP--LVA_0, dcid:sdg/IU_DMK_RESP.POPULATION_GROUP--LVA_1, dcid:sdg/IU_DMK_RESP.POPULATION_GROUP--LVA_2, dcid:sdg/IU_DMK_RESP.POPULATION_GROUP--NZL_0, dcid:sdg/IU_DMK_RESP.POPULATION_GROUP--NZL_2, dcid:sdg/IU_DMK_RESP.POPULATION_GROUP--NZL_5 +name: Proportion of population who believe decision-making is responsive by Population group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIU_DMK_RESP.007 +member: dcid:sdg/IU_DMK_RESP.SEX--F, dcid:sdg/IU_DMK_RESP.SEX--M +name: Proportion of population who believe decision-making is responsive by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIU_DMK_RESP.008 +member: dcid:sdg/IU_DMK_RESP.URBANIZATION--R, dcid:sdg/IU_DMK_RESP.URBANIZATION--U +name: Proportion of population who believe decision-making is responsive by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGIU_DMK_RESP.009 +member: dcid:sdg/IU_DMK_RESP.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1 +name: Proportion of population who believe decision-making is responsive (Rural population with primary education) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGNE_CON_GOVT_KD_ZG.001 +member: dcid:sdg/NE_CON_GOVT_KD_ZG +name: Annual growth of final consumption expenditure of the general government +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGNE_CON_PRVT_KD_ZG.001 +member: dcid:sdg/NE_CON_PRVT_KD_ZG +name: Annual growth of final consumption expenditure of households and non-profit institutions serving households (NPISHs) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGNE_EXP_GNFS_KD_ZG.001 +member: dcid:sdg/NE_EXP_GNFS_KD_ZG +name: Annual growth of exports of goods and services +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGNE_GDI_TOTL_KD_ZG.001 +member: dcid:sdg/NE_GDI_TOTL_KD_ZG +name: Annual growth of the gross capital formation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGNE_IMP_GNFS_KD_ZG.001 +member: dcid:sdg/NE_IMP_GNFS_KD_ZG +name: Annual growth of imports of goods and services +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGNV_IND_SSIS.001 +member: dcid:sdg/NV_IND_SSIS.ECONOMIC_ACTIVITY--ISIC3_D, dcid:sdg/NV_IND_SSIS.ECONOMIC_ACTIVITY--ISIC4_C +name: Proportion of small-scale manufacturing industries in total manufacturing value added +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGNV_IND_TECH.001 +member: dcid:sdg/NV_IND_TECH.ECONOMIC_ACTIVITY--ISIC3_D, dcid:sdg/NV_IND_TECH.ECONOMIC_ACTIVITY--ISIC4_C +name: Proportion of medium and high-tech manufacturing value added in total value added +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGNY_GDP_MKTP_KD_ZG.001 +member: dcid:sdg/NY_GDP_MKTP_KD_ZG +name: Annual GDP growth +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGNY_GDP_PCAP.001 +member: dcid:sdg/NY_GDP_PCAP +name: Annual growth rate of real GDP per capita +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGPA_NUS_ATLS.001 +member: dcid:sdg/PA_NUS_ATLS +name: Alternative conversion factor used by the Development Economics Group (DEC) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGPD_AGR_LSFP.001 +member: dcid:sdg/PD_AGR_LSFP +name: Productivity of large-scale food producers (agricultural output per labour day at purchasing-power parity rates) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGPD_AGR_LSFP.002 +member: dcid:sdg/PD_AGR_LSFP.SEX--F, dcid:sdg/PD_AGR_LSFP.SEX--M +name: Productivity of large-scale food producers (agricultural output per labour day at purchasing-power parity rates) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGPD_AGR_SSFP.001 +member: dcid:sdg/PD_AGR_SSFP +name: Productivity of small-scale food producers (agricultural output per labour day at purchasing-power parity rates) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGPD_AGR_SSFP.002 +member: dcid:sdg/PD_AGR_SSFP.SEX--F, dcid:sdg/PD_AGR_SSFP.SEX--M +name: Productivity of small-scale food producers (agricultural output per labour day at purchasing-power parity rates) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSD_CPA_UPRDP.001 +member: dcid:sdg/SD_CPA_UPRDP +name: Countries that have national urban policies or regional development plans that respond to population dynamics, ensure balanced territorial development, and increase local fiscal space +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSD_MDP_ANDI.001 +member: dcid:sdg/SD_MDP_ANDI +name: Average proportion of deprivations experienced by multidimensionally poor people +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSD_MDP_ANDI.002 +member: dcid:sdg/SD_MDP_ANDI.URBANIZATION--R, dcid:sdg/SD_MDP_ANDI.URBANIZATION--U +name: Average proportion of deprivations experienced by multidimensionally poor people by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSD_MDP_ANDIHH.001 +member: dcid:sdg/SD_MDP_ANDIHH +name: Average share of weighted deprivations experienced by total households (intensity) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSD_MDP_ANDIHH.002 +member: dcid:sdg/SD_MDP_ANDIHH.URBANIZATION--R, dcid:sdg/SD_MDP_ANDIHH.URBANIZATION--U +name: Average share of weighted deprivations experienced by total households (intensity) by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSD_MDP_CSMP.001 +member: dcid:sdg/SD_MDP_CSMP.AGE--Y0T17 +name: Proportion of children living in child-specific multidimensional poverty (under 18 years old) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSD_MDP_CSMP.002 +member: dcid:sdg/SD_MDP_CSMP.AGE--Y0T17__URBANIZATION--R, dcid:sdg/SD_MDP_CSMP.AGE--Y0T17__URBANIZATION--U +name: Proportion of children living in child-specific multidimensional poverty (under 18 years old) by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSD_MDP_MUHHC.001 +member: dcid:sdg/SD_MDP_MUHHC +name: Proportion of households living in multidimensional poverty +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSD_MDP_MUHHC.002 +member: dcid:sdg/SD_MDP_MUHHC.URBANIZATION--R, dcid:sdg/SD_MDP_MUHHC.URBANIZATION--U +name: Proportion of households living in multidimensional poverty by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSD_XPD_ESED.001 +member: dcid:sdg/SD_XPD_ESED +name: Proportion of total government spending on essential services, education +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSD_XPD_MNPO.001 +member: dcid:sdg/SD_XPD_MNPO +name: Proportion of government spending in health, direct social transfers and education which benefit the monetary poor +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ACC_HNDWSH.001 +member: dcid:sdg/SE_ACC_HNDWSH.EDUCATION_LEVEL--ISCED11_1, dcid:sdg/SE_ACC_HNDWSH.EDUCATION_LEVEL--ISCED11_2, dcid:sdg/SE_ACC_HNDWSH.EDUCATION_LEVEL--ISCED11_3 +name: Proportion of schools with basic handwashing facilities by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ACS_CMPTR.001 +member: dcid:sdg/SE_ACS_CMPTR.EDUCATION_LEVEL--AGG_2T3 +name: Proportion of schools with access to computers for pedagogical purposes by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ACS_CMPTR.002 +member: dcid:sdg/SE_ACS_CMPTR.EDUCATION_LEVEL--ISCED11_1, dcid:sdg/SE_ACS_CMPTR.EDUCATION_LEVEL--ISCED11_2, dcid:sdg/SE_ACS_CMPTR.EDUCATION_LEVEL--ISCED11_3 +name: Proportion of schools with access to computers for pedagogical purposes by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ACS_ELECT.001 +member: dcid:sdg/SE_ACS_ELECT.EDUCATION_LEVEL--ISCED11_1, dcid:sdg/SE_ACS_ELECT.EDUCATION_LEVEL--ISCED11_2, dcid:sdg/SE_ACS_ELECT.EDUCATION_LEVEL--ISCED11_3 +name: Proportion of schools with access to electricity by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ACS_H2O.001 +member: dcid:sdg/SE_ACS_H2O.EDUCATION_LEVEL--ISCED11_1, dcid:sdg/SE_ACS_H2O.EDUCATION_LEVEL--ISCED11_2, dcid:sdg/SE_ACS_H2O.EDUCATION_LEVEL--ISCED11_3 +name: Proportion of schools with access to basic drinking water by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ACS_INTNT.001 +member: dcid:sdg/SE_ACS_INTNT.EDUCATION_LEVEL--AGG_2T3 +name: Proportion of schools with access to the internet for pedagogical purposes by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ACS_INTNT.002 +member: dcid:sdg/SE_ACS_INTNT.EDUCATION_LEVEL--ISCED11_1, dcid:sdg/SE_ACS_INTNT.EDUCATION_LEVEL--ISCED11_2, dcid:sdg/SE_ACS_INTNT.EDUCATION_LEVEL--ISCED11_3 +name: Proportion of schools with access to the internet for pedagogical purposes by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ACS_SANIT.001 +member: dcid:sdg/SE_ACS_SANIT.EDUCATION_LEVEL--ISCED11_1, dcid:sdg/SE_ACS_SANIT.EDUCATION_LEVEL--ISCED11_2, dcid:sdg/SE_ACS_SANIT.EDUCATION_LEVEL--ISCED11_3 +name: Proportion of schools with access to single-sex basic sanitation by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.001 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SKILL--DLDONLD, dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SKILL--FONLCRS, dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SKILL--GSINF, dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SKILL--GSPUR, dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SKILL--HLTHINF, dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SKILL--INTBNK, dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SKILL--ONLCNS, dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SKILL--ONLSFT, dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SKILL--SNTWK, dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SKILL--UPLD, dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SKILL--VOIP +name: Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old) by Type of skill +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.002 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SKILL--DLDONLD, dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SKILL--FONLCRS, dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SKILL--GSINF, dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SKILL--GSPUR, dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SKILL--HLTHINF, dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SKILL--INTBNK, dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SKILL--ONLCNS, dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SKILL--ONLSFT, dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SKILL--SNTWK, dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SKILL--UPLD, dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SKILL--VOIP +name: Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old) by Type of skill +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.003 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SKILL--DLDONLD, dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SKILL--FONLCRS, dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SKILL--GSINF, dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SKILL--GSPUR, dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SKILL--HLTHINF, dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SKILL--INTBNK, dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SKILL--ONLCNS, dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SKILL--ONLSFT, dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SKILL--SNTWK, dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SKILL--UPLD, dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SKILL--VOIP +name: Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over) by Type of skill +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.004 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SKILL--DLDONLD, dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SKILL--FONLCRS, dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SKILL--GSINF, dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SKILL--GSPUR, dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SKILL--HLTHINF, dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SKILL--INTBNK, dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SKILL--ONLCNS, dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SKILL--ONLSFT, dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SKILL--SNTWK, dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SKILL--UPLD, dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SKILL--VOIP +name: Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old) by Type of skill +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.005 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SKILL--ICT_ATCH, dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SKILL--ICT_CDV, dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SKILL--ICT_CPT, dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SKILL--ICT_PRGM, dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SKILL--ICT_PRVCY, dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SKILL--ICT_PST, dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SKILL--ICT_SCRTY, dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SKILL--ICT_SFWR, dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SKILL--ICT_SSHT, dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SKILL--ICT_TRFF, dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SKILL--ICT_VRFY +name: Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old) by Type of skill +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.006 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SKILL--ICT_ATCH, dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SKILL--ICT_CDV, dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SKILL--ICT_CPT, dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SKILL--ICT_PRGM, dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SKILL--ICT_PRVCY, dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SKILL--ICT_PST, dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SKILL--ICT_SCRTY, dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SKILL--ICT_SFWR, dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SKILL--ICT_SSHT, dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SKILL--ICT_TRFF, dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SKILL--ICT_VRFY +name: Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old) by Type of skill +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.007 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SKILL--ICT_ATCH, dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SKILL--ICT_CDV, dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SKILL--ICT_CPT, dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SKILL--ICT_PRGM, dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SKILL--ICT_PRVCY, dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SKILL--ICT_PST, dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SKILL--ICT_SCRTY, dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SKILL--ICT_SFWR, dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SKILL--ICT_SSHT, dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SKILL--ICT_TRFF, dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SKILL--ICT_VRFY +name: Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over) by Type of skill +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.008 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SKILL--ICT_ATCH, dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SKILL--ICT_CDV, dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SKILL--ICT_CPT, dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SKILL--ICT_PRGM, dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SKILL--ICT_PRVCY, dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SKILL--ICT_PST, dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SKILL--ICT_SCRTY, dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SKILL--ICT_SFWR, dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SKILL--ICT_SSHT, dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SKILL--ICT_TRFF, dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SKILL--ICT_VRFY +name: Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old) by Type of skill +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.009 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--F__SKILL--ICT_PRVCY, dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--M__SKILL--ICT_PRVCY +name: Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old, Changing privacy settings on your device, account or app to limit the sharing of personal data and information (e.g. name, contact information, photos)) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.010 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--F__SKILL--ICT_CDV, dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--M__SKILL--ICT_CDV +name: Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old, Connecting and installing new devices) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.011 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--F__SKILL--ICT_PST, dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--M__SKILL--ICT_PST +name: Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old, Creating electronic presentations with presentation software) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.012 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--F__SKILL--FONLCRS, dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--M__SKILL--FONLCRS +name: Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old, Doing a formal online course) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.013 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--F__SKILL--ICT_SFWR, dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--M__SKILL--ICT_SFWR +name: Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old, Finding, downloading, installing and configuring software) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.014 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--F__SKILL--GSINF, dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--M__SKILL--GSINF +name: Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old, Getting information about goods or services online) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.015 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--F__SKILL--SNTWK, dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--M__SKILL--SNTWK +name: Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old, Participating in social networks) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.016 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--F__SKILL--GSPUR, dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--M__SKILL--GSPUR +name: Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old, Purchasing or ordering goods or services using the Internet) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.017 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--F__SKILL--DLDONLD, dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--M__SKILL--DLDONLD +name: Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old, Reading or downloading on-line newspapers, magazines, or electronic books) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.018 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--F__SKILL--HLTHINF, dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--M__SKILL--HLTHINF +name: Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old, Seeking health information (on injury, disease, nutrition, etc.)) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.019 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--F__SKILL--ICT_ATCH, dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--M__SKILL--ICT_ATCH +name: Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old, Sending e-mails with attached files) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.020 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--F__SKILL--ICT_SCRTY, dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--M__SKILL--ICT_SCRTY +name: Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old, Setting up effective security measures (e.g. strong passwords, log-in attempt notification) to protect devices and online accounts) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.021 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--F__SKILL--ONLCNS, dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--M__SKILL--ONLCNS +name: Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old, Taking part in on-line consultations or voting to define civic or political issues) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.022 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--F__SKILL--VOIP, dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--M__SKILL--VOIP +name: Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old, Telephoning over the Internet/VoIP) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.023 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--F__SKILL--ICT_TRFF, dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--M__SKILL--ICT_TRFF +name: Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old, Transferring files between a computer and other devices) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.024 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--F__SKILL--UPLD, dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--M__SKILL--UPLD +name: Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old, Uploading self/user-created content to a website to be shared) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.025 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--F__SKILL--INTBNK, dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--M__SKILL--INTBNK +name: Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old, Using Internet banking) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.026 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--F__SKILL--ICT_SSHT, dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--M__SKILL--ICT_SSHT +name: Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old, Using basic arithmetic formula in a spreadsheet) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.027 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--F__SKILL--ICT_CPT, dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--M__SKILL--ICT_CPT +name: Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old, Using copy and paste tools to duplicate or move information within a document) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.028 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--F__SKILL--ONLSFT, dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--M__SKILL--ONLSFT +name: Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old, Using software run over the Internet for editing text documents, spreadsheets or presentations) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.029 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--F__SKILL--ICT_VRFY, dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--M__SKILL--ICT_VRFY +name: Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old, Verifying the reliability of information found online) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.030 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--F__SKILL--ICT_PRGM, dcid:sdg/SE_ADT_ACTS.AGE--Y15T24__SEX--M__SKILL--ICT_PRGM +name: Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old, Writing a computer program using a specialized programming language) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.031 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--F__SKILL--ICT_PRVCY, dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--M__SKILL--ICT_PRVCY +name: Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old, Changing privacy settings on your device, account or app to limit the sharing of personal data and information (e.g. name, contact information, photos)) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.032 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--F__SKILL--ICT_CDV, dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--M__SKILL--ICT_CDV +name: Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old, Connecting and installing new devices) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.033 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--F__SKILL--ICT_PST, dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--M__SKILL--ICT_PST +name: Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old, Creating electronic presentations with presentation software) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.034 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--F__SKILL--FONLCRS, dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--M__SKILL--FONLCRS +name: Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old, Doing a formal online course) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.035 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--F__SKILL--ICT_SFWR, dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--M__SKILL--ICT_SFWR +name: Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old, Finding, downloading, installing and configuring software) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.036 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--F__SKILL--GSINF, dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--M__SKILL--GSINF +name: Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old, Getting information about goods or services online) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.037 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--F__SKILL--SNTWK, dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--M__SKILL--SNTWK +name: Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old, Participating in social networks) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.038 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--F__SKILL--GSPUR, dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--M__SKILL--GSPUR +name: Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old, Purchasing or ordering goods or services using the Internet) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.039 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--F__SKILL--DLDONLD, dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--M__SKILL--DLDONLD +name: Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old, Reading or downloading on-line newspapers, magazines, or electronic books) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.040 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--F__SKILL--HLTHINF, dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--M__SKILL--HLTHINF +name: Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old, Seeking health information (on injury, disease, nutrition, etc.)) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.041 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--F__SKILL--ICT_ATCH, dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--M__SKILL--ICT_ATCH +name: Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old, Sending e-mails with attached files) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.042 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--F__SKILL--ICT_SCRTY, dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--M__SKILL--ICT_SCRTY +name: Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old, Setting up effective security measures (e.g. strong passwords, log-in attempt notification) to protect devices and online accounts) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.043 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--F__SKILL--ONLCNS, dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--M__SKILL--ONLCNS +name: Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old, Taking part in on-line consultations or voting to define civic or political issues) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.044 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--F__SKILL--VOIP, dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--M__SKILL--VOIP +name: Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old, Telephoning over the Internet/VoIP) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.045 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--F__SKILL--ICT_TRFF, dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--M__SKILL--ICT_TRFF +name: Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old, Transferring files between a computer and other devices) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.046 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--F__SKILL--UPLD, dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--M__SKILL--UPLD +name: Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old, Uploading self/user-created content to a website to be shared) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.047 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--F__SKILL--INTBNK, dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--M__SKILL--INTBNK +name: Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old, Using Internet banking) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.048 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--F__SKILL--ICT_SSHT, dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--M__SKILL--ICT_SSHT +name: Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old, Using basic arithmetic formula in a spreadsheet) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.049 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--F__SKILL--ICT_CPT, dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--M__SKILL--ICT_CPT +name: Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old, Using copy and paste tools to duplicate or move information within a document) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.050 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--F__SKILL--ONLSFT, dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--M__SKILL--ONLSFT +name: Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old, Using software run over the Internet for editing text documents, spreadsheets or presentations) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.051 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--F__SKILL--ICT_VRFY, dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--M__SKILL--ICT_VRFY +name: Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old, Verifying the reliability of information found online) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.052 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--F__SKILL--ICT_PRGM, dcid:sdg/SE_ADT_ACTS.AGE--Y25T74__SEX--M__SKILL--ICT_PRGM +name: Proportion of youth and adults with information and communications technology (ICT) skills (25 to 74 years old, Writing a computer program using a specialized programming language) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.053 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--F__SKILL--ICT_PRVCY, dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--M__SKILL--ICT_PRVCY +name: Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over, Changing privacy settings on your device, account or app to limit the sharing of personal data and information (e.g. name, contact information, photos)) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.054 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--F__SKILL--ICT_CDV, dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--M__SKILL--ICT_CDV +name: Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over, Connecting and installing new devices) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.055 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--F__SKILL--ICT_PST, dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--M__SKILL--ICT_PST +name: Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over, Creating electronic presentations with presentation software) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.056 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--F__SKILL--FONLCRS, dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--M__SKILL--FONLCRS +name: Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over, Doing a formal online course) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.057 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--F__SKILL--ICT_SFWR, dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--M__SKILL--ICT_SFWR +name: Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over, Finding, downloading, installing and configuring software) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.058 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--F__SKILL--GSINF, dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--M__SKILL--GSINF +name: Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over, Getting information about goods or services online) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.059 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--F__SKILL--SNTWK, dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--M__SKILL--SNTWK +name: Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over, Participating in social networks) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.060 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--F__SKILL--GSPUR, dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--M__SKILL--GSPUR +name: Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over, Purchasing or ordering goods or services using the Internet) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.061 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--F__SKILL--DLDONLD, dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--M__SKILL--DLDONLD +name: Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over, Reading or downloading on-line newspapers, magazines, or electronic books) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.062 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--F__SKILL--HLTHINF, dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--M__SKILL--HLTHINF +name: Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over, Seeking health information (on injury, disease, nutrition, etc.)) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.063 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--F__SKILL--ICT_ATCH, dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--M__SKILL--ICT_ATCH +name: Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over, Sending e-mails with attached files) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.064 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--F__SKILL--ICT_SCRTY, dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--M__SKILL--ICT_SCRTY +name: Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over, Setting up effective security measures (e.g. strong passwords, log-in attempt notification) to protect devices and online accounts) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.065 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--F__SKILL--ONLCNS, dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--M__SKILL--ONLCNS +name: Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over, Taking part in on-line consultations or voting to define civic or political issues) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.066 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--F__SKILL--VOIP, dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--M__SKILL--VOIP +name: Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over, Telephoning over the Internet/VoIP) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.067 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--F__SKILL--ICT_TRFF, dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--M__SKILL--ICT_TRFF +name: Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over, Transferring files between a computer and other devices) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.068 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--F__SKILL--UPLD, dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--M__SKILL--UPLD +name: Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over, Uploading self/user-created content to a website to be shared) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.069 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--F__SKILL--INTBNK, dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--M__SKILL--INTBNK +name: Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over, Using Internet banking) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.070 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--F__SKILL--ICT_SSHT, dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--M__SKILL--ICT_SSHT +name: Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over, Using basic arithmetic formula in a spreadsheet) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.071 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--F__SKILL--ICT_CPT, dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--M__SKILL--ICT_CPT +name: Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over, Using copy and paste tools to duplicate or move information within a document) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.072 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--F__SKILL--ONLSFT, dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--M__SKILL--ONLSFT +name: Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over, Using software run over the Internet for editing text documents, spreadsheets or presentations) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.073 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--F__SKILL--ICT_VRFY, dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--M__SKILL--ICT_VRFY +name: Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over, Verifying the reliability of information found online) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.074 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--F__SKILL--ICT_PRGM, dcid:sdg/SE_ADT_ACTS.AGE--Y_GE75__SEX--M__SKILL--ICT_PRGM +name: Proportion of youth and adults with information and communications technology (ICT) skills (75 years old and over, Writing a computer program using a specialized programming language) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.075 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--F__SKILL--ICT_PRVCY, dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--M__SKILL--ICT_PRVCY +name: Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old, Changing privacy settings on your device, account or app to limit the sharing of personal data and information (e.g. name, contact information, photos)) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.076 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--F__SKILL--ICT_CDV, dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--M__SKILL--ICT_CDV +name: Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old, Connecting and installing new devices) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.077 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--F__SKILL--ICT_PST, dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--M__SKILL--ICT_PST +name: Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old, Creating electronic presentations with presentation software) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.078 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--F__SKILL--FONLCRS, dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--M__SKILL--FONLCRS +name: Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old, Doing a formal online course) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.079 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--F__SKILL--ICT_SFWR, dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--M__SKILL--ICT_SFWR +name: Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old, Finding, downloading, installing and configuring software) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.080 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--F__SKILL--GSINF, dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--M__SKILL--GSINF +name: Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old, Getting information about goods or services online) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.081 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--F__SKILL--SNTWK, dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--M__SKILL--SNTWK +name: Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old, Participating in social networks) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.082 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--F__SKILL--GSPUR, dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--M__SKILL--GSPUR +name: Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old, Purchasing or ordering goods or services using the Internet) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.083 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--F__SKILL--DLDONLD, dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--M__SKILL--DLDONLD +name: Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old, Reading or downloading on-line newspapers, magazines, or electronic books) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.084 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--F__SKILL--HLTHINF, dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--M__SKILL--HLTHINF +name: Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old, Seeking health information (on injury, disease, nutrition, etc.)) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.085 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--F__SKILL--ICT_ATCH, dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--M__SKILL--ICT_ATCH +name: Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old, Sending e-mails with attached files) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.086 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--F__SKILL--ICT_SCRTY, dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--M__SKILL--ICT_SCRTY +name: Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old, Setting up effective security measures (e.g. strong passwords, log-in attempt notification) to protect devices and online accounts) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.087 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--F__SKILL--ONLCNS, dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--M__SKILL--ONLCNS +name: Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old, Taking part in on-line consultations or voting to define civic or political issues) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.088 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--F__SKILL--VOIP, dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--M__SKILL--VOIP +name: Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old, Telephoning over the Internet/VoIP) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.089 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--F__SKILL--ICT_TRFF, dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--M__SKILL--ICT_TRFF +name: Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old, Transferring files between a computer and other devices) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.090 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--F__SKILL--UPLD, dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--M__SKILL--UPLD +name: Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old, Uploading self/user-created content to a website to be shared) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.091 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--F__SKILL--INTBNK, dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--M__SKILL--INTBNK +name: Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old, Using Internet banking) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.092 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--F__SKILL--ICT_SSHT, dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--M__SKILL--ICT_SSHT +name: Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old, Using basic arithmetic formula in a spreadsheet) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.093 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--F__SKILL--ICT_CPT, dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--M__SKILL--ICT_CPT +name: Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old, Using copy and paste tools to duplicate or move information within a document) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.094 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--F__SKILL--ONLSFT, dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--M__SKILL--ONLSFT +name: Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old, Using software run over the Internet for editing text documents, spreadsheets or presentations) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.095 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--F__SKILL--ICT_VRFY, dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--M__SKILL--ICT_VRFY +name: Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old, Verifying the reliability of information found online) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.096 +member: dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--F__SKILL--ICT_PRGM, dcid:sdg/SE_ADT_ACTS.AGE--Y0T14__SEX--M__SKILL--ICT_PRGM +name: Proportion of youth and adults with information and communications technology (ICT) skills (under 15 years old, Writing a computer program using a specialized programming language) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.097 +member: dcid:sdg/SE_ADT_ACTS.SKILL--DLDONLD, dcid:sdg/SE_ADT_ACTS.SKILL--FONLCRS, dcid:sdg/SE_ADT_ACTS.SKILL--GSINF, dcid:sdg/SE_ADT_ACTS.SKILL--GSPUR, dcid:sdg/SE_ADT_ACTS.SKILL--HLTHINF, dcid:sdg/SE_ADT_ACTS.SKILL--INTBNK, dcid:sdg/SE_ADT_ACTS.SKILL--ONLCNS, dcid:sdg/SE_ADT_ACTS.SKILL--ONLSFT, dcid:sdg/SE_ADT_ACTS.SKILL--SNTWK, dcid:sdg/SE_ADT_ACTS.SKILL--UPLD, dcid:sdg/SE_ADT_ACTS.SKILL--VOIP +name: Proportion of youth and adults with information and communications technology (ICT) skills by Type of skill +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.098 +member: dcid:sdg/SE_ADT_ACTS.SKILL--ICT_ATCH, dcid:sdg/SE_ADT_ACTS.SKILL--ICT_CDV, dcid:sdg/SE_ADT_ACTS.SKILL--ICT_CPT, dcid:sdg/SE_ADT_ACTS.SKILL--ICT_PRGM, dcid:sdg/SE_ADT_ACTS.SKILL--ICT_PRVCY, dcid:sdg/SE_ADT_ACTS.SKILL--ICT_PST, dcid:sdg/SE_ADT_ACTS.SKILL--ICT_SCRTY, dcid:sdg/SE_ADT_ACTS.SKILL--ICT_SFWR, dcid:sdg/SE_ADT_ACTS.SKILL--ICT_SSHT, dcid:sdg/SE_ADT_ACTS.SKILL--ICT_TRFF, dcid:sdg/SE_ADT_ACTS.SKILL--ICT_VRFY +name: Proportion of youth and adults with information and communications technology (ICT) skills by Type of skill +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.099 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__SKILL--ICT_PRVCY, dcid:sdg/SE_ADT_ACTS.SEX--M__SKILL--ICT_PRVCY +name: Proportion of youth and adults with information and communications technology (ICT) skills (Changing privacy settings on your device, account or app to limit the sharing of personal data and information (e.g. name, contact information, photos)) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.100 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__SKILL--ICT_CDV, dcid:sdg/SE_ADT_ACTS.SEX--M__SKILL--ICT_CDV +name: Proportion of youth and adults with information and communications technology (ICT) skills (Connecting and installing new devices) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.101 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__SKILL--ICT_PST, dcid:sdg/SE_ADT_ACTS.SEX--M__SKILL--ICT_PST +name: Proportion of youth and adults with information and communications technology (ICT) skills (Creating electronic presentations with presentation software) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.102 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__SKILL--FONLCRS, dcid:sdg/SE_ADT_ACTS.SEX--M__SKILL--FONLCRS +name: Proportion of youth and adults with information and communications technology (ICT) skills (Doing a formal online course) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.103 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__SKILL--ICT_SFWR, dcid:sdg/SE_ADT_ACTS.SEX--M__SKILL--ICT_SFWR +name: Proportion of youth and adults with information and communications technology (ICT) skills (Finding, downloading, installing and configuring software) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.104 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__SKILL--GSINF, dcid:sdg/SE_ADT_ACTS.SEX--M__SKILL--GSINF +name: Proportion of youth and adults with information and communications technology (ICT) skills (Getting information about goods or services online) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.105 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__SKILL--SNTWK, dcid:sdg/SE_ADT_ACTS.SEX--M__SKILL--SNTWK +name: Proportion of youth and adults with information and communications technology (ICT) skills (Participating in social networks) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.106 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__SKILL--GSPUR, dcid:sdg/SE_ADT_ACTS.SEX--M__SKILL--GSPUR +name: Proportion of youth and adults with information and communications technology (ICT) skills (Purchasing or ordering goods or services using the Internet) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.107 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__SKILL--DLDONLD, dcid:sdg/SE_ADT_ACTS.SEX--M__SKILL--DLDONLD +name: Proportion of youth and adults with information and communications technology (ICT) skills (Reading or downloading on-line newspapers, magazines, or electronic books) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.108 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__SKILL--HLTHINF, dcid:sdg/SE_ADT_ACTS.SEX--M__SKILL--HLTHINF +name: Proportion of youth and adults with information and communications technology (ICT) skills (Seeking health information (on injury, disease, nutrition, etc.)) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.109 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__SKILL--ICT_ATCH, dcid:sdg/SE_ADT_ACTS.SEX--M__SKILL--ICT_ATCH +name: Proportion of youth and adults with information and communications technology (ICT) skills (Sending e-mails with attached files) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.110 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__SKILL--ICT_SCRTY, dcid:sdg/SE_ADT_ACTS.SEX--M__SKILL--ICT_SCRTY +name: Proportion of youth and adults with information and communications technology (ICT) skills (Setting up effective security measures (e.g. strong passwords, log-in attempt notification) to protect devices and online accounts) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.111 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__SKILL--ONLCNS, dcid:sdg/SE_ADT_ACTS.SEX--M__SKILL--ONLCNS +name: Proportion of youth and adults with information and communications technology (ICT) skills (Taking part in on-line consultations or voting to define civic or political issues) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.112 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__SKILL--VOIP, dcid:sdg/SE_ADT_ACTS.SEX--M__SKILL--VOIP +name: Proportion of youth and adults with information and communications technology (ICT) skills (Telephoning over the Internet/VoIP) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.113 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__SKILL--ICT_TRFF, dcid:sdg/SE_ADT_ACTS.SEX--M__SKILL--ICT_TRFF +name: Proportion of youth and adults with information and communications technology (ICT) skills (Transferring files between a computer and other devices) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.114 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__SKILL--UPLD, dcid:sdg/SE_ADT_ACTS.SEX--M__SKILL--UPLD +name: Proportion of youth and adults with information and communications technology (ICT) skills (Uploading self/user-created content to a website to be shared) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.115 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__SKILL--INTBNK, dcid:sdg/SE_ADT_ACTS.SEX--M__SKILL--INTBNK +name: Proportion of youth and adults with information and communications technology (ICT) skills (Using Internet banking) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.116 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__SKILL--ICT_SSHT, dcid:sdg/SE_ADT_ACTS.SEX--M__SKILL--ICT_SSHT +name: Proportion of youth and adults with information and communications technology (ICT) skills (Using basic arithmetic formula in a spreadsheet) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.117 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__SKILL--ICT_CPT, dcid:sdg/SE_ADT_ACTS.SEX--M__SKILL--ICT_CPT +name: Proportion of youth and adults with information and communications technology (ICT) skills (Using copy and paste tools to duplicate or move information within a document) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.118 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__SKILL--ONLSFT, dcid:sdg/SE_ADT_ACTS.SEX--M__SKILL--ONLSFT +name: Proportion of youth and adults with information and communications technology (ICT) skills (Using software run over the Internet for editing text documents, spreadsheets or presentations) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.119 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__SKILL--ICT_VRFY, dcid:sdg/SE_ADT_ACTS.SEX--M__SKILL--ICT_VRFY +name: Proportion of youth and adults with information and communications technology (ICT) skills (Verifying the reliability of information found online) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.120 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__SKILL--ICT_PRGM, dcid:sdg/SE_ADT_ACTS.SEX--M__SKILL--ICT_PRGM +name: Proportion of youth and adults with information and communications technology (ICT) skills (Writing a computer program using a specialized programming language) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.121 +member: dcid:sdg/SE_ADT_ACTS.URBANIZATION--R__SKILL--ICT_PRVCY, dcid:sdg/SE_ADT_ACTS.URBANIZATION--U__SKILL--ICT_PRVCY +name: Proportion of youth and adults with information and communications technology (ICT) skills (Changing privacy settings on your device, account or app to limit the sharing of personal data and information (e.g. name, contact information, photos)) by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.122 +member: dcid:sdg/SE_ADT_ACTS.URBANIZATION--R__SKILL--ICT_CDV, dcid:sdg/SE_ADT_ACTS.URBANIZATION--U__SKILL--ICT_CDV +name: Proportion of youth and adults with information and communications technology (ICT) skills (Connecting and installing new devices) by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.123 +member: dcid:sdg/SE_ADT_ACTS.URBANIZATION--R__SKILL--ICT_PST, dcid:sdg/SE_ADT_ACTS.URBANIZATION--U__SKILL--ICT_PST +name: Proportion of youth and adults with information and communications technology (ICT) skills (Creating electronic presentations with presentation software) by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.124 +member: dcid:sdg/SE_ADT_ACTS.URBANIZATION--R__SKILL--FONLCRS, dcid:sdg/SE_ADT_ACTS.URBANIZATION--U__SKILL--FONLCRS +name: Proportion of youth and adults with information and communications technology (ICT) skills (Doing a formal online course) by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.125 +member: dcid:sdg/SE_ADT_ACTS.URBANIZATION--R__SKILL--ICT_SFWR, dcid:sdg/SE_ADT_ACTS.URBANIZATION--U__SKILL--ICT_SFWR +name: Proportion of youth and adults with information and communications technology (ICT) skills (Finding, downloading, installing and configuring software) by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.126 +member: dcid:sdg/SE_ADT_ACTS.URBANIZATION--R__SKILL--GSINF, dcid:sdg/SE_ADT_ACTS.URBANIZATION--U__SKILL--GSINF +name: Proportion of youth and adults with information and communications technology (ICT) skills (Getting information about goods or services online) by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.127 +member: dcid:sdg/SE_ADT_ACTS.URBANIZATION--R__SKILL--SNTWK, dcid:sdg/SE_ADT_ACTS.URBANIZATION--U__SKILL--SNTWK +name: Proportion of youth and adults with information and communications technology (ICT) skills (Participating in social networks) by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.128 +member: dcid:sdg/SE_ADT_ACTS.URBANIZATION--R__SKILL--GSPUR, dcid:sdg/SE_ADT_ACTS.URBANIZATION--U__SKILL--GSPUR +name: Proportion of youth and adults with information and communications technology (ICT) skills (Purchasing or ordering goods or services using the Internet) by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.129 +member: dcid:sdg/SE_ADT_ACTS.URBANIZATION--R__SKILL--DLDONLD, dcid:sdg/SE_ADT_ACTS.URBANIZATION--U__SKILL--DLDONLD +name: Proportion of youth and adults with information and communications technology (ICT) skills (Reading or downloading on-line newspapers, magazines, or electronic books) by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.130 +member: dcid:sdg/SE_ADT_ACTS.URBANIZATION--R__SKILL--HLTHINF, dcid:sdg/SE_ADT_ACTS.URBANIZATION--U__SKILL--HLTHINF +name: Proportion of youth and adults with information and communications technology (ICT) skills (Seeking health information (on injury, disease, nutrition, etc.)) by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.131 +member: dcid:sdg/SE_ADT_ACTS.URBANIZATION--R__SKILL--ICT_ATCH, dcid:sdg/SE_ADT_ACTS.URBANIZATION--U__SKILL--ICT_ATCH +name: Proportion of youth and adults with information and communications technology (ICT) skills (Sending e-mails with attached files) by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.132 +member: dcid:sdg/SE_ADT_ACTS.URBANIZATION--R__SKILL--ICT_SCRTY, dcid:sdg/SE_ADT_ACTS.URBANIZATION--U__SKILL--ICT_SCRTY +name: Proportion of youth and adults with information and communications technology (ICT) skills (Setting up effective security measures (e.g. strong passwords, log-in attempt notification) to protect devices and online accounts) by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.133 +member: dcid:sdg/SE_ADT_ACTS.URBANIZATION--R__SKILL--ONLCNS, dcid:sdg/SE_ADT_ACTS.URBANIZATION--U__SKILL--ONLCNS +name: Proportion of youth and adults with information and communications technology (ICT) skills (Taking part in on-line consultations or voting to define civic or political issues) by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.134 +member: dcid:sdg/SE_ADT_ACTS.URBANIZATION--R__SKILL--VOIP, dcid:sdg/SE_ADT_ACTS.URBANIZATION--U__SKILL--VOIP +name: Proportion of youth and adults with information and communications technology (ICT) skills (Telephoning over the Internet/VoIP) by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.135 +member: dcid:sdg/SE_ADT_ACTS.URBANIZATION--R__SKILL--ICT_TRFF, dcid:sdg/SE_ADT_ACTS.URBANIZATION--U__SKILL--ICT_TRFF +name: Proportion of youth and adults with information and communications technology (ICT) skills (Transferring files between a computer and other devices) by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.136 +member: dcid:sdg/SE_ADT_ACTS.URBANIZATION--R__SKILL--UPLD, dcid:sdg/SE_ADT_ACTS.URBANIZATION--U__SKILL--UPLD +name: Proportion of youth and adults with information and communications technology (ICT) skills (Uploading self/user-created content to a website to be shared) by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.137 +member: dcid:sdg/SE_ADT_ACTS.URBANIZATION--R__SKILL--INTBNK, dcid:sdg/SE_ADT_ACTS.URBANIZATION--U__SKILL--INTBNK +name: Proportion of youth and adults with information and communications technology (ICT) skills (Using Internet banking) by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.138 +member: dcid:sdg/SE_ADT_ACTS.URBANIZATION--R__SKILL--ICT_SSHT, dcid:sdg/SE_ADT_ACTS.URBANIZATION--U__SKILL--ICT_SSHT +name: Proportion of youth and adults with information and communications technology (ICT) skills (Using basic arithmetic formula in a spreadsheet) by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.139 +member: dcid:sdg/SE_ADT_ACTS.URBANIZATION--R__SKILL--ICT_CPT, dcid:sdg/SE_ADT_ACTS.URBANIZATION--U__SKILL--ICT_CPT +name: Proportion of youth and adults with information and communications technology (ICT) skills (Using copy and paste tools to duplicate or move information within a document) by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.140 +member: dcid:sdg/SE_ADT_ACTS.URBANIZATION--R__SKILL--ONLSFT, dcid:sdg/SE_ADT_ACTS.URBANIZATION--U__SKILL--ONLSFT +name: Proportion of youth and adults with information and communications technology (ICT) skills (Using software run over the Internet for editing text documents, spreadsheets or presentations) by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.141 +member: dcid:sdg/SE_ADT_ACTS.URBANIZATION--R__SKILL--ICT_VRFY, dcid:sdg/SE_ADT_ACTS.URBANIZATION--U__SKILL--ICT_VRFY +name: Proportion of youth and adults with information and communications technology (ICT) skills (Verifying the reliability of information found online) by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.142 +member: dcid:sdg/SE_ADT_ACTS.URBANIZATION--R__SKILL--ICT_PRGM, dcid:sdg/SE_ADT_ACTS.URBANIZATION--U__SKILL--ICT_PRGM +name: Proportion of youth and adults with information and communications technology (ICT) skills (Writing a computer program using a specialized programming language) by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.143 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--R__SKILL--ICT_PRVCY, dcid:sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--R__SKILL--ICT_PRVCY +name: Proportion of youth and adults with information and communications technology (ICT) skills (Changing privacy settings on your device, account or app to limit the sharing of personal data and information (e.g. name, contact information, photos), Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.144 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--U__SKILL--ICT_PRVCY, dcid:sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--U__SKILL--ICT_PRVCY +name: Proportion of youth and adults with information and communications technology (ICT) skills (Changing privacy settings on your device, account or app to limit the sharing of personal data and information (e.g. name, contact information, photos), Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.145 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--R__SKILL--ICT_CDV, dcid:sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--R__SKILL--ICT_CDV +name: Proportion of youth and adults with information and communications technology (ICT) skills (Connecting and installing new devices, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.146 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--U__SKILL--ICT_CDV, dcid:sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--U__SKILL--ICT_CDV +name: Proportion of youth and adults with information and communications technology (ICT) skills (Connecting and installing new devices, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.147 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--R__SKILL--ICT_PST, dcid:sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--R__SKILL--ICT_PST +name: Proportion of youth and adults with information and communications technology (ICT) skills (Creating electronic presentations with presentation software, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.148 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--U__SKILL--ICT_PST, dcid:sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--U__SKILL--ICT_PST +name: Proportion of youth and adults with information and communications technology (ICT) skills (Creating electronic presentations with presentation software, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.149 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--R__SKILL--FONLCRS, dcid:sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--R__SKILL--FONLCRS +name: Proportion of youth and adults with information and communications technology (ICT) skills (Doing a formal online course, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.150 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--U__SKILL--FONLCRS, dcid:sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--U__SKILL--FONLCRS +name: Proportion of youth and adults with information and communications technology (ICT) skills (Doing a formal online course, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.151 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--R__SKILL--ICT_SFWR, dcid:sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--R__SKILL--ICT_SFWR +name: Proportion of youth and adults with information and communications technology (ICT) skills (Finding, downloading, installing and configuring software, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.152 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--U__SKILL--ICT_SFWR, dcid:sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--U__SKILL--ICT_SFWR +name: Proportion of youth and adults with information and communications technology (ICT) skills (Finding, downloading, installing and configuring software, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.153 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--R__SKILL--GSINF, dcid:sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--R__SKILL--GSINF +name: Proportion of youth and adults with information and communications technology (ICT) skills (Getting information about goods or services online, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.154 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--U__SKILL--GSINF, dcid:sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--U__SKILL--GSINF +name: Proportion of youth and adults with information and communications technology (ICT) skills (Getting information about goods or services online, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.155 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--R__SKILL--SNTWK, dcid:sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--R__SKILL--SNTWK +name: Proportion of youth and adults with information and communications technology (ICT) skills (Participating in social networks, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.156 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--U__SKILL--SNTWK, dcid:sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--U__SKILL--SNTWK +name: Proportion of youth and adults with information and communications technology (ICT) skills (Participating in social networks, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.157 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--R__SKILL--GSPUR, dcid:sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--R__SKILL--GSPUR +name: Proportion of youth and adults with information and communications technology (ICT) skills (Purchasing or ordering goods or services using the Internet, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.158 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--U__SKILL--GSPUR, dcid:sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--U__SKILL--GSPUR +name: Proportion of youth and adults with information and communications technology (ICT) skills (Purchasing or ordering goods or services using the Internet, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.159 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--R__SKILL--DLDONLD, dcid:sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--R__SKILL--DLDONLD +name: Proportion of youth and adults with information and communications technology (ICT) skills (Reading or downloading on-line newspapers, magazines, or electronic books, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.160 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--U__SKILL--DLDONLD, dcid:sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--U__SKILL--DLDONLD +name: Proportion of youth and adults with information and communications technology (ICT) skills (Reading or downloading on-line newspapers, magazines, or electronic books, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.161 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--R__SKILL--HLTHINF, dcid:sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--R__SKILL--HLTHINF +name: Proportion of youth and adults with information and communications technology (ICT) skills (Seeking health information (on injury, disease, nutrition, etc.), Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.162 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--U__SKILL--HLTHINF, dcid:sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--U__SKILL--HLTHINF +name: Proportion of youth and adults with information and communications technology (ICT) skills (Seeking health information (on injury, disease, nutrition, etc.), Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.163 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--R__SKILL--ICT_ATCH, dcid:sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--R__SKILL--ICT_ATCH +name: Proportion of youth and adults with information and communications technology (ICT) skills (Sending e-mails with attached files, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.164 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--U__SKILL--ICT_ATCH, dcid:sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--U__SKILL--ICT_ATCH +name: Proportion of youth and adults with information and communications technology (ICT) skills (Sending e-mails with attached files, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.165 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--R__SKILL--ICT_SCRTY, dcid:sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--R__SKILL--ICT_SCRTY +name: Proportion of youth and adults with information and communications technology (ICT) skills (Setting up effective security measures (e.g. strong passwords, log-in attempt notification) to protect devices and online accounts, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.166 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--U__SKILL--ICT_SCRTY, dcid:sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--U__SKILL--ICT_SCRTY +name: Proportion of youth and adults with information and communications technology (ICT) skills (Setting up effective security measures (e.g. strong passwords, log-in attempt notification) to protect devices and online accounts, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.167 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--R__SKILL--ONLCNS, dcid:sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--R__SKILL--ONLCNS +name: Proportion of youth and adults with information and communications technology (ICT) skills (Taking part in on-line consultations or voting to define civic or political issues, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.168 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--U__SKILL--ONLCNS, dcid:sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--U__SKILL--ONLCNS +name: Proportion of youth and adults with information and communications technology (ICT) skills (Taking part in on-line consultations or voting to define civic or political issues, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.169 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--R__SKILL--VOIP, dcid:sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--R__SKILL--VOIP +name: Proportion of youth and adults with information and communications technology (ICT) skills (Telephoning over the Internet/VoIP, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.170 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--U__SKILL--VOIP, dcid:sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--U__SKILL--VOIP +name: Proportion of youth and adults with information and communications technology (ICT) skills (Telephoning over the Internet/VoIP, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.171 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--R__SKILL--ICT_TRFF, dcid:sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--R__SKILL--ICT_TRFF +name: Proportion of youth and adults with information and communications technology (ICT) skills (Transferring files between a computer and other devices, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.172 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--U__SKILL--ICT_TRFF, dcid:sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--U__SKILL--ICT_TRFF +name: Proportion of youth and adults with information and communications technology (ICT) skills (Transferring files between a computer and other devices, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.173 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--R__SKILL--UPLD, dcid:sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--R__SKILL--UPLD +name: Proportion of youth and adults with information and communications technology (ICT) skills (Uploading self/user-created content to a website to be shared, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.174 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--U__SKILL--UPLD, dcid:sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--U__SKILL--UPLD +name: Proportion of youth and adults with information and communications technology (ICT) skills (Uploading self/user-created content to a website to be shared, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.175 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--R__SKILL--INTBNK, dcid:sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--R__SKILL--INTBNK +name: Proportion of youth and adults with information and communications technology (ICT) skills (Using Internet banking, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.176 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--U__SKILL--INTBNK, dcid:sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--U__SKILL--INTBNK +name: Proportion of youth and adults with information and communications technology (ICT) skills (Using Internet banking, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.177 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--R__SKILL--ICT_SSHT, dcid:sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--R__SKILL--ICT_SSHT +name: Proportion of youth and adults with information and communications technology (ICT) skills (Using basic arithmetic formula in a spreadsheet, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.178 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--U__SKILL--ICT_SSHT, dcid:sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--U__SKILL--ICT_SSHT +name: Proportion of youth and adults with information and communications technology (ICT) skills (Using basic arithmetic formula in a spreadsheet, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.179 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--R__SKILL--ICT_CPT, dcid:sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--R__SKILL--ICT_CPT +name: Proportion of youth and adults with information and communications technology (ICT) skills (Using copy and paste tools to duplicate or move information within a document, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.180 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--U__SKILL--ICT_CPT, dcid:sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--U__SKILL--ICT_CPT +name: Proportion of youth and adults with information and communications technology (ICT) skills (Using copy and paste tools to duplicate or move information within a document, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.181 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--R__SKILL--ONLSFT, dcid:sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--R__SKILL--ONLSFT +name: Proportion of youth and adults with information and communications technology (ICT) skills (Using software run over the Internet for editing text documents, spreadsheets or presentations, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.182 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--U__SKILL--ONLSFT, dcid:sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--U__SKILL--ONLSFT +name: Proportion of youth and adults with information and communications technology (ICT) skills (Using software run over the Internet for editing text documents, spreadsheets or presentations, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.183 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--R__SKILL--ICT_VRFY, dcid:sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--R__SKILL--ICT_VRFY +name: Proportion of youth and adults with information and communications technology (ICT) skills (Verifying the reliability of information found online, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.184 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--U__SKILL--ICT_VRFY, dcid:sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--U__SKILL--ICT_VRFY +name: Proportion of youth and adults with information and communications technology (ICT) skills (Verifying the reliability of information found online, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.185 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--R__SKILL--ICT_PRGM, dcid:sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--R__SKILL--ICT_PRGM +name: Proportion of youth and adults with information and communications technology (ICT) skills (Writing a computer program using a specialized programming language, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_ACTS.186 +member: dcid:sdg/SE_ADT_ACTS.SEX--F__URBANIZATION--U__SKILL--ICT_PRGM, dcid:sdg/SE_ADT_ACTS.SEX--M__URBANIZATION--U__SKILL--ICT_PRGM +name: Proportion of youth and adults with information and communications technology (ICT) skills (Writing a computer program using a specialized programming language, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_EDUCTRN.001 +member: dcid:sdg/SE_ADT_EDUCTRN.AGE--Y15T24, dcid:sdg/SE_ADT_EDUCTRN.AGE--Y15T64, dcid:sdg/SE_ADT_EDUCTRN.AGE--Y25T54, dcid:sdg/SE_ADT_EDUCTRN.AGE--Y55T64 +name: Participation rate in formal and non-formal education and training by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_EDUCTRN.002 +member: dcid:sdg/SE_ADT_EDUCTRN.AGE--Y15T24__SEX--F, dcid:sdg/SE_ADT_EDUCTRN.AGE--Y15T24__SEX--M +name: Participation rate in formal and non-formal education and training (15 to 24 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_EDUCTRN.003 +member: dcid:sdg/SE_ADT_EDUCTRN.AGE--Y15T64__SEX--F, dcid:sdg/SE_ADT_EDUCTRN.AGE--Y15T64__SEX--M +name: Participation rate in formal and non-formal education and training (15 to 64 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_EDUCTRN.004 +member: dcid:sdg/SE_ADT_EDUCTRN.AGE--Y25T54__SEX--F, dcid:sdg/SE_ADT_EDUCTRN.AGE--Y25T54__SEX--M +name: Participation rate in formal and non-formal education and training (25 to 54 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_EDUCTRN.005 +member: dcid:sdg/SE_ADT_EDUCTRN.AGE--Y55T64__SEX--F, dcid:sdg/SE_ADT_EDUCTRN.AGE--Y55T64__SEX--M +name: Participation rate in formal and non-formal education and training (55 to 64 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_FUNS.001 +member: dcid:sdg/SE_ADT_FUNS.AGE--Y16T65__SKILL--LTRCY, dcid:sdg/SE_ADT_FUNS.AGE--Y16T65__SKILL--NMRCY +name: Proportion of population achieving at least a fixed level of proficiency in functional skills (16 to 65 years old) by Type of skill +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_FUNS.002 +member: dcid:sdg/SE_ADT_FUNS.AGE--Y16T65__SEX--F__SKILL--LTRCY, dcid:sdg/SE_ADT_FUNS.AGE--Y16T65__SEX--M__SKILL--LTRCY +name: Proportion of population achieving at least a fixed level of proficiency in functional skills (16 to 65 years old, Literacy) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ADT_FUNS.003 +member: dcid:sdg/SE_ADT_FUNS.AGE--Y16T65__SEX--F__SKILL--NMRCY, dcid:sdg/SE_ADT_FUNS.AGE--Y16T65__SEX--M__SKILL--NMRCY +name: Proportion of population achieving at least a fixed level of proficiency in functional skills (16 to 65 years old, Numeracy) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_AGP_CPRA.001 +member: dcid:sdg/SE_AGP_CPRA.EDUCATION_LEVEL--ISCED11_1, dcid:sdg/SE_AGP_CPRA.EDUCATION_LEVEL--ISCED11_2, dcid:sdg/SE_AGP_CPRA.EDUCATION_LEVEL--ISCED11_3 +name: Adjusted gender parity index for completion rate by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_AGP_CPRA.002 +member: dcid:sdg/SE_AGP_CPRA.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1, dcid:sdg/SE_AGP_CPRA.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2, dcid:sdg/SE_AGP_CPRA.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3 +name: Adjusted gender parity index for completion rate (Rural) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_AGP_CPRA.003 +member: dcid:sdg/SE_AGP_CPRA.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1, dcid:sdg/SE_AGP_CPRA.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2, dcid:sdg/SE_AGP_CPRA.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3 +name: Adjusted gender parity index for completion rate (Urban) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_AGP_CPRA.004 +member: dcid:sdg/SE_AGP_CPRA.EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q4, dcid:sdg/SE_AGP_CPRA.EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q4, dcid:sdg/SE_AGP_CPRA.EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q4 +name: Adjusted gender parity index for completion rate (Fourth quintile) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_AGP_CPRA.005 +member: dcid:sdg/SE_AGP_CPRA.EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q5, dcid:sdg/SE_AGP_CPRA.EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q5, dcid:sdg/SE_AGP_CPRA.EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q5 +name: Adjusted gender parity index for completion rate (Highest quintile) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_AGP_CPRA.006 +member: dcid:sdg/SE_AGP_CPRA.EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q1, dcid:sdg/SE_AGP_CPRA.EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q1, dcid:sdg/SE_AGP_CPRA.EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q1 +name: Adjusted gender parity index for completion rate (Lowest quintile) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_AGP_CPRA.007 +member: dcid:sdg/SE_AGP_CPRA.EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q3, dcid:sdg/SE_AGP_CPRA.EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q3, dcid:sdg/SE_AGP_CPRA.EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q3 +name: Adjusted gender parity index for completion rate (Middle quintile) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_AGP_CPRA.008 +member: dcid:sdg/SE_AGP_CPRA.EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q2, dcid:sdg/SE_AGP_CPRA.EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q2, dcid:sdg/SE_AGP_CPRA.EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q2 +name: Adjusted gender parity index for completion rate (Second quintile) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_AGP_CPRA.009 +member: dcid:sdg/SE_AGP_CPRA.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q4, dcid:sdg/SE_AGP_CPRA.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q4, dcid:sdg/SE_AGP_CPRA.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q4 +name: Adjusted gender parity index for completion rate (Fourth quintile, Rural) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_AGP_CPRA.010 +member: dcid:sdg/SE_AGP_CPRA.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q4, dcid:sdg/SE_AGP_CPRA.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q4, dcid:sdg/SE_AGP_CPRA.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q4 +name: Adjusted gender parity index for completion rate (Fourth quintile, Urban) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_AGP_CPRA.011 +member: dcid:sdg/SE_AGP_CPRA.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q5, dcid:sdg/SE_AGP_CPRA.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q5, dcid:sdg/SE_AGP_CPRA.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q5 +name: Adjusted gender parity index for completion rate (Highest quintile, Rural) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_AGP_CPRA.012 +member: dcid:sdg/SE_AGP_CPRA.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q5, dcid:sdg/SE_AGP_CPRA.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q5, dcid:sdg/SE_AGP_CPRA.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q5 +name: Adjusted gender parity index for completion rate (Highest quintile, Urban) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_AGP_CPRA.013 +member: dcid:sdg/SE_AGP_CPRA.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q1, dcid:sdg/SE_AGP_CPRA.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q1, dcid:sdg/SE_AGP_CPRA.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q1 +name: Adjusted gender parity index for completion rate (Lowest quintile, Rural) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_AGP_CPRA.014 +member: dcid:sdg/SE_AGP_CPRA.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q1, dcid:sdg/SE_AGP_CPRA.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q1, dcid:sdg/SE_AGP_CPRA.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q1 +name: Adjusted gender parity index for completion rate (Lowest quintile, Urban) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_AGP_CPRA.015 +member: dcid:sdg/SE_AGP_CPRA.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q3, dcid:sdg/SE_AGP_CPRA.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q3, dcid:sdg/SE_AGP_CPRA.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q3 +name: Adjusted gender parity index for completion rate (Middle quintile, Rural) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_AGP_CPRA.016 +member: dcid:sdg/SE_AGP_CPRA.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q3, dcid:sdg/SE_AGP_CPRA.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q3, dcid:sdg/SE_AGP_CPRA.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q3 +name: Adjusted gender parity index for completion rate (Middle quintile, Urban) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_AGP_CPRA.017 +member: dcid:sdg/SE_AGP_CPRA.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q2, dcid:sdg/SE_AGP_CPRA.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q2, dcid:sdg/SE_AGP_CPRA.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q2 +name: Adjusted gender parity index for completion rate (Second quintile, Rural) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_AGP_CPRA.018 +member: dcid:sdg/SE_AGP_CPRA.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q2, dcid:sdg/SE_AGP_CPRA.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q2, dcid:sdg/SE_AGP_CPRA.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q2 +name: Adjusted gender parity index for completion rate (Second quintile, Urban) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ALP_CPLR.001 +member: dcid:sdg/SE_ALP_CPLR.EDUCATION_LEVEL--ISCED11_1, dcid:sdg/SE_ALP_CPLR.EDUCATION_LEVEL--ISCED11_2, dcid:sdg/SE_ALP_CPLR.EDUCATION_LEVEL--ISCED11_3 +name: Adjusted location parity index for completion rate by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ALP_CPLR.002 +member: dcid:sdg/SE_ALP_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_1, dcid:sdg/SE_ALP_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_2, dcid:sdg/SE_ALP_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_3 +name: Adjusted location parity index for completion rate (Female) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ALP_CPLR.003 +member: dcid:sdg/SE_ALP_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_1, dcid:sdg/SE_ALP_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_2, dcid:sdg/SE_ALP_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_3 +name: Adjusted location parity index for completion rate (Male) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ALP_CPLR.004 +member: dcid:sdg/SE_ALP_CPLR.EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q4, dcid:sdg/SE_ALP_CPLR.EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q4, dcid:sdg/SE_ALP_CPLR.EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q4 +name: Adjusted location parity index for completion rate (Fourth quintile) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ALP_CPLR.005 +member: dcid:sdg/SE_ALP_CPLR.EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q5, dcid:sdg/SE_ALP_CPLR.EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q5, dcid:sdg/SE_ALP_CPLR.EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q5 +name: Adjusted location parity index for completion rate (Highest quintile) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ALP_CPLR.006 +member: dcid:sdg/SE_ALP_CPLR.EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q1, dcid:sdg/SE_ALP_CPLR.EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q1, dcid:sdg/SE_ALP_CPLR.EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q1 +name: Adjusted location parity index for completion rate (Lowest quintile) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ALP_CPLR.007 +member: dcid:sdg/SE_ALP_CPLR.EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q3, dcid:sdg/SE_ALP_CPLR.EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q3, dcid:sdg/SE_ALP_CPLR.EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q3 +name: Adjusted location parity index for completion rate (Middle quintile) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ALP_CPLR.008 +member: dcid:sdg/SE_ALP_CPLR.EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q2, dcid:sdg/SE_ALP_CPLR.EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q2, dcid:sdg/SE_ALP_CPLR.EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q2 +name: Adjusted location parity index for completion rate (Second quintile) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ALP_CPLR.009 +member: dcid:sdg/SE_ALP_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q4, dcid:sdg/SE_ALP_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q4, dcid:sdg/SE_ALP_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q4 +name: Adjusted location parity index for completion rate (Fourth quintile, Female) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ALP_CPLR.010 +member: dcid:sdg/SE_ALP_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q4, dcid:sdg/SE_ALP_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q4, dcid:sdg/SE_ALP_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q4 +name: Adjusted location parity index for completion rate (Fourth quintile, Male) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ALP_CPLR.011 +member: dcid:sdg/SE_ALP_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q5, dcid:sdg/SE_ALP_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q5, dcid:sdg/SE_ALP_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q5 +name: Adjusted location parity index for completion rate (Highest quintile, Female) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ALP_CPLR.012 +member: dcid:sdg/SE_ALP_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q5, dcid:sdg/SE_ALP_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q5, dcid:sdg/SE_ALP_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q5 +name: Adjusted location parity index for completion rate (Highest quintile, Male) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ALP_CPLR.013 +member: dcid:sdg/SE_ALP_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q1, dcid:sdg/SE_ALP_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q1, dcid:sdg/SE_ALP_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q1 +name: Adjusted location parity index for completion rate (Lowest quintile, Female) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ALP_CPLR.014 +member: dcid:sdg/SE_ALP_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q1, dcid:sdg/SE_ALP_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q1, dcid:sdg/SE_ALP_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q1 +name: Adjusted location parity index for completion rate (Lowest quintile, Male) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ALP_CPLR.015 +member: dcid:sdg/SE_ALP_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q3, dcid:sdg/SE_ALP_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q3, dcid:sdg/SE_ALP_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q3 +name: Adjusted location parity index for completion rate (Middle quintile, Female) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ALP_CPLR.016 +member: dcid:sdg/SE_ALP_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q3, dcid:sdg/SE_ALP_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q3, dcid:sdg/SE_ALP_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q3 +name: Adjusted location parity index for completion rate (Middle quintile, Male) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ALP_CPLR.017 +member: dcid:sdg/SE_ALP_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q2, dcid:sdg/SE_ALP_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q2, dcid:sdg/SE_ALP_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q2 +name: Adjusted location parity index for completion rate (Second quintile, Female) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_ALP_CPLR.018 +member: dcid:sdg/SE_ALP_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q2, dcid:sdg/SE_ALP_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q2, dcid:sdg/SE_ALP_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q2 +name: Adjusted location parity index for completion rate (Second quintile, Male) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_AWP_CPRA.001 +member: dcid:sdg/SE_AWP_CPRA.EDUCATION_LEVEL--ISCED11_1, dcid:sdg/SE_AWP_CPRA.EDUCATION_LEVEL--ISCED11_2, dcid:sdg/SE_AWP_CPRA.EDUCATION_LEVEL--ISCED11_3 +name: Adjusted wealth parity index for completion rate by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_AWP_CPRA.002 +member: dcid:sdg/SE_AWP_CPRA.SEX--F__EDUCATION_LEVEL--ISCED11_1, dcid:sdg/SE_AWP_CPRA.SEX--F__EDUCATION_LEVEL--ISCED11_2, dcid:sdg/SE_AWP_CPRA.SEX--F__EDUCATION_LEVEL--ISCED11_3 +name: Adjusted wealth parity index for completion rate (Female) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_AWP_CPRA.003 +member: dcid:sdg/SE_AWP_CPRA.SEX--M__EDUCATION_LEVEL--ISCED11_1, dcid:sdg/SE_AWP_CPRA.SEX--M__EDUCATION_LEVEL--ISCED11_2, dcid:sdg/SE_AWP_CPRA.SEX--M__EDUCATION_LEVEL--ISCED11_3 +name: Adjusted wealth parity index for completion rate (Male) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_AWP_CPRA.004 +member: dcid:sdg/SE_AWP_CPRA.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1, dcid:sdg/SE_AWP_CPRA.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2, dcid:sdg/SE_AWP_CPRA.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3 +name: Adjusted wealth parity index for completion rate (Rural) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_AWP_CPRA.005 +member: dcid:sdg/SE_AWP_CPRA.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1, dcid:sdg/SE_AWP_CPRA.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2, dcid:sdg/SE_AWP_CPRA.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3 +name: Adjusted wealth parity index for completion rate (Urban) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_AWP_CPRA.006 +member: dcid:sdg/SE_AWP_CPRA.SEX--F__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1, dcid:sdg/SE_AWP_CPRA.SEX--F__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2, dcid:sdg/SE_AWP_CPRA.SEX--F__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3 +name: Adjusted wealth parity index for completion rate (Rural, Female) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_AWP_CPRA.007 +member: dcid:sdg/SE_AWP_CPRA.SEX--M__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1, dcid:sdg/SE_AWP_CPRA.SEX--M__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2, dcid:sdg/SE_AWP_CPRA.SEX--M__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3 +name: Adjusted wealth parity index for completion rate (Rural, Male) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_AWP_CPRA.008 +member: dcid:sdg/SE_AWP_CPRA.SEX--F__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1, dcid:sdg/SE_AWP_CPRA.SEX--F__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2, dcid:sdg/SE_AWP_CPRA.SEX--F__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3 +name: Adjusted wealth parity index for completion rate (Urban, Female) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_AWP_CPRA.009 +member: dcid:sdg/SE_AWP_CPRA.SEX--M__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1, dcid:sdg/SE_AWP_CPRA.SEX--M__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2, dcid:sdg/SE_AWP_CPRA.SEX--M__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3 +name: Adjusted wealth parity index for completion rate (Urban, Male) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_DEV_ONTRK.001 +member: dcid:sdg/SE_DEV_ONTRK.AGE--M24T59, dcid:sdg/SE_DEV_ONTRK.AGE--M36T47, dcid:sdg/SE_DEV_ONTRK.AGE--M36T59 +name: Proportion of children aged 24−59 months who are developmentally on track in at least three of the following domains: literacy-numeracy, physical development, social-emotional development, and learning by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_DEV_ONTRK.002 +member: dcid:sdg/SE_DEV_ONTRK.AGE--M24T59__SEX--F, dcid:sdg/SE_DEV_ONTRK.AGE--M24T59__SEX--M +name: Proportion of children aged 24−59 months who are developmentally on track in at least three of the following domains: literacy-numeracy, physical development, social-emotional development, and learning by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_DEV_ONTRK.003 +member: dcid:sdg/SE_DEV_ONTRK.AGE--M36T47__SEX--F, dcid:sdg/SE_DEV_ONTRK.AGE--M36T47__SEX--M +name: Proportion of children aged 36−47 months who are developmentally on track in at least three of the following domains: literacy-numeracy, physical development, social-emotional development, and learning by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_DEV_ONTRK.004 +member: dcid:sdg/SE_DEV_ONTRK.AGE--M36T59__SEX--F, dcid:sdg/SE_DEV_ONTRK.AGE--M36T59__SEX--M +name: Proportion of children aged 36−59 months who are developmentally on track in at least three of the following domains: literacy-numeracy, physical development, social-emotional development, and learning (36 to 59 months old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_GCEDESD_CUR.001 +member: dcid:sdg/SE_GCEDESD_CUR +name: Extent to which global citizenship education and education for sustainable development are mainstreamed in curricula +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_GCEDESD_NEP.001 +member: dcid:sdg/SE_GCEDESD_NEP +name: Extent to which global citizenship education and education for sustainable development are mainstreamed in national education policies +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_GCEDESD_SAS.001 +member: dcid:sdg/SE_GCEDESD_SAS +name: Extent to which global citizenship education and education for sustainable development are mainstreamed in student assessment +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_GCEDESD_TED.001 +member: dcid:sdg/SE_GCEDESD_TED +name: Extent to which global citizenship education and education for sustainable development are mainstreamed in teacher education +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_GPI_ICTS.001 +member: dcid:sdg/SE_GPI_ICTS.SKILL--DLDONLD, dcid:sdg/SE_GPI_ICTS.SKILL--FONLCRS, dcid:sdg/SE_GPI_ICTS.SKILL--GSINF, dcid:sdg/SE_GPI_ICTS.SKILL--GSPUR, dcid:sdg/SE_GPI_ICTS.SKILL--HLTHINF, dcid:sdg/SE_GPI_ICTS.SKILL--INTBNK, dcid:sdg/SE_GPI_ICTS.SKILL--ONLSFT, dcid:sdg/SE_GPI_ICTS.SKILL--SNTWK, dcid:sdg/SE_GPI_ICTS.SKILL--UPLD, dcid:sdg/SE_GPI_ICTS.SKILL--VOIP +name: Gender parity index for youth/adults with information and communications technology (ICT) skills by Type of skill +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_GPI_ICTS.002 +member: dcid:sdg/SE_GPI_ICTS.SKILL--ICT_ATCH, dcid:sdg/SE_GPI_ICTS.SKILL--ICT_CDV, dcid:sdg/SE_GPI_ICTS.SKILL--ICT_CMFL, dcid:sdg/SE_GPI_ICTS.SKILL--ICT_CPT, dcid:sdg/SE_GPI_ICTS.SKILL--ICT_PRGM, dcid:sdg/SE_GPI_ICTS.SKILL--ICT_PRVCY, dcid:sdg/SE_GPI_ICTS.SKILL--ICT_PST, dcid:sdg/SE_GPI_ICTS.SKILL--ICT_SCRTY, dcid:sdg/SE_GPI_ICTS.SKILL--ICT_SFWR, dcid:sdg/SE_GPI_ICTS.SKILL--ICT_SSHT, dcid:sdg/SE_GPI_ICTS.SKILL--ICT_TRFF, dcid:sdg/SE_GPI_ICTS.SKILL--ICT_VRFY +name: Gender parity index for youth/adults with information and communications technology (ICT) skills by Type of skill +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_GPI_PART.001 +member: dcid:sdg/SE_GPI_PART.AGE--Y15T24, dcid:sdg/SE_GPI_PART.AGE--Y15T64, dcid:sdg/SE_GPI_PART.AGE--Y25T54, dcid:sdg/SE_GPI_PART.AGE--Y55T64 +name: Adjusted gender parity index for participation rate in formal and non-formal education and training by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_GPI_PTNPRE.001 +member: dcid:sdg/SE_GPI_PTNPRE +name: Adjusted gender parity index for participation rate in organized learning (one year before the official primary entry age) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_GPI_TCAQ.001 +member: dcid:sdg/SE_GPI_TCAQ.EDUCATION_LEVEL--AGG_2T3 +name: Adjusted gender parity index for the proportion of teachers with the minimum required qualifications by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_GPI_TCAQ.002 +member: dcid:sdg/SE_GPI_TCAQ.EDUCATION_LEVEL--ISCED11_02, dcid:sdg/SE_GPI_TCAQ.EDUCATION_LEVEL--ISCED11_1, dcid:sdg/SE_GPI_TCAQ.EDUCATION_LEVEL--ISCED11_2, dcid:sdg/SE_GPI_TCAQ.EDUCATION_LEVEL--ISCED11_3 +name: Adjusted gender parity index for the proportion of teachers with the minimum required qualifications by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_IMP_FPOF.001 +member: dcid:sdg/SE_IMP_FPOF.AGE--Y16T65__SKILL--LTRCY, dcid:sdg/SE_IMP_FPOF.AGE--Y16T65__SKILL--NMRCY +name: Adjusted immigration status parity index for achieving at least a fixed level of proficiency in functional skills (16 to 65 years old) by Type of skill +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_INF_DSBL.001 +member: dcid:sdg/SE_INF_DSBL.EDUCATION_LEVEL--ISCED11_1, dcid:sdg/SE_INF_DSBL.EDUCATION_LEVEL--ISCED11_2, dcid:sdg/SE_INF_DSBL.EDUCATION_LEVEL--ISCED11_3 +name: Proportion of schools with access to adapted infrastructure and materials for students with disabilities by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_LGP_ACHI.001 +member: dcid:sdg/SE_LGP_ACHI.EDUCATION_LEVEL--ISCED11A_0_G23__SKILL--MATH, dcid:sdg/SE_LGP_ACHI.EDUCATION_LEVEL--ISCED11_1__SKILL--MATH, dcid:sdg/SE_LGP_ACHI.EDUCATION_LEVEL--ISCED11_2__SKILL--MATH +name: Adjusted language test parity index for achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in mathematics) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_LGP_ACHI.002 +member: dcid:sdg/SE_LGP_ACHI.EDUCATION_LEVEL--ISCED11A_0_G23__SKILL--READ, dcid:sdg/SE_LGP_ACHI.EDUCATION_LEVEL--ISCED11_1__SKILL--READ, dcid:sdg/SE_LGP_ACHI.EDUCATION_LEVEL--ISCED11_2__SKILL--READ +name: Adjusted language test parity index for achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in reading) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_NAP_ACHI.001 +member: dcid:sdg/SE_NAP_ACHI.EDUCATION_LEVEL--ISCED11A_0_G23__SKILL--MATH, dcid:sdg/SE_NAP_ACHI.EDUCATION_LEVEL--ISCED11_1__SKILL--MATH, dcid:sdg/SE_NAP_ACHI.EDUCATION_LEVEL--ISCED11_2__SKILL--MATH +name: Adjusted immigration status parity index for achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in mathematics) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_NAP_ACHI.002 +member: dcid:sdg/SE_NAP_ACHI.EDUCATION_LEVEL--ISCED11A_0_G23__SKILL--READ, dcid:sdg/SE_NAP_ACHI.EDUCATION_LEVEL--ISCED11_1__SKILL--READ, dcid:sdg/SE_NAP_ACHI.EDUCATION_LEVEL--ISCED11_2__SKILL--READ +name: Adjusted immigration status parity index for achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in reading) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_PRE_PARTN.001 +member: dcid:sdg/SE_PRE_PARTN +name: Participation rate in organized learning (one year before the official primary entry age) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_PRE_PARTN.002 +member: dcid:sdg/SE_PRE_PARTN.SEX--F, dcid:sdg/SE_PRE_PARTN.SEX--M +name: Participation rate in organized learning (one year before the official primary entry age) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.001 +member: dcid:sdg/SE_TOT_CPLR.EDUCATION_LEVEL--ISCED11_1, dcid:sdg/SE_TOT_CPLR.EDUCATION_LEVEL--ISCED11_2, dcid:sdg/SE_TOT_CPLR.EDUCATION_LEVEL--ISCED11_3 +name: School completion rate by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.002 +member: dcid:sdg/SE_TOT_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_1, dcid:sdg/SE_TOT_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_2, dcid:sdg/SE_TOT_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_3 +name: School completion rate (Female) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.003 +member: dcid:sdg/SE_TOT_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_1, dcid:sdg/SE_TOT_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_2, dcid:sdg/SE_TOT_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_3 +name: School completion rate (Male) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.004 +member: dcid:sdg/SE_TOT_CPLR.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1, dcid:sdg/SE_TOT_CPLR.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2, dcid:sdg/SE_TOT_CPLR.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3 +name: School completion rate (Rural) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.005 +member: dcid:sdg/SE_TOT_CPLR.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1, dcid:sdg/SE_TOT_CPLR.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2, dcid:sdg/SE_TOT_CPLR.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3 +name: School completion rate (Urban) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.006 +member: dcid:sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1, dcid:sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2, dcid:sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3 +name: School completion rate (Rural, Female) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.007 +member: dcid:sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1, dcid:sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2, dcid:sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3 +name: School completion rate (Rural, Male) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.008 +member: dcid:sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1, dcid:sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2, dcid:sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3 +name: School completion rate (Urban, Female) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.009 +member: dcid:sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1, dcid:sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2, dcid:sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3 +name: School completion rate (Urban, Male) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.010 +member: dcid:sdg/SE_TOT_CPLR.EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q4, dcid:sdg/SE_TOT_CPLR.EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q4, dcid:sdg/SE_TOT_CPLR.EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q4 +name: School completion rate (Fourth quintile) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.011 +member: dcid:sdg/SE_TOT_CPLR.EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q5, dcid:sdg/SE_TOT_CPLR.EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q5, dcid:sdg/SE_TOT_CPLR.EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q5 +name: School completion rate (Highest quintile) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.012 +member: dcid:sdg/SE_TOT_CPLR.EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q1, dcid:sdg/SE_TOT_CPLR.EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q1, dcid:sdg/SE_TOT_CPLR.EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q1 +name: School completion rate (Lowest quintile) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.013 +member: dcid:sdg/SE_TOT_CPLR.EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q3, dcid:sdg/SE_TOT_CPLR.EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q3, dcid:sdg/SE_TOT_CPLR.EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q3 +name: School completion rate (Middle quintile) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.014 +member: dcid:sdg/SE_TOT_CPLR.EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q2, dcid:sdg/SE_TOT_CPLR.EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q2, dcid:sdg/SE_TOT_CPLR.EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q2 +name: School completion rate (Second quintile) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.015 +member: dcid:sdg/SE_TOT_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q4, dcid:sdg/SE_TOT_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q4, dcid:sdg/SE_TOT_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q4 +name: School completion rate (Fourth quintile, Female) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.016 +member: dcid:sdg/SE_TOT_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q4, dcid:sdg/SE_TOT_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q4, dcid:sdg/SE_TOT_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q4 +name: School completion rate (Fourth quintile, Male) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.017 +member: dcid:sdg/SE_TOT_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q5, dcid:sdg/SE_TOT_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q5, dcid:sdg/SE_TOT_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q5 +name: School completion rate (Highest quintile, Female) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.018 +member: dcid:sdg/SE_TOT_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q5, dcid:sdg/SE_TOT_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q5, dcid:sdg/SE_TOT_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q5 +name: School completion rate (Highest quintile, Male) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.019 +member: dcid:sdg/SE_TOT_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q1, dcid:sdg/SE_TOT_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q1, dcid:sdg/SE_TOT_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q1 +name: School completion rate (Lowest quintile, Female) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.020 +member: dcid:sdg/SE_TOT_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q1, dcid:sdg/SE_TOT_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q1, dcid:sdg/SE_TOT_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q1 +name: School completion rate (Lowest quintile, Male) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.021 +member: dcid:sdg/SE_TOT_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q3, dcid:sdg/SE_TOT_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q3, dcid:sdg/SE_TOT_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q3 +name: School completion rate (Middle quintile, Female) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.022 +member: dcid:sdg/SE_TOT_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q3, dcid:sdg/SE_TOT_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q3, dcid:sdg/SE_TOT_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q3 +name: School completion rate (Middle quintile, Male) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.023 +member: dcid:sdg/SE_TOT_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q2, dcid:sdg/SE_TOT_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q2, dcid:sdg/SE_TOT_CPLR.SEX--F__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q2 +name: School completion rate (Second quintile, Female) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.024 +member: dcid:sdg/SE_TOT_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q2, dcid:sdg/SE_TOT_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q2, dcid:sdg/SE_TOT_CPLR.SEX--M__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q2 +name: School completion rate (Second quintile, Male) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.025 +member: dcid:sdg/SE_TOT_CPLR.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q4, dcid:sdg/SE_TOT_CPLR.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q4, dcid:sdg/SE_TOT_CPLR.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q4 +name: School completion rate (Fourth quintile, Rural) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.026 +member: dcid:sdg/SE_TOT_CPLR.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q4, dcid:sdg/SE_TOT_CPLR.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q4, dcid:sdg/SE_TOT_CPLR.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q4 +name: School completion rate (Fourth quintile, Urban) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.027 +member: dcid:sdg/SE_TOT_CPLR.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q5, dcid:sdg/SE_TOT_CPLR.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q5, dcid:sdg/SE_TOT_CPLR.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q5 +name: School completion rate (Highest quintile, Rural) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.028 +member: dcid:sdg/SE_TOT_CPLR.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q5, dcid:sdg/SE_TOT_CPLR.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q5, dcid:sdg/SE_TOT_CPLR.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q5 +name: School completion rate (Highest quintile, Urban) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.029 +member: dcid:sdg/SE_TOT_CPLR.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q1, dcid:sdg/SE_TOT_CPLR.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q1, dcid:sdg/SE_TOT_CPLR.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q1 +name: School completion rate (Lowest quintile, Rural) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.030 +member: dcid:sdg/SE_TOT_CPLR.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q1, dcid:sdg/SE_TOT_CPLR.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q1, dcid:sdg/SE_TOT_CPLR.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q1 +name: School completion rate (Lowest quintile, Urban) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.031 +member: dcid:sdg/SE_TOT_CPLR.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q3, dcid:sdg/SE_TOT_CPLR.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q3, dcid:sdg/SE_TOT_CPLR.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q3 +name: School completion rate (Middle quintile, Rural) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.032 +member: dcid:sdg/SE_TOT_CPLR.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q3, dcid:sdg/SE_TOT_CPLR.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q3, dcid:sdg/SE_TOT_CPLR.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q3 +name: School completion rate (Middle quintile, Urban) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.033 +member: dcid:sdg/SE_TOT_CPLR.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q2, dcid:sdg/SE_TOT_CPLR.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q2, dcid:sdg/SE_TOT_CPLR.URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q2 +name: School completion rate (Second quintile, Rural) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.034 +member: dcid:sdg/SE_TOT_CPLR.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q2, dcid:sdg/SE_TOT_CPLR.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q2, dcid:sdg/SE_TOT_CPLR.URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q2 +name: School completion rate (Second quintile, Urban) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.035 +member: dcid:sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q4, dcid:sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q4, dcid:sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q4 +name: School completion rate (Fourth quintile, Rural, Female) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.036 +member: dcid:sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q4, dcid:sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q4, dcid:sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q4 +name: School completion rate (Fourth quintile, Rural, Male) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.037 +member: dcid:sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q4, dcid:sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q4, dcid:sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q4 +name: School completion rate (Fourth quintile, Urban, Female) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.038 +member: dcid:sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q4, dcid:sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q4, dcid:sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q4 +name: School completion rate (Fourth quintile, Urban, Male) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.039 +member: dcid:sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q5, dcid:sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q5, dcid:sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q5 +name: School completion rate (Highest quintile, Rural, Female) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.040 +member: dcid:sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q5, dcid:sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q5, dcid:sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q5 +name: School completion rate (Highest quintile, Rural, Male) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.041 +member: dcid:sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q5, dcid:sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q5, dcid:sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q5 +name: School completion rate (Highest quintile, Urban, Female) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.042 +member: dcid:sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q5, dcid:sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q5, dcid:sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q5 +name: School completion rate (Highest quintile, Urban, Male) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.043 +member: dcid:sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q1, dcid:sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q1, dcid:sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q1 +name: School completion rate (Lowest quintile, Rural, Female) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.044 +member: dcid:sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q1, dcid:sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q1, dcid:sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q1 +name: School completion rate (Lowest quintile, Rural, Male) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.045 +member: dcid:sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q1, dcid:sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q1, dcid:sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q1 +name: School completion rate (Lowest quintile, Urban, Female) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.046 +member: dcid:sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q1, dcid:sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q1, dcid:sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q1 +name: School completion rate (Lowest quintile, Urban, Male) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.047 +member: dcid:sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q3, dcid:sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q3, dcid:sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q3 +name: School completion rate (Middle quintile, Rural, Female) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.048 +member: dcid:sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q3, dcid:sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q3, dcid:sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q3 +name: School completion rate (Middle quintile, Rural, Male) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.049 +member: dcid:sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q3, dcid:sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q3, dcid:sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q3 +name: School completion rate (Middle quintile, Urban, Female) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.050 +member: dcid:sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q3, dcid:sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q3, dcid:sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q3 +name: School completion rate (Middle quintile, Urban, Male) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.051 +member: dcid:sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q2, dcid:sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q2, dcid:sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q2 +name: School completion rate (Second quintile, Rural, Female) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.052 +member: dcid:sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q2, dcid:sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q2, dcid:sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--R__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q2 +name: School completion rate (Second quintile, Rural, Male) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.053 +member: dcid:sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q2, dcid:sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q2, dcid:sdg/SE_TOT_CPLR.SEX--F__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q2 +name: School completion rate (Second quintile, Urban, Female) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_CPLR.054 +member: dcid:sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_1__WEALTH_QUANTILE--Q2, dcid:sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_2__WEALTH_QUANTILE--Q2, dcid:sdg/SE_TOT_CPLR.SEX--M__URBANIZATION--U__EDUCATION_LEVEL--ISCED11_3__WEALTH_QUANTILE--Q2 +name: School completion rate (Second quintile, Urban, Male) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_GPI.001 +member: dcid:sdg/SE_TOT_GPI.EDUCATION_LEVEL--ISCED11A_0_G23__SKILL--MATH, dcid:sdg/SE_TOT_GPI.EDUCATION_LEVEL--ISCED11_1__SKILL--MATH, dcid:sdg/SE_TOT_GPI.EDUCATION_LEVEL--ISCED11_2__SKILL--MATH +name: Adjusted gender parity index for achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in mathematics) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_GPI.002 +member: dcid:sdg/SE_TOT_GPI.EDUCATION_LEVEL--ISCED11A_0_G23__SKILL--READ, dcid:sdg/SE_TOT_GPI.EDUCATION_LEVEL--ISCED11_1__SKILL--READ, dcid:sdg/SE_TOT_GPI.EDUCATION_LEVEL--ISCED11_2__SKILL--READ +name: Adjusted gender parity index for achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in reading) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_GPI_FS.001 +member: dcid:sdg/SE_TOT_GPI_FS.AGE--Y16T65__SKILL--LTRCY, dcid:sdg/SE_TOT_GPI_FS.AGE--Y16T65__SKILL--NMRCY +name: Adjusted gender parity index for achieving at least a fixed level of proficiency in functional skills (16 to 65 years old) by Type of skill +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_PRFL.001 +member: dcid:sdg/SE_TOT_PRFL.EDUCATION_LEVEL--ISCED11A_0_G23__SKILL--MATH, dcid:sdg/SE_TOT_PRFL.EDUCATION_LEVEL--ISCED11_1__SKILL--MATH, dcid:sdg/SE_TOT_PRFL.EDUCATION_LEVEL--ISCED11_2__SKILL--MATH +name: Proportion of children and young people achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in mathematics) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_PRFL.002 +member: dcid:sdg/SE_TOT_PRFL.EDUCATION_LEVEL--ISCED11A_0_G23__SKILL--READ, dcid:sdg/SE_TOT_PRFL.EDUCATION_LEVEL--ISCED11_1__SKILL--READ, dcid:sdg/SE_TOT_PRFL.EDUCATION_LEVEL--ISCED11_2__SKILL--READ +name: Proportion of children and young people achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in reading) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_PRFL.003 +member: dcid:sdg/SE_TOT_PRFL.SEX--F__EDUCATION_LEVEL--ISCED11A_0_G23__SKILL--MATH, dcid:sdg/SE_TOT_PRFL.SEX--F__EDUCATION_LEVEL--ISCED11_1__SKILL--MATH, dcid:sdg/SE_TOT_PRFL.SEX--F__EDUCATION_LEVEL--ISCED11_2__SKILL--MATH +name: Proportion of children and young people achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in mathematics, Female) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_PRFL.004 +member: dcid:sdg/SE_TOT_PRFL.SEX--M__EDUCATION_LEVEL--ISCED11A_0_G23__SKILL--MATH, dcid:sdg/SE_TOT_PRFL.SEX--M__EDUCATION_LEVEL--ISCED11_1__SKILL--MATH, dcid:sdg/SE_TOT_PRFL.SEX--M__EDUCATION_LEVEL--ISCED11_2__SKILL--MATH +name: Proportion of children and young people achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in mathematics, Male) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_PRFL.005 +member: dcid:sdg/SE_TOT_PRFL.SEX--F__EDUCATION_LEVEL--ISCED11A_0_G23__SKILL--READ, dcid:sdg/SE_TOT_PRFL.SEX--F__EDUCATION_LEVEL--ISCED11_1__SKILL--READ, dcid:sdg/SE_TOT_PRFL.SEX--F__EDUCATION_LEVEL--ISCED11_2__SKILL--READ +name: Proportion of children and young people achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in reading, Female) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_PRFL.006 +member: dcid:sdg/SE_TOT_PRFL.SEX--M__EDUCATION_LEVEL--ISCED11A_0_G23__SKILL--READ, dcid:sdg/SE_TOT_PRFL.SEX--M__EDUCATION_LEVEL--ISCED11_1__SKILL--READ, dcid:sdg/SE_TOT_PRFL.SEX--M__EDUCATION_LEVEL--ISCED11_2__SKILL--READ +name: Proportion of children and young people achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in reading, Male) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_RUPI.001 +member: dcid:sdg/SE_TOT_RUPI.EDUCATION_LEVEL--ISCED11A_0_G23__SKILL--MATH, dcid:sdg/SE_TOT_RUPI.EDUCATION_LEVEL--ISCED11_1__SKILL--MATH, dcid:sdg/SE_TOT_RUPI.EDUCATION_LEVEL--ISCED11_2__SKILL--MATH +name: Adjusted rural to urban parity index for achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in mathematics) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_RUPI.002 +member: dcid:sdg/SE_TOT_RUPI.EDUCATION_LEVEL--ISCED11A_0_G23__SKILL--READ, dcid:sdg/SE_TOT_RUPI.EDUCATION_LEVEL--ISCED11_1__SKILL--READ, dcid:sdg/SE_TOT_RUPI.EDUCATION_LEVEL--ISCED11_2__SKILL--READ +name: Adjusted rural to urban parity index for achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in reading) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_SESPI.001 +member: dcid:sdg/SE_TOT_SESPI.EDUCATION_LEVEL--ISCED11A_0_G23__SKILL--MATH, dcid:sdg/SE_TOT_SESPI.EDUCATION_LEVEL--ISCED11_1__SKILL--MATH, dcid:sdg/SE_TOT_SESPI.EDUCATION_LEVEL--ISCED11_2__SKILL--MATH +name: Adjusted low to high socio-economic parity index for achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in mathematics) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_SESPI.002 +member: dcid:sdg/SE_TOT_SESPI.EDUCATION_LEVEL--ISCED11A_0_G23__SKILL--READ, dcid:sdg/SE_TOT_SESPI.EDUCATION_LEVEL--ISCED11_1__SKILL--READ, dcid:sdg/SE_TOT_SESPI.EDUCATION_LEVEL--ISCED11_2__SKILL--READ +name: Adjusted low to high socio-economic parity index for achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in reading) by Education level +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TOT_SESPI_FS.001 +member: dcid:sdg/SE_TOT_SESPI_FS.AGE--Y16T65__SKILL--LTRCY, dcid:sdg/SE_TOT_SESPI_FS.AGE--Y16T65__SKILL--NMRCY +name: Adjusted low to high socio-economic parity status index for achieving at least a fixed level of proficiency in functional skills (16 to 65 years old) by Type of skill +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TRA_GRDL.001 +member: dcid:sdg/SE_TRA_GRDL.EDUCATION_LEVEL--ISCED11_02, dcid:sdg/SE_TRA_GRDL.SEX--F__EDUCATION_LEVEL--ISCED11_02, dcid:sdg/SE_TRA_GRDL.SEX--M__EDUCATION_LEVEL--ISCED11_02 +name: Proportion of teachers with the minimum required qualifications (Pre-primary education) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TRA_GRDL.002 +member: dcid:sdg/SE_TRA_GRDL.EDUCATION_LEVEL--ISCED11_1, dcid:sdg/SE_TRA_GRDL.SEX--F__EDUCATION_LEVEL--ISCED11_1, dcid:sdg/SE_TRA_GRDL.SEX--M__EDUCATION_LEVEL--ISCED11_1 +name: Proportion of teachers with the minimum required qualifications (Primary education) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TRA_GRDL.003 +member: dcid:sdg/SE_TRA_GRDL.EDUCATION_LEVEL--AGG_2T3, dcid:sdg/SE_TRA_GRDL.SEX--F__EDUCATION_LEVEL--AGG_2T3, dcid:sdg/SE_TRA_GRDL.SEX--M__EDUCATION_LEVEL--AGG_2T3 +name: Proportion of teachers with the minimum required qualifications (Secondary education) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TRA_GRDL.004 +member: dcid:sdg/SE_TRA_GRDL.EDUCATION_LEVEL--ISCED11_2, dcid:sdg/SE_TRA_GRDL.SEX--F__EDUCATION_LEVEL--ISCED11_2, dcid:sdg/SE_TRA_GRDL.SEX--M__EDUCATION_LEVEL--ISCED11_2 +name: Proportion of teachers with the minimum required qualifications (Lower secondary education) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSE_TRA_GRDL.005 +member: dcid:sdg/SE_TRA_GRDL.EDUCATION_LEVEL--ISCED11_3, dcid:sdg/SE_TRA_GRDL.SEX--F__EDUCATION_LEVEL--ISCED11_3, dcid:sdg/SE_TRA_GRDL.SEX--M__EDUCATION_LEVEL--ISCED11_3 +name: Proportion of teachers with the minimum required qualifications (Upper secondary education) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_CPA_MIGRP.001 +member: dcid:sdg/SG_CPA_MIGRP +name: Proportion of countries with migration policies to facilitate orderly, safe, regular and responsible migration and mobility of people +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_CPA_MIGRP.002 +member: dcid:sdg/SG_CPA_MIGRP.POLICY_DOMAINS--PD_1, dcid:sdg/SG_CPA_MIGRP.POLICY_DOMAINS--PD_2, dcid:sdg/SG_CPA_MIGRP.POLICY_DOMAINS--PD_3, dcid:sdg/SG_CPA_MIGRP.POLICY_DOMAINS--PD_4, dcid:sdg/SG_CPA_MIGRP.POLICY_DOMAINS--PD_5, dcid:sdg/SG_CPA_MIGRP.POLICY_DOMAINS--PD_6 +name: Proportion of countries with migration policies to facilitate orderly, safe, regular and responsible migration and mobility of people by Policy domain +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_CPA_MIGRS.001 +member: dcid:sdg/SG_CPA_MIGRS +name: Countries with migration policies to facilitate orderly, safe, regular and responsible migration and mobility of people +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_CPA_MIGRS.002 +member: dcid:sdg/SG_CPA_MIGRS.POLICY_DOMAINS--PD_1, dcid:sdg/SG_CPA_MIGRS.POLICY_DOMAINS--PD_2, dcid:sdg/SG_CPA_MIGRS.POLICY_DOMAINS--PD_3, dcid:sdg/SG_CPA_MIGRS.POLICY_DOMAINS--PD_4, dcid:sdg/SG_CPA_MIGRS.POLICY_DOMAINS--PD_5, dcid:sdg/SG_CPA_MIGRS.POLICY_DOMAINS--PD_6 +name: Countries with migration policies to facilitate orderly, safe, regular and responsible migration and mobility of people by Policy domain +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_CPA_OFDI.001 +member: dcid:sdg/SG_CPA_OFDI +name: Number of countries with an outward investment promotion scheme which can benefit developing countries, including LDCs +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_CPA_OFDI.002 +member: dcid:sdg/SG_CPA_OFDI.OFDI_SCHEME--DC_PARTICIPATION, dcid:sdg/SG_CPA_OFDI.OFDI_SCHEME--FIS_FIN_SUPPORT, dcid:sdg/SG_CPA_OFDI.OFDI_SCHEME--INV_FACILITATION, dcid:sdg/SG_CPA_OFDI.OFDI_SCHEME--INV_GUARANTEES +name: Number of countries with an outward investment promotion scheme which can benefit developing countries, including LDCs by OFDI Scheme +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_CPA_SDEVP.001 +member: dcid:sdg/SG_CPA_SDEVP +name: Mechanisms in place to enhance policy coherence for sustainable development +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_JDC.001 +member: dcid:sdg/SG_DMK_JDC.AGE--Y0T44__OCCUPATION--ISCO08_2612, dcid:sdg/SG_DMK_JDC.AGE--Y0T44__OCCUPATION--ISCO08_2619R +name: Proportion of positions held by persons under 45 years of age in the judiciary, compared to national distributions +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_JDC.002 +member: dcid:sdg/SG_DMK_JDC.OCCUPATION--ISCO08_2612__DISABILITY_STATUS--PD, dcid:sdg/SG_DMK_JDC.OCCUPATION--ISCO08_2619R__DISABILITY_STATUS--PD +name: Proportion of positions held by persons with disability in the judiciary, compared to national distributions +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_JDC.003 +member: dcid:sdg/SG_DMK_JDC.OCCUPATION--ISCO08_2612__POPULATION_GROUP--URY_0, dcid:sdg/SG_DMK_JDC.OCCUPATION--ISCO08_2619R__POPULATION_GROUP--URY_0 +name: Proportion of positions held by persons of Afro descent in the judiciary, compared to national distributions +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_JDC.004 +member: dcid:sdg/SG_DMK_JDC.OCCUPATION--ISCO08_2612__POPULATION_GROUP--ISR_0, dcid:sdg/SG_DMK_JDC.OCCUPATION--ISCO08_2619R__POPULATION_GROUP--ISR_0 +name: Proportion of positions held by Arabs in the judiciary, compared to national distributions +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_JDC.005 +member: dcid:sdg/SG_DMK_JDC.OCCUPATION--ISCO08_2612__POPULATION_GROUP--NOR_3, dcid:sdg/SG_DMK_JDC.OCCUPATION--ISCO08_2619R__POPULATION_GROUP--NOR_3 +name: Proportion of positions held by immigrants, persons with Norwegian-born to immigrant parents, and others in the judiciary, compared to national distributions +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_JDC.006 +member: dcid:sdg/SG_DMK_JDC.OCCUPATION--ISCO08_2612__POPULATION_GROUP--DNK_2, dcid:sdg/SG_DMK_JDC.OCCUPATION--ISCO08_2619R__POPULATION_GROUP--DNK_2 +name: Proportion of positions held by immigrants and descendants from non-western countries in the judiciary, compared to national distributions +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_JDC.007 +member: dcid:sdg/SG_DMK_JDC.OCCUPATION--ISCO08_2612__POPULATION_GROUP--DNK_3, dcid:sdg/SG_DMK_JDC.OCCUPATION--ISCO08_2619R__POPULATION_GROUP--DNK_3 +name: Proportion of positions held by immigrants and descendants from western countries in the judiciary, compared to national distributions +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_JDC.008 +member: dcid:sdg/SG_DMK_JDC.OCCUPATION--ISCO08_2612__POPULATION_GROUP--NOR_0, dcid:sdg/SG_DMK_JDC.OCCUPATION--ISCO08_2619R__POPULATION_GROUP--NOR_0 +name: Proportion of positions held by Norweigians in the judiciary, compared to national distributions +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_JDC.009 +member: dcid:sdg/SG_DMK_JDC.OCCUPATION--ISCO08_2612__POPULATION_GROUP--DNK_1, dcid:sdg/SG_DMK_JDC.OCCUPATION--ISCO08_2619R__POPULATION_GROUP--DNK_1 +name: Proportion of positions held by persons of Danish origin in the judiciary, compared to national distributions +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_JDC.010 +member: dcid:sdg/SG_DMK_JDC.OCCUPATION--ISCO08_2612__POPULATION_GROUP--LSO_0, dcid:sdg/SG_DMK_JDC.OCCUPATION--ISCO08_2619R__POPULATION_GROUP--LSO_0 +name: Proportions of positions in the judiciary compared to national distributions (Unspecified) by Professionals (ISCO08 - 2) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_JDC.011 +member: dcid:sdg/SG_DMK_JDC.SEX--F__OCCUPATION--ISCO08_2612, dcid:sdg/SG_DMK_JDC.SEX--F__OCCUPATION--ISCO08_2619R +name: Proportion of positions held by women in the judiciary, compared to national distributions +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_JDC_CNS.001 +member: dcid:sdg/SG_DMK_JDC_CNS.AGE--Y0T44__OCCUPATION--ISCO08_2612, dcid:sdg/SG_DMK_JDC_CNS.AGE--Y0T44__OCCUPATION--ISCO08_2619R +name: Proportions of positions held by persons under 45 years of age in the Constitutional Court +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_JDC_CNS.002 +member: dcid:sdg/SG_DMK_JDC_CNS.OCCUPATION--ISCO08_2612__DISABILITY_STATUS--PD, dcid:sdg/SG_DMK_JDC_CNS.OCCUPATION--ISCO08_2619R__DISABILITY_STATUS--PD +name: Proportions of positions held by persons with disability in the Constitutional Court +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_JDC_CNS.003 +member: dcid:sdg/SG_DMK_JDC_CNS.OCCUPATION--ISCO08_2612__POPULATION_GROUP--ISR_0 +name: Proportions of positions held by Arabs in the Constitutional Court +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_JDC_CNS.004 +member: dcid:sdg/SG_DMK_JDC_CNS.SEX--F__OCCUPATION--ISCO08_2612, dcid:sdg/SG_DMK_JDC_CNS.SEX--F__OCCUPATION--ISCO08_2619R +name: Proportions of positions held by women in the Constitutional Court +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_JDC_HGR.001 +member: dcid:sdg/SG_DMK_JDC_HGR.AGE--Y0T44__OCCUPATION--ISCO08_2612, dcid:sdg/SG_DMK_JDC_HGR.AGE--Y0T44__OCCUPATION--ISCO08_2619R +name: Proportions of positions held by persons under 45 years of age in the Higher Courts +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_JDC_HGR.002 +member: dcid:sdg/SG_DMK_JDC_HGR.OCCUPATION--ISCO08_2612__DISABILITY_STATUS--PD, dcid:sdg/SG_DMK_JDC_HGR.OCCUPATION--ISCO08_2619R__DISABILITY_STATUS--PD +name: Proportions of positions held by persons with disability in the Higher Courts +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_JDC_HGR.003 +member: dcid:sdg/SG_DMK_JDC_HGR.OCCUPATION--ISCO08_2612__POPULATION_GROUP--ISR_0 +name: Proportions of positions held by Arabs in the Higher Courts +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_JDC_HGR.004 +member: dcid:sdg/SG_DMK_JDC_HGR.OCCUPATION--ISCO08_2612__POPULATION_GROUP--LSO_0, dcid:sdg/SG_DMK_JDC_HGR.OCCUPATION--ISCO08_2619R__POPULATION_GROUP--LSO_0 +name: Proportions of positions held by unspecified minority groups in the Higher Courts +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_JDC_HGR.005 +member: dcid:sdg/SG_DMK_JDC_HGR.SEX--F__OCCUPATION--ISCO08_2612, dcid:sdg/SG_DMK_JDC_HGR.SEX--F__OCCUPATION--ISCO08_2619R +name: Proportions of positions held by women in the Higher Courts +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_JDC_LWR.001 +member: dcid:sdg/SG_DMK_JDC_LWR.AGE--Y0T44__OCCUPATION--ISCO08_2612, dcid:sdg/SG_DMK_JDC_LWR.AGE--Y0T44__OCCUPATION--ISCO08_2619R +name: Proportions of positions held by persons under 45 years of age in the Lower Courts +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_JDC_LWR.002 +member: dcid:sdg/SG_DMK_JDC_LWR.OCCUPATION--ISCO08_2612__DISABILITY_STATUS--PD, dcid:sdg/SG_DMK_JDC_LWR.OCCUPATION--ISCO08_2619R__DISABILITY_STATUS--PD +name: Proportions of positions held by persons with disability in the Lower Courts +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_JDC_LWR.003 +member: dcid:sdg/SG_DMK_JDC_LWR.OCCUPATION--ISCO08_2612__POPULATION_GROUP--ISR_0, dcid:sdg/SG_DMK_JDC_LWR.OCCUPATION--ISCO08_2619R__POPULATION_GROUP--ISR_0 +name: Proportions of positions held by Arabs in the Lower Courts +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_JDC_LWR.004 +member: dcid:sdg/SG_DMK_JDC_LWR.OCCUPATION--ISCO08_2612__POPULATION_GROUP--LSO_0 +name: Proportions of positions held by unspecified minority groups in the Lower Courts +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_JDC_LWR.005 +member: dcid:sdg/SG_DMK_JDC_LWR.SEX--F__OCCUPATION--ISCO08_2612, dcid:sdg/SG_DMK_JDC_LWR.SEX--F__OCCUPATION--ISCO08_2619R +name: Proportions of positions held by women in the Lower Courts +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_PARLCC_JC.001 +member: dcid:sdg/SG_DMK_PARLCC_JC.AGE--Y_GE46__SEX--F__PARLIAMENTARY_COMMITTEES--FAFF, dcid:sdg/SG_DMK_PARLCC_JC.AGE--Y_GE46__SEX--F__PARLIAMENTARY_COMMITTEES--FIN, dcid:sdg/SG_DMK_PARLCC_JC.AGE--Y_GE46__SEX--F__PARLIAMENTARY_COMMITTEES--GEQ, dcid:sdg/SG_DMK_PARLCC_JC.AGE--Y_GE46__SEX--F__PARLIAMENTARY_COMMITTEES--HR, dcid:sdg/SG_DMK_PARLCC_JC.AGE--Y_GE46__SEX--F__PARLIAMENTARY_COMMITTEES--HR_GEQ +name: Number of chairs of permanent parliamentary committees held by women 46 years old and over: Joint Committees +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_PARLCC_JC.002 +member: dcid:sdg/SG_DMK_PARLCC_JC.AGE--Y_GE46__SEX--M__PARLIAMENTARY_COMMITTEES--DEF, dcid:sdg/SG_DMK_PARLCC_JC.AGE--Y_GE46__SEX--M__PARLIAMENTARY_COMMITTEES--FAFF_DEF, dcid:sdg/SG_DMK_PARLCC_JC.AGE--Y_GE46__SEX--M__PARLIAMENTARY_COMMITTEES--FIN, dcid:sdg/SG_DMK_PARLCC_JC.AGE--Y_GE46__SEX--M__PARLIAMENTARY_COMMITTEES--GEQ, dcid:sdg/SG_DMK_PARLCC_JC.AGE--Y_GE46__SEX--M__PARLIAMENTARY_COMMITTEES--HR +name: Number of chairs of permanent parliamentary committees held by men 46 years old and over: Joint Committees +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_PARLCC_JC.003 +member: dcid:sdg/SG_DMK_PARLCC_JC.AGE--_U__SEX--F__PARLIAMENTARY_COMMITTEES--FAFF, dcid:sdg/SG_DMK_PARLCC_JC.AGE--_U__SEX--F__PARLIAMENTARY_COMMITTEES--FIN, dcid:sdg/SG_DMK_PARLCC_JC.AGE--_U__SEX--F__PARLIAMENTARY_COMMITTEES--GEQ, dcid:sdg/SG_DMK_PARLCC_JC.AGE--_U__SEX--F__PARLIAMENTARY_COMMITTEES--HR_GEQ +name: Number of chairs of permanent parliamentary committees held by women of unknown age: Joint Committees +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_PARLCC_JC.004 +member: dcid:sdg/SG_DMK_PARLCC_JC.AGE--_U__SEX--M__PARLIAMENTARY_COMMITTEES--DEF, dcid:sdg/SG_DMK_PARLCC_JC.AGE--_U__SEX--M__PARLIAMENTARY_COMMITTEES--HR +name: Number of chairs of permanent parliamentary committees held by men of unknown age: Joint Committees +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_PARLCC_JC.005 +member: dcid:sdg/SG_DMK_PARLCC_JC.AGE--Y0T45__SEX--F__PARLIAMENTARY_COMMITTEES--GEQ, dcid:sdg/SG_DMK_PARLCC_JC.AGE--Y0T45__SEX--F__PARLIAMENTARY_COMMITTEES--HR_GEQ +name: Number of chairs of permanent parliamentary committees held by women 46 years old and over: Joint Committees +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_PARLCC_JC.006 +member: dcid:sdg/SG_DMK_PARLCC_JC.AGE--Y0T45__SEX--M__PARLIAMENTARY_COMMITTEES--GEQ, dcid:sdg/SG_DMK_PARLCC_JC.AGE--Y0T45__SEX--M__PARLIAMENTARY_COMMITTEES--HR +name: Number of chairs of permanent parliamentary committees held by men 46 years old and over: Joint Committees +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_PARLCC_LC.001 +member: dcid:sdg/SG_DMK_PARLCC_LC.AGE--Y_GE46__SEX--F__PARLIAMENTARY_COMMITTEES--DEF, dcid:sdg/SG_DMK_PARLCC_LC.AGE--Y_GE46__SEX--F__PARLIAMENTARY_COMMITTEES--FAFF, dcid:sdg/SG_DMK_PARLCC_LC.AGE--Y_GE46__SEX--F__PARLIAMENTARY_COMMITTEES--FAFF_DEF, dcid:sdg/SG_DMK_PARLCC_LC.AGE--Y_GE46__SEX--F__PARLIAMENTARY_COMMITTEES--FIN, dcid:sdg/SG_DMK_PARLCC_LC.AGE--Y_GE46__SEX--F__PARLIAMENTARY_COMMITTEES--GEQ, dcid:sdg/SG_DMK_PARLCC_LC.AGE--Y_GE46__SEX--F__PARLIAMENTARY_COMMITTEES--HR, dcid:sdg/SG_DMK_PARLCC_LC.AGE--Y_GE46__SEX--F__PARLIAMENTARY_COMMITTEES--HR_GEQ +name: Number of chairs of permanent parliamentary committees held by women 46 years old and over: Lower Chamber or Unicameral Committees +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_PARLCC_LC.002 +member: dcid:sdg/SG_DMK_PARLCC_LC.AGE--Y_GE46__SEX--M__PARLIAMENTARY_COMMITTEES--DEF, dcid:sdg/SG_DMK_PARLCC_LC.AGE--Y_GE46__SEX--M__PARLIAMENTARY_COMMITTEES--FAFF, dcid:sdg/SG_DMK_PARLCC_LC.AGE--Y_GE46__SEX--M__PARLIAMENTARY_COMMITTEES--FAFF_DEF, dcid:sdg/SG_DMK_PARLCC_LC.AGE--Y_GE46__SEX--M__PARLIAMENTARY_COMMITTEES--FIN, dcid:sdg/SG_DMK_PARLCC_LC.AGE--Y_GE46__SEX--M__PARLIAMENTARY_COMMITTEES--GEQ, dcid:sdg/SG_DMK_PARLCC_LC.AGE--Y_GE46__SEX--M__PARLIAMENTARY_COMMITTEES--HR, dcid:sdg/SG_DMK_PARLCC_LC.AGE--Y_GE46__SEX--M__PARLIAMENTARY_COMMITTEES--HR_GEQ +name: Number of chairs of permanent parliamentary committees held by men 46 years old and over: Lower Chamber or Unicameral Committees +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_PARLCC_LC.003 +member: dcid:sdg/SG_DMK_PARLCC_LC.AGE--Y_GE46__SEX--_U__PARLIAMENTARY_COMMITTEES--GEQ +name: Number of chairs of permanent parliamentary committees held by persons 46 yeras old and whose sex information is unknown: Lower Chamber or Unicameral Committees +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_PARLCC_LC.004 +member: dcid:sdg/SG_DMK_PARLCC_LC.AGE--_X__SEX--_X__PARLIAMENTARY_COMMITTEES--DEF, dcid:sdg/SG_DMK_PARLCC_LC.AGE--_X__SEX--_X__PARLIAMENTARY_COMMITTEES--FAFF, dcid:sdg/SG_DMK_PARLCC_LC.AGE--_X__SEX--_X__PARLIAMENTARY_COMMITTEES--FIN, dcid:sdg/SG_DMK_PARLCC_LC.AGE--_X__SEX--_X__PARLIAMENTARY_COMMITTEES--GEQ, dcid:sdg/SG_DMK_PARLCC_LC.AGE--_X__SEX--_X__PARLIAMENTARY_COMMITTEES--HR +name: Number of chairs of permanent parliamentary committees held by persons whose age and sex information is not available: Lower Chamber or Unicameral Committees +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_PARLCC_LC.005 +member: dcid:sdg/SG_DMK_PARLCC_LC.AGE--_U__SEX--F__PARLIAMENTARY_COMMITTEES--DEF, dcid:sdg/SG_DMK_PARLCC_LC.AGE--_U__SEX--F__PARLIAMENTARY_COMMITTEES--FAFF, dcid:sdg/SG_DMK_PARLCC_LC.AGE--_U__SEX--F__PARLIAMENTARY_COMMITTEES--FAFF_DEF, dcid:sdg/SG_DMK_PARLCC_LC.AGE--_U__SEX--F__PARLIAMENTARY_COMMITTEES--FIN, dcid:sdg/SG_DMK_PARLCC_LC.AGE--_U__SEX--F__PARLIAMENTARY_COMMITTEES--GEQ, dcid:sdg/SG_DMK_PARLCC_LC.AGE--_U__SEX--F__PARLIAMENTARY_COMMITTEES--HR +name: Number of chairs of permanent parliamentary committees held by women whose age information is unknown: Lower Chamber or Unicameral Committees +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_PARLCC_LC.006 +member: dcid:sdg/SG_DMK_PARLCC_LC.AGE--_U__SEX--M__PARLIAMENTARY_COMMITTEES--DEF, dcid:sdg/SG_DMK_PARLCC_LC.AGE--_U__SEX--M__PARLIAMENTARY_COMMITTEES--FAFF, dcid:sdg/SG_DMK_PARLCC_LC.AGE--_U__SEX--M__PARLIAMENTARY_COMMITTEES--FAFF_DEF, dcid:sdg/SG_DMK_PARLCC_LC.AGE--_U__SEX--M__PARLIAMENTARY_COMMITTEES--FAFF_DEF_HR, dcid:sdg/SG_DMK_PARLCC_LC.AGE--_U__SEX--M__PARLIAMENTARY_COMMITTEES--FIN, dcid:sdg/SG_DMK_PARLCC_LC.AGE--_U__SEX--M__PARLIAMENTARY_COMMITTEES--GEQ, dcid:sdg/SG_DMK_PARLCC_LC.AGE--_U__SEX--M__PARLIAMENTARY_COMMITTEES--HR +name: Number of chairs of permanent parliamentary committees held by men whose age information is unknown: Lower Chamber or Unicameral Committees +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_PARLCC_LC.007 +member: dcid:sdg/SG_DMK_PARLCC_LC.AGE--_U__SEX--_U__PARLIAMENTARY_COMMITTEES--DEF, dcid:sdg/SG_DMK_PARLCC_LC.AGE--_U__SEX--_U__PARLIAMENTARY_COMMITTEES--FAFF, dcid:sdg/SG_DMK_PARLCC_LC.AGE--_U__SEX--_U__PARLIAMENTARY_COMMITTEES--FIN, dcid:sdg/SG_DMK_PARLCC_LC.AGE--_U__SEX--_U__PARLIAMENTARY_COMMITTEES--GEQ, dcid:sdg/SG_DMK_PARLCC_LC.AGE--_U__SEX--_U__PARLIAMENTARY_COMMITTEES--HR +name: Number of chairs of permanent parliamentary committees held by persons whose age and sex information is not available: Lower Chamber or Unicameral Committees +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_PARLCC_LC.008 +member: dcid:sdg/SG_DMK_PARLCC_LC.AGE--Y0T45__SEX--F__PARLIAMENTARY_COMMITTEES--DEF, dcid:sdg/SG_DMK_PARLCC_LC.AGE--Y0T45__SEX--F__PARLIAMENTARY_COMMITTEES--FAFF, dcid:sdg/SG_DMK_PARLCC_LC.AGE--Y0T45__SEX--F__PARLIAMENTARY_COMMITTEES--FAFF_DEF, dcid:sdg/SG_DMK_PARLCC_LC.AGE--Y0T45__SEX--F__PARLIAMENTARY_COMMITTEES--FIN, dcid:sdg/SG_DMK_PARLCC_LC.AGE--Y0T45__SEX--F__PARLIAMENTARY_COMMITTEES--GEQ, dcid:sdg/SG_DMK_PARLCC_LC.AGE--Y0T45__SEX--F__PARLIAMENTARY_COMMITTEES--HR, dcid:sdg/SG_DMK_PARLCC_LC.AGE--Y0T45__SEX--F__PARLIAMENTARY_COMMITTEES--HR_GEQ +name: Number of chairs of permanent parliamentary committees held by women under 46 years old: Lower Chamber or Unicameral Committees +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_PARLCC_LC.009 +member: dcid:sdg/SG_DMK_PARLCC_LC.AGE--Y0T45__SEX--M__PARLIAMENTARY_COMMITTEES--DEF, dcid:sdg/SG_DMK_PARLCC_LC.AGE--Y0T45__SEX--M__PARLIAMENTARY_COMMITTEES--FAFF, dcid:sdg/SG_DMK_PARLCC_LC.AGE--Y0T45__SEX--M__PARLIAMENTARY_COMMITTEES--FAFF_DEF, dcid:sdg/SG_DMK_PARLCC_LC.AGE--Y0T45__SEX--M__PARLIAMENTARY_COMMITTEES--FAFF_DEF_FIN, dcid:sdg/SG_DMK_PARLCC_LC.AGE--Y0T45__SEX--M__PARLIAMENTARY_COMMITTEES--FIN, dcid:sdg/SG_DMK_PARLCC_LC.AGE--Y0T45__SEX--M__PARLIAMENTARY_COMMITTEES--GEQ, dcid:sdg/SG_DMK_PARLCC_LC.AGE--Y0T45__SEX--M__PARLIAMENTARY_COMMITTEES--HR, dcid:sdg/SG_DMK_PARLCC_LC.AGE--Y0T45__SEX--M__PARLIAMENTARY_COMMITTEES--HR_GEQ +name: Number of chairs of permanent parliamentary committees held by men under 46 years old: Lower Chamber or Unicameral Committees +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_PARLCC_UC.001 +member: dcid:sdg/SG_DMK_PARLCC_UC.AGE--Y_GE46__SEX--F__PARLIAMENTARY_COMMITTEES--DEF, dcid:sdg/SG_DMK_PARLCC_UC.AGE--Y_GE46__SEX--F__PARLIAMENTARY_COMMITTEES--FAFF, dcid:sdg/SG_DMK_PARLCC_UC.AGE--Y_GE46__SEX--F__PARLIAMENTARY_COMMITTEES--FAFF_DEF, dcid:sdg/SG_DMK_PARLCC_UC.AGE--Y_GE46__SEX--F__PARLIAMENTARY_COMMITTEES--FAFF_DEF_FIN, dcid:sdg/SG_DMK_PARLCC_UC.AGE--Y_GE46__SEX--F__PARLIAMENTARY_COMMITTEES--FAFF_DEF_HR, dcid:sdg/SG_DMK_PARLCC_UC.AGE--Y_GE46__SEX--F__PARLIAMENTARY_COMMITTEES--FAFF_HR, dcid:sdg/SG_DMK_PARLCC_UC.AGE--Y_GE46__SEX--F__PARLIAMENTARY_COMMITTEES--FIN, dcid:sdg/SG_DMK_PARLCC_UC.AGE--Y_GE46__SEX--F__PARLIAMENTARY_COMMITTEES--GEQ, dcid:sdg/SG_DMK_PARLCC_UC.AGE--Y_GE46__SEX--F__PARLIAMENTARY_COMMITTEES--HR +name: Number of chairs of permanent parliamentary committees held by women years old and over: Upper Chamber Committees +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_PARLCC_UC.002 +member: dcid:sdg/SG_DMK_PARLCC_UC.AGE--Y_GE46__SEX--M__PARLIAMENTARY_COMMITTEES--DEF, dcid:sdg/SG_DMK_PARLCC_UC.AGE--Y_GE46__SEX--M__PARLIAMENTARY_COMMITTEES--FAFF, dcid:sdg/SG_DMK_PARLCC_UC.AGE--Y_GE46__SEX--M__PARLIAMENTARY_COMMITTEES--FAFF_DEF, dcid:sdg/SG_DMK_PARLCC_UC.AGE--Y_GE46__SEX--M__PARLIAMENTARY_COMMITTEES--FIN, dcid:sdg/SG_DMK_PARLCC_UC.AGE--Y_GE46__SEX--M__PARLIAMENTARY_COMMITTEES--GEQ, dcid:sdg/SG_DMK_PARLCC_UC.AGE--Y_GE46__SEX--M__PARLIAMENTARY_COMMITTEES--HR, dcid:sdg/SG_DMK_PARLCC_UC.AGE--Y_GE46__SEX--M__PARLIAMENTARY_COMMITTEES--HR_GEQ +name: Number of chairs of permanent parliamentary committees held by men 46 years old and over: Upper Chamber Committees +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_PARLCC_UC.003 +member: dcid:sdg/SG_DMK_PARLCC_UC.AGE--_X__SEX--_X__PARLIAMENTARY_COMMITTEES--DEF, dcid:sdg/SG_DMK_PARLCC_UC.AGE--_X__SEX--_X__PARLIAMENTARY_COMMITTEES--FAFF, dcid:sdg/SG_DMK_PARLCC_UC.AGE--_X__SEX--_X__PARLIAMENTARY_COMMITTEES--FIN, dcid:sdg/SG_DMK_PARLCC_UC.AGE--_X__SEX--_X__PARLIAMENTARY_COMMITTEES--GEQ, dcid:sdg/SG_DMK_PARLCC_UC.AGE--_X__SEX--_X__PARLIAMENTARY_COMMITTEES--HR +name: Number of chairs of permanent parliamentary committees held by persons whose age and sex information is not available: Upper Chamber Committees +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_PARLCC_UC.004 +member: dcid:sdg/SG_DMK_PARLCC_UC.AGE--_U__SEX--F__PARLIAMENTARY_COMMITTEES--FAFF, dcid:sdg/SG_DMK_PARLCC_UC.AGE--_U__SEX--F__PARLIAMENTARY_COMMITTEES--FAFF_DEF, dcid:sdg/SG_DMK_PARLCC_UC.AGE--_U__SEX--F__PARLIAMENTARY_COMMITTEES--FIN, dcid:sdg/SG_DMK_PARLCC_UC.AGE--_U__SEX--F__PARLIAMENTARY_COMMITTEES--GEQ +name: Number of chairs of permanent parliamentary committees held by women whose age information is unknown: Upper Chamber Committees +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_PARLCC_UC.005 +member: dcid:sdg/SG_DMK_PARLCC_UC.AGE--_U__SEX--M__PARLIAMENTARY_COMMITTEES--DEF, dcid:sdg/SG_DMK_PARLCC_UC.AGE--_U__SEX--M__PARLIAMENTARY_COMMITTEES--FAFF, dcid:sdg/SG_DMK_PARLCC_UC.AGE--_U__SEX--M__PARLIAMENTARY_COMMITTEES--FAFF_DEF, dcid:sdg/SG_DMK_PARLCC_UC.AGE--_U__SEX--M__PARLIAMENTARY_COMMITTEES--FIN, dcid:sdg/SG_DMK_PARLCC_UC.AGE--_U__SEX--M__PARLIAMENTARY_COMMITTEES--GEQ, dcid:sdg/SG_DMK_PARLCC_UC.AGE--_U__SEX--M__PARLIAMENTARY_COMMITTEES--HR +name: Number of chairs of permanent parliamentary committees held by men whose age information is unknown: Upper Chamber Committees +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_PARLCC_UC.006 +member: dcid:sdg/SG_DMK_PARLCC_UC.AGE--_U__SEX--_U__PARLIAMENTARY_COMMITTEES--DEF, dcid:sdg/SG_DMK_PARLCC_UC.AGE--_U__SEX--_U__PARLIAMENTARY_COMMITTEES--FAFF, dcid:sdg/SG_DMK_PARLCC_UC.AGE--_U__SEX--_U__PARLIAMENTARY_COMMITTEES--FIN, dcid:sdg/SG_DMK_PARLCC_UC.AGE--_U__SEX--_U__PARLIAMENTARY_COMMITTEES--GEQ, dcid:sdg/SG_DMK_PARLCC_UC.AGE--_U__SEX--_U__PARLIAMENTARY_COMMITTEES--HR +name: Number of chairs of permanent parliamentary committees held by persons whose age and sex information is unknown: Upper Chamber Committees +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_PARLCC_UC.007 +member: dcid:sdg/SG_DMK_PARLCC_UC.AGE--Y0T45__SEX--F__PARLIAMENTARY_COMMITTEES--FAFF, dcid:sdg/SG_DMK_PARLCC_UC.AGE--Y0T45__SEX--F__PARLIAMENTARY_COMMITTEES--FAFF_DEF, dcid:sdg/SG_DMK_PARLCC_UC.AGE--Y0T45__SEX--F__PARLIAMENTARY_COMMITTEES--FAFF_HR, dcid:sdg/SG_DMK_PARLCC_UC.AGE--Y0T45__SEX--F__PARLIAMENTARY_COMMITTEES--FIN, dcid:sdg/SG_DMK_PARLCC_UC.AGE--Y0T45__SEX--F__PARLIAMENTARY_COMMITTEES--GEQ, dcid:sdg/SG_DMK_PARLCC_UC.AGE--Y0T45__SEX--F__PARLIAMENTARY_COMMITTEES--HR, dcid:sdg/SG_DMK_PARLCC_UC.AGE--Y0T45__SEX--F__PARLIAMENTARY_COMMITTEES--HR_GEQ +name: Number of chairs of permanent parliamentary committees held by women under 46 years old: Upper Chamber Committees +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_PARLCC_UC.008 +member: dcid:sdg/SG_DMK_PARLCC_UC.AGE--Y0T45__SEX--M__PARLIAMENTARY_COMMITTEES--DEF, dcid:sdg/SG_DMK_PARLCC_UC.AGE--Y0T45__SEX--M__PARLIAMENTARY_COMMITTEES--FAFF, dcid:sdg/SG_DMK_PARLCC_UC.AGE--Y0T45__SEX--M__PARLIAMENTARY_COMMITTEES--FAFF_DEF, dcid:sdg/SG_DMK_PARLCC_UC.AGE--Y0T45__SEX--M__PARLIAMENTARY_COMMITTEES--FIN, dcid:sdg/SG_DMK_PARLCC_UC.AGE--Y0T45__SEX--M__PARLIAMENTARY_COMMITTEES--GEQ, dcid:sdg/SG_DMK_PARLCC_UC.AGE--Y0T45__SEX--M__PARLIAMENTARY_COMMITTEES--HR, dcid:sdg/SG_DMK_PARLCC_UC.AGE--Y0T45__SEX--M__PARLIAMENTARY_COMMITTEES--HR_GEQ +name: Number of chairs of permanent parliamentary committees held by male under 46 years old: Upper Chamber Committees +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_PARLMP_LC.001 +member: dcid:sdg/SG_DMK_PARLMP_LC +name: Female representation ratio in parliament (proportion of women in parliament divided by the proportion of women in the national population eligible by age): Lower chamber or unicameral +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_PARLMP_UC.001 +member: dcid:sdg/SG_DMK_PARLMP_UC +name: Female representation ratio in parliament (proportion of women in parliament divided by the proportion of women in the national population eligible by age): Upper chamber +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_PARLSP_LC.001 +member: dcid:sdg/SG_DMK_PARLSP_LC.AGE--Y_GE46__SEX--F, dcid:sdg/SG_DMK_PARLSP_LC.AGE--Y_GE46__SEX--M +name: Number of persons 46 years and over who are speakers in parliement, by sex: Lower Chamber or Unicameral Committees +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_PARLSP_LC.002 +member: dcid:sdg/SG_DMK_PARLSP_LC.AGE--_U__SEX--F, dcid:sdg/SG_DMK_PARLSP_LC.AGE--_U__SEX--M, dcid:sdg/SG_DMK_PARLSP_LC.AGE--_X__SEX--_X +name: Number of persons whose age information is unknown or not available who are speakers in parliement, by sex: Lower Chamber or Unicameral Committees +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_PARLSP_LC.004 +member: dcid:sdg/SG_DMK_PARLSP_LC.AGE--Y0T45__SEX--F, dcid:sdg/SG_DMK_PARLSP_LC.AGE--Y0T45__SEX--M +name: Number of persons under 46 years old who are speakers in parliement, by sex: Lower Chamber or Unicameral Committees +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_PARLSP_LC.005 +member: dcid:sdg/SG_DMK_PARLSP_LC.SEX--F, dcid:sdg/SG_DMK_PARLSP_LC.SEX--M +name: Number of speakers in parliamen: Lower Chamber or Unicameral by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_PARLSP_UC.001 +member: dcid:sdg/SG_DMK_PARLSP_UC.AGE--Y_GE46__SEX--F, dcid:sdg/SG_DMK_PARLSP_UC.AGE--Y_GE46__SEX--M +name: Number of persons 46 years old and over who are speakers in parliement, by sex: Upper Chamber Committees +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_PARLSP_UC.002 +member: dcid:sdg/SG_DMK_PARLSP_UC.AGE--_U__SEX--F, dcid:sdg/SG_DMK_PARLSP_UC.AGE--_U__SEX--M, dcid:sdg/SG_DMK_PARLSP_UC.AGE--_X__SEX--_X +name: Number of persons whose age information is unknown or not available who are speakers in parliement, by sex: Upper Chamber Committees +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_PARLSP_UC.004 +member: dcid:sdg/SG_DMK_PARLSP_UC.AGE--Y0T45__SEX--F, dcid:sdg/SG_DMK_PARLSP_UC.AGE--Y0T45__SEX--M +name: Number of persons under 46 years old who are speakers in parliement, by sex: Upper Chamber Committees +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_PARLSP_UC.005 +member: dcid:sdg/SG_DMK_PARLSP_UC.SEX--F, dcid:sdg/SG_DMK_PARLSP_UC.SEX--M, dcid:sdg/SG_DMK_PARLSP_UC.SEX--_X +name: Number of speakers in parliament: Upper Chamber by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_PARLYN_LC.001 +member: dcid:sdg/SG_DMK_PARLYN_LC.AGE--Y0T45 +name: Number of youth in parliament (age 45 or below): Lower Chamber or Unicameral by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_PARLYN_UC.001 +member: dcid:sdg/SG_DMK_PARLYN_UC.AGE--Y0T45 +name: Number of youth in parliament (age 45 or below): Upper Chamber by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_PARLYP_LC.001 +member: dcid:sdg/SG_DMK_PARLYP_LC.AGE--Y0T45 +name: Proportion of youth in parliament (age 45 or below): Lower Chamber or Unicameral by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_PARLYP_UC.001 +member: dcid:sdg/SG_DMK_PARLYP_UC.AGE--Y0T45 +name: Proportion of youth in parliament (age 45 or below): Upper Chamber by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_PARLYR_LC.001 +member: dcid:sdg/SG_DMK_PARLYR_LC.AGE--Y0T45 +name: Youth representation ratio in parliament (proportion of members in parliament aged 45 or below divided by the share of individuals aged 45 or below in the national population eligible by age): Lower Chamber or Unicameral by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_PARLYR_UC.001 +member: dcid:sdg/SG_DMK_PARLYR_UC.AGE--Y0T45 +name: Youth representation ratio in parliament (proportion of members in parliament aged 45 or below divided by the share of individuals aged 45 or below in the national population eligible by age): Upper Chamber or Unicameral by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_PSRVC.001 +member: dcid:sdg/SG_DMK_PSRVC.AGE--Y0T34__OCCUPATION--AGG_PSP, dcid:sdg/SG_DMK_PSRVC.OCCUPATION--AGG_PSP, dcid:sdg/SG_DMK_PSRVC.OCCUPATION--AGG_PSP__DISABILITY_STATUS--PD, dcid:sdg/SG_DMK_PSRVC.OCCUPATION--AGG_PSP__POPULATION_GROUP--DNK_1, dcid:sdg/SG_DMK_PSRVC.OCCUPATION--AGG_PSP__POPULATION_GROUP--DNK_2, dcid:sdg/SG_DMK_PSRVC.OCCUPATION--AGG_PSP__POPULATION_GROUP--DNK_3, dcid:sdg/SG_DMK_PSRVC.OCCUPATION--AGG_PSP__POPULATION_GROUP--ISR_0, dcid:sdg/SG_DMK_PSRVC.OCCUPATION--AGG_PSP__POPULATION_GROUP--ISR_2, dcid:sdg/SG_DMK_PSRVC.OCCUPATION--AGG_PSP__POPULATION_GROUP--LSO_1, dcid:sdg/SG_DMK_PSRVC.OCCUPATION--AGG_PSP__POPULATION_GROUP--NOR_0, dcid:sdg/SG_DMK_PSRVC.OCCUPATION--AGG_PSP__POPULATION_GROUP--NOR_1, dcid:sdg/SG_DMK_PSRVC.OCCUPATION--AGG_PSP__POPULATION_GROUP--NOR_2, dcid:sdg/SG_DMK_PSRVC.OCCUPATION--AGG_PSP__POPULATION_GROUP--URY_0 +name: Proportion of positions in the public service held by specific groups compared to national distributions +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DMK_PSRVC.005 +member: dcid:sdg/SG_DMK_PSRVC.SEX--F__OCCUPATION--AGG_PSP, dcid:sdg/SG_DMK_PSRVC.SEX--F__OCCUPATION--ISCO08_1112, dcid:sdg/SG_DMK_PSRVC.SEX--F__OCCUPATION--ISCO08_112_121, dcid:sdg/SG_DMK_PSRVC.SEX--F__OCCUPATION--ISCO08_21_242_25_26, dcid:sdg/SG_DMK_PSRVC.SEX--F__OCCUPATION--ISCO08_31T35X32, dcid:sdg/SG_DMK_PSRVC.SEX--F__OCCUPATION--ISCO08_41 +name: Proportion of positions in the public service held by women compared to national distributions, by occupation group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DSR_LGRGSR.001 +member: dcid:sdg/SG_DSR_LGRGSR +name: Score of adoption and implementation of national disaster-risk reduction strategies in line with the Sendai Framework +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DSR_SFDRR.001 +member: dcid:sdg/SG_DSR_SFDRR +name: Number of countries that reported having a national disaster-risk reduction strategy which is aligned to the Sendai Framework +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DSR_SILN.001 +member: dcid:sdg/SG_DSR_SILN +name: Number of local governments that adopt and implement local disaster-risk reduction strategies in line with national strategies +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_DSR_SILS.001 +member: dcid:sdg/SG_DSR_SILS +name: Proportion of local governments that adopt and implement local disaster-risk reduction strategies in line with national disaster-risk reduction strategies +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_GEN_EQPWN.001 +member: dcid:sdg/SG_GEN_EQPWN +name: Proportion of countries with systems to track and make public allocations for gender equality and women's empowerment +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_GEN_EQPWNN.001 +member: dcid:sdg/SG_GEN_EQPWNN +name: Countries with systems to track and make public allocations for gender equality and women's empowerment +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_GEN_LOCGELS.001 +member: dcid:sdg/SG_GEN_LOCGELS.SEX--F +name: Proportion of elected seats in deliberative bodies of local government held by women by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_GEN_PARL.001 +member: dcid:sdg/SG_GEN_PARL.SEX--F +name: Proportion of seats in national parliaments held by women by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_GEN_PARLN.001 +member: dcid:sdg/SG_GEN_PARLN.SEX--F +name: Number of seats in national parliaments held by women by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_GEN_PARLNT.001 +member: dcid:sdg/SG_GEN_PARLNT +name: Current number of seats in national parliaments +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_GOV_LOGV.001 +member: dcid:sdg/SG_GOV_LOGV +name: Number of local governments +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_HAZ_CMRBASEL.001 +member: dcid:sdg/SG_HAZ_CMRBASEL +name: Parties meeting their commitments and obligations in transmitting information as required by Basel Convention on hazardous waste, and other chemicals +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_HAZ_CMRMNMT.001 +member: dcid:sdg/SG_HAZ_CMRMNMT +name: Parties meeting their commitments and obligations in transmitting information as required by Minamata Convention on hazardous waste, and other chemicals +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_HAZ_CMRMNTRL.001 +member: dcid:sdg/SG_HAZ_CMRMNTRL +name: Parties meeting their commitments and obligations in transmitting information as required by Montreal Protocol on hazardous waste, and other chemicals +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_HAZ_CMRROTDAM.001 +member: dcid:sdg/SG_HAZ_CMRROTDAM +name: Parties meeting their commitments and obligations in transmitting information as required by Rotterdam Convention on hazardous waste, and other chemicals +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_HAZ_CMRSTHOLM.001 +member: dcid:sdg/SG_HAZ_CMRSTHOLM +name: Parties meeting their commitments and obligations in transmitting information as required by Stockholm Convention on hazardous waste, and other chemicals +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_INF_ACCSS.001 +member: dcid:sdg/SG_INF_ACCSS +name: Countries that adopt and implement constitutional, statutory and/or policy guarantees for public access to information +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_INT_MBRDEV.001 +member: dcid:sdg/SG_INT_MBRDEV.INTERNATIONAL_ORGANIZATION--ORG200010, dcid:sdg/SG_INT_MBRDEV.INTERNATIONAL_ORGANIZATION--ORG200021, dcid:sdg/SG_INT_MBRDEV.INTERNATIONAL_ORGANIZATION--ORG200023, dcid:sdg/SG_INT_MBRDEV.INTERNATIONAL_ORGANIZATION--ORG200050, dcid:sdg/SG_INT_MBRDEV.INTERNATIONAL_ORGANIZATION--ORG200060, dcid:sdg/SG_INT_MBRDEV.INTERNATIONAL_ORGANIZATION--ORG200070, dcid:sdg/SG_INT_MBRDEV.INTERNATIONAL_ORGANIZATION--ORG400220, dcid:sdg/SG_INT_MBRDEV.INTERNATIONAL_ORGANIZATION--ORG600070, dcid:sdg/SG_INT_MBRDEV.INTERNATIONAL_ORGANIZATION--ORG700010, dcid:sdg/SG_INT_MBRDEV.INTERNATIONAL_ORGANIZATION--ORG700020, dcid:sdg/SG_INT_MBRDEV.INTERNATIONAL_ORGANIZATION--ORG700030 +name: Proportion of members of developing countries in international organizations by International organization +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_INT_VRTDEV.001 +member: dcid:sdg/SG_INT_VRTDEV.INTERNATIONAL_ORGANIZATION--ORG200010, dcid:sdg/SG_INT_VRTDEV.INTERNATIONAL_ORGANIZATION--ORG200021, dcid:sdg/SG_INT_VRTDEV.INTERNATIONAL_ORGANIZATION--ORG200023, dcid:sdg/SG_INT_VRTDEV.INTERNATIONAL_ORGANIZATION--ORG200050, dcid:sdg/SG_INT_VRTDEV.INTERNATIONAL_ORGANIZATION--ORG200060, dcid:sdg/SG_INT_VRTDEV.INTERNATIONAL_ORGANIZATION--ORG200070, dcid:sdg/SG_INT_VRTDEV.INTERNATIONAL_ORGANIZATION--ORG400220, dcid:sdg/SG_INT_VRTDEV.INTERNATIONAL_ORGANIZATION--ORG600070, dcid:sdg/SG_INT_VRTDEV.INTERNATIONAL_ORGANIZATION--ORG700010, dcid:sdg/SG_INT_VRTDEV.INTERNATIONAL_ORGANIZATION--ORG700020, dcid:sdg/SG_INT_VRTDEV.INTERNATIONAL_ORGANIZATION--ORG700030 +name: Proportion of voting rights of developing countries in international organizations by International organization +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_LGL_GENEQEMP.001 +member: dcid:sdg/SG_LGL_GENEQEMP +name: Level of achievement regarding legal frameworks that promote, enforce and monitor gender equality with respect to employment and economic benefits (Area 3) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_LGL_GENEQLFP.001 +member: dcid:sdg/SG_LGL_GENEQLFP +name: Level of achievement regarding legal frameworks that promote, enforce and monitor gender equality with respect to overarching legal frameworks and public life (Area 1) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_LGL_GENEQMAR.001 +member: dcid:sdg/SG_LGL_GENEQMAR +name: Level of achievement regarding legal frameworks that promote, enforce and monitor gender equality with respect to marriage and family (Area 4) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_LGL_GENEQVAW.001 +member: dcid:sdg/SG_LGL_GENEQVAW +name: Level of achievement regarding legal frameworks that promote, enforce and monitor gender equality with respect to violence against women (Area 2) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_LGL_LNDFEMOD.001 +member: dcid:sdg/SG_LGL_LNDFEMOD +name: Degree to which the legal framework (including customary law) guarantees women’s equal rights to land ownership and/or control +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_NHR_CMPLNC.001 +member: dcid:sdg/SG_NHR_CMPLNC +name: Countries with National Human Rights Institutions in compliance with the Paris Principles +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_NHR_IMPL.001 +member: dcid:sdg/SG_NHR_IMPL +name: Proportion of countries with independent National Human Rights Institutions in compliance with the Paris Principles +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_NHR_INTEXST.001 +member: dcid:sdg/SG_NHR_INTEXST +name: Proportion of countries that applied for accreditation as independent National Human Rights Institutions in compliance with the Paris Principles +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_PLN_MSTKSDG_P.001 +member: dcid:sdg/SG_PLN_MSTKSDG_P +name: Number of provider countries reporting progress in multi-stakeholder development effectiveness monitoring frameworks that support the achievement of the sustainable development goals +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_PLN_MSTKSDG_R.001 +member: dcid:sdg/SG_PLN_MSTKSDG_R +name: Number of recipient countries reporting progress in multi-stakeholder development effectiveness monitoring frameworks that support the achievement of the sustainable development goals +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_PLN_PRPOLRES.001 +member: dcid:sdg/SG_PLN_PRPOLRES +name: Extent of use of country-owned results frameworks and planning tools by providers of development cooperation - data by provider +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_PLN_PRVNDI.001 +member: dcid:sdg/SG_PLN_PRVNDI +name: Proportion of project objectives of new development interventions drawn from country-led result frameworks - data by provider +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_PLN_PRVRICTRY.001 +member: dcid:sdg/SG_PLN_PRVRICTRY +name: Proportion of results indicators drawn from country-led results frameworks - data by provider +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_PLN_PRVRIMON.001 +member: dcid:sdg/SG_PLN_PRVRIMON +name: Proportion of results indicators which will be monitored using government sources and monitoring systems - data by provider +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_PLN_RECNDI.001 +member: dcid:sdg/SG_PLN_RECNDI +name: Proportion of project objectives in new development interventions drawn from country-led result frameworks - data by recipient +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_PLN_RECRICTRY.001 +member: dcid:sdg/SG_PLN_RECRICTRY +name: Proportion of results indicators drawn from country-led results frameworks - data by recipient +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_PLN_RECRIMON.001 +member: dcid:sdg/SG_PLN_RECRIMON +name: Proportion of results indicators which will be monitored using government sources and monitoring systems - data by recipient +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_PLN_REPOLRES.001 +member: dcid:sdg/SG_PLN_REPOLRES +name: Extent of use of country-owned results frameworks and planning tools by providers of development cooperation - data by recipient +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_REG_BRTH.001 +member: dcid:sdg/SG_REG_BRTH.AGE--M12T23, dcid:sdg/SG_REG_BRTH.AGE--M24T35, dcid:sdg/SG_REG_BRTH.AGE--M36T47, dcid:sdg/SG_REG_BRTH.AGE--M48T59, dcid:sdg/SG_REG_BRTH.AGE--Y0, dcid:sdg/SG_REG_BRTH.AGE--Y0T4, dcid:sdg/SG_REG_BRTH.AGE--Y0T7 +name: Proportion of children under 5 years of age whose births have been registered with a civil authority by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_REG_BRTH90.001 +member: dcid:sdg/SG_REG_BRTH90 +name: Proportion of countries with birth registration data that are at least 90 percent complete +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_REG_BRTH90N.001 +member: dcid:sdg/SG_REG_BRTH90N +name: Countries with birth registration data that are at least 90 percent complete +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_REG_CENSUS.001 +member: dcid:sdg/SG_REG_CENSUS +name: Proportion of countries that have conducted at least one population and housing census in the last 10 years +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_REG_CENSUSN.001 +member: dcid:sdg/SG_REG_CENSUSN +name: Countries that have conducted at least one population and housing census in the last 10 years +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_REG_DETH75.001 +member: dcid:sdg/SG_REG_DETH75 +name: Proportion of countries with death registration data that are at least 75 percent complete +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_REG_DETH75N.001 +member: dcid:sdg/SG_REG_DETH75N +name: Countries with death registration data that are at least 75 percent complete +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_SCP_CNTRY.001 +member: dcid:sdg/SG_SCP_CNTRY +name: Countries with sustainable consumption and production (SCP) national action plans or SCP mainstreamed as a priority or target into national policies +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_SCP_POLINS.001 +member: dcid:sdg/SG_SCP_POLINS.POLICY_INSTRUMENT--POL_ECONFIS, dcid:sdg/SG_SCP_POLINS.POLICY_INSTRUMENT--POL_MACRO, dcid:sdg/SG_SCP_POLINS.POLICY_INSTRUMENT--POL_REGLEG, dcid:sdg/SG_SCP_POLINS.POLICY_INSTRUMENT--POL_VOLSRG +name: Countries with policy instrument for sustainable consumption and production by Policy instrument +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_SCP_PROCN.001 +member: dcid:sdg/SG_SCP_PROCN.LEVEL_STATUS--HIGIMP, dcid:sdg/SG_SCP_PROCN.LEVEL_STATUS--LOWIMP, dcid:sdg/SG_SCP_PROCN.LEVEL_STATUS--MHIGIMP, dcid:sdg/SG_SCP_PROCN.LEVEL_STATUS--MLOWIMP +name: Number of countries implementing sustainable public procurement policies and action plans by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_SCP_PROCN_HS.001 +member: dcid:sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--ARTIGAS +name: Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Artigas) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_SCP_PROCN_HS.002 +member: dcid:sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--CANELONES +name: Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Canelones) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_SCP_PROCN_HS.003 +member: dcid:sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--CERRO_LARGO +name: Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Cerro Largo) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_SCP_PROCN_HS.004 +member: dcid:sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--COLONIA +name: Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Colonia) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_SCP_PROCN_HS.005 +member: dcid:sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--MHIGIMP__GOVERNMENT_NAME--COMUNIDAD_AUTONOMA_DEL_PAIS_VASCO +name: Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Comunidad Autónoma del País Vasco) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_SCP_PROCN_HS.006 +member: dcid:sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--FLORES +name: Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Flores) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_SCP_PROCN_HS.007 +member: dcid:sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--FLORIDA +name: Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Florida) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_SCP_PROCN_HS.008 +member: dcid:sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--GREATER_POLAND_VOIVODESHIP +name: Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Greater Poland Voivodeship) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_SCP_PROCN_HS.009 +member: dcid:sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--LAVALLEJA +name: Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Lavalleja) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_SCP_PROCN_HS.010 +member: dcid:sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--LESSER_POLAND_VOIVODESHIP +name: Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Lesser Poland Voivodeship) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_SCP_PROCN_HS.011 +member: dcid:sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--MLOWIMP__GOVERNMENT_NAME--LOWER_SILESIAN_VOIVODESHIP +name: Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Lower Silesian Voivodeship) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_SCP_PROCN_HS.012 +member: dcid:sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--MLOWIMP__GOVERNMENT_NAME--LODZ_VOIVODESHIP +name: Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Lódz Voivodeship) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_SCP_PROCN_HS.013 +member: dcid:sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--MALDONADO +name: Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Maldonado) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_SCP_PROCN_HS.014 +member: dcid:sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--MLOWIMP__GOVERNMENT_NAME--MASOVIAN_VOIVODESHIP +name: Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Masovian Voivodeship) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_SCP_PROCN_HS.015 +member: dcid:sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--MONTEVIDEO +name: Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Montevideo) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_SCP_PROCN_HS.016 +member: dcid:sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--PAYSANDU +name: Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Paysandú) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_SCP_PROCN_HS.017 +member: dcid:sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--PODKARPACKIE_VOIVODESHIP +name: Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Podkarpackie Voivodeship) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_SCP_PROCN_HS.018 +member: dcid:sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--MLOWIMP__GOVERNMENT_NAME--POMERANIAN_VOIVODESHIP +name: Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Pomeranian Voivodeship) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_SCP_PROCN_HS.019 +member: dcid:sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--RIVERA +name: Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Rivera) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_SCP_PROCN_HS.020 +member: dcid:sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--RIO_NEGRO +name: Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Río Negro) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_SCP_PROCN_HS.021 +member: dcid:sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--SALTO +name: Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Salto) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_SCP_PROCN_HS.022 +member: dcid:sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--SAN_JOSE +name: Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (San José) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_SCP_PROCN_HS.023 +member: dcid:sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--MLOWIMP__GOVERNMENT_NAME--SILESIAN_VOIVODESHIP +name: Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Silesian Voivodeship) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_SCP_PROCN_HS.024 +member: dcid:sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--MLOWIMP__GOVERNMENT_NAME--STATE_OF_MINNESOTA +name: Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (State of Minnesota) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_SCP_PROCN_HS.025 +member: dcid:sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--SWIETOKRZYSKIE_VOIVODESHIP +name: Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Swietokrzyskie Voivodeship) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_SCP_PROCN_HS.026 +member: dcid:sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--TACUAREMBO +name: Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Tacuarembó) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_SCP_PROCN_HS.027 +member: dcid:sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--TREINTA_Y_TRES +name: Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Treinta Y Tres) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_SCP_PROCN_HS.028 +member: dcid:sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--MHIGIMP__GOVERNMENT_NAME--VLAAMSE_OVERHEID +name: Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Vlaamse overheid (Government of Flanders)) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_SCP_PROCN_HS.029 +member: dcid:sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--MLOWIMP__GOVERNMENT_NAME--WALLOON_REGION +name: Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Walloon region) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_SCP_PROCN_HS.030 +member: dcid:sdg/SG_SCP_PROCN_HS.LEVEL_STATUS--MLOWIMP__GOVERNMENT_NAME--WEST_POMERANIAN_VOIVODESHIP +name: Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (West Pomeranian Voivodeship) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_SCP_PROCN_LS.001 +member: dcid:sdg/SG_SCP_PROCN_LS.LEVEL_STATUS--HIGIMP__GOVERNMENT_NAME--AYUNTAMIENTO_DE_BARCELONA +name: Number of countries implementing sustainable public procurement policies and action plans at lower subnational level by level of implementation (Ayuntamiento de Barcelona) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_SCP_PROCN_LS.002 +member: dcid:sdg/SG_SCP_PROCN_LS.LEVEL_STATUS--MLOWIMP__GOVERNMENT_NAME--CITY_COUNTY_OF_SAN_FRANCISCO +name: Number of countries implementing sustainable public procurement policies and action plans at lower subnational level by level of implementation (City & county of San Francisco) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_SCP_PROCN_LS.003 +member: dcid:sdg/SG_SCP_PROCN_LS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--CITY_OF_PORTLAND_OREGON +name: Number of countries implementing sustainable public procurement policies and action plans at lower subnational level by level of implementation (City of Portland, Oregon) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_SCP_PROCN_LS.004 +member: dcid:sdg/SG_SCP_PROCN_LS.LEVEL_STATUS--MLOWIMP__GOVERNMENT_NAME--CITY_OF_POZNAN +name: Number of countries implementing sustainable public procurement policies and action plans at lower subnational level by level of implementation (City of Poznan) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_SCP_PROCN_LS.005 +member: dcid:sdg/SG_SCP_PROCN_LS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--CITY_OF_STAVANGER +name: Number of countries implementing sustainable public procurement policies and action plans at lower subnational level by level of implementation (City of Stavanger) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_SCP_PROCN_LS.006 +member: dcid:sdg/SG_SCP_PROCN_LS.LEVEL_STATUS--LOWIMP__GOVERNMENT_NAME--CITY_OF_TRONDHEIM +name: Number of countries implementing sustainable public procurement policies and action plans at lower subnational level by level of implementation (City of Trondheim) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_SCP_PROCN_LS.007 +member: dcid:sdg/SG_SCP_PROCN_LS.LEVEL_STATUS--MLOWIMP__GOVERNMENT_NAME--CITY_OF_WARSAW +name: Number of countries implementing sustainable public procurement policies and action plans at lower subnational level by level of implementation (City of Warsaw) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_SCP_PROCN_LS.008 +member: dcid:sdg/SG_SCP_PROCN_LS.LEVEL_STATUS--MHIGIMP__GOVERNMENT_NAME--KING_COUNTY_WASHINGTON +name: Number of countries implementing sustainable public procurement policies and action plans at lower subnational level by level of implementation (King County, Washington) by Level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_SCP_PROCN_LS.009 +member: dcid:sdg/SG_SCP_PROCN_LS.LEVEL_STATUS--MLOWIMP +name: Number of countries implementing sustainable public procurement policies and action plans at lower subnational level, with medium-low level of implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_SCP_TOTLN.001 +member: dcid:sdg/SG_SCP_TOTLN +name: Number of policies, instruments and mechanism in place for sustainable consumption and production +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_STT_CAPTY.001 +member: dcid:sdg/SG_STT_CAPTY +name: Dollar value of all resources made available to strengthen statistical capacity in developing countries +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_STT_FPOS.001 +member: dcid:sdg/SG_STT_FPOS +name: Countries with national statistical legislation that complies with the Fundamental Principles of Official Statistics +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_STT_NSDSFDDNR.001 +member: dcid:sdg/SG_STT_NSDSFDDNR +name: Countries with national statistical plans with funding from donors +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_STT_NSDSFDGVT.001 +member: dcid:sdg/SG_STT_NSDSFDGVT +name: Countries with national statistical plans with funding from government +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_STT_NSDSFDOTHR.001 +member: dcid:sdg/SG_STT_NSDSFDOTHR +name: Countries with national statistical plans with funding from others +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_STT_NSDSFND.001 +member: dcid:sdg/SG_STT_NSDSFND +name: Countries with national statistical plans that are fully funded +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_STT_NSDSIMPL.001 +member: dcid:sdg/SG_STT_NSDSIMPL +name: Countries with national statistical plans that are under implementation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_STT_ODIN.001 +member: dcid:sdg/SG_STT_ODIN +name: Open Data Inventory (ODIN) Coverage Index +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_XPD_EDUC.001 +member: dcid:sdg/SG_XPD_EDUC +name: Proportion of total government spending on essential services: education +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_XPD_ESSRV.001 +member: dcid:sdg/SG_XPD_ESSRV +name: Proportion of total government spending on essential services +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_XPD_HLTH.001 +member: dcid:sdg/SG_XPD_HLTH +name: Proportion of total government spending on essential services: health +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSG_XPD_PROT.001 +member: dcid:sdg/SG_XPD_PROT +name: Proportion of total government spending on essential services: social protection +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_AAP_ASMORT.001 +member: dcid:sdg/SH_AAP_ASMORT +name: Age-standardized mortality rate attributed to ambient air pollution +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_ACS_DTP3.001 +member: dcid:sdg/SH_ACS_DTP3 +name: Proportion of the target population who received 3 doses of diphtheria-tetanus-pertussis (DTP3) vaccine +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_ACS_HPV.001 +member: dcid:sdg/SH_ACS_HPV +name: Proportion of the target population who received the final dose of human papillomavirus (HPV) vaccine +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_ACS_MCV2.001 +member: dcid:sdg/SH_ACS_MCV2 +name: Proportion of the target population who received measles-containing-vaccine second-dose (MCV2) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_ACS_PCV3.001 +member: dcid:sdg/SH_ACS_PCV3 +name: Proportion of the target population who received a 3rd dose of pneumococcal conjugate (PCV3) vaccine +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_ACS_UNHC.001 +member: dcid:sdg/SH_ACS_UNHC +name: Universal health coverage (UHC) service coverage index +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_ALC_CONSPT.001 +member: dcid:sdg/SH_ALC_CONSPT.AGE--Y_GE15 +name: Alcohol consumption per capita among individuals aged 15 years and older within a calendar year +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_ALC_CONSPT.002 +member: dcid:sdg/SH_ALC_CONSPT.AGE--Y_GE15__SEX--F, dcid:sdg/SH_ALC_CONSPT.AGE--Y_GE15__SEX--M +name: Alcohol consumption per capita among individuals aged 15 years and older within a calendar year by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_BLD_ECOLI.001 +member: dcid:sdg/SH_BLD_ECOLI +name: Percentage of bloodstream infection due to Escherichia coli resistant to 3rd-generation cephalosporin (e.g., ESBL- E. coli) among patients seeking care and whose blood sample is taken and tested +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_BLD_MRSA.001 +member: dcid:sdg/SH_BLD_MRSA +name: Percentage of bloodstream infection due to methicillin-resistant Staphylococcus aureus (MRSA) among patients seeking care and whose blood sample is taken and tested +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_DTH_NCD.001 +member: dcid:sdg/SH_DTH_NCD.GHE_CAUSE--GHE2019_II_A, dcid:sdg/SH_DTH_NCD.GHE_CAUSE--GHE2019_II_C, dcid:sdg/SH_DTH_NCD.GHE_CAUSE--GHE2019_II_H, dcid:sdg/SH_DTH_NCD.GHE_CAUSE--GHE2019_II_I_CHRONIC +name: Number of deaths attributed to non-communicable diseases by Disease +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_DTH_NCD.002 +member: dcid:sdg/SH_DTH_NCD.SEX--F__GHE_CAUSE--GHE2019_II_A, dcid:sdg/SH_DTH_NCD.SEX--F__GHE_CAUSE--GHE2019_II_C, dcid:sdg/SH_DTH_NCD.SEX--F__GHE_CAUSE--GHE2019_II_H, dcid:sdg/SH_DTH_NCD.SEX--F__GHE_CAUSE--GHE2019_II_I_CHRONIC +name: Number of deaths attributed to non-communicable diseases (Female) by Disease +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_DTH_NCD.003 +member: dcid:sdg/SH_DTH_NCD.SEX--M__GHE_CAUSE--GHE2019_II_A, dcid:sdg/SH_DTH_NCD.SEX--M__GHE_CAUSE--GHE2019_II_C, dcid:sdg/SH_DTH_NCD.SEX--M__GHE_CAUSE--GHE2019_II_H, dcid:sdg/SH_DTH_NCD.SEX--M__GHE_CAUSE--GHE2019_II_I_CHRONIC +name: Number of deaths attributed to non-communicable diseases (Male) by Disease +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_DTH_NCOM.002 +member: dcid:sdg/SH_DTH_NCOM.AGE--Y30T70, dcid:sdg/SH_DTH_NCOM.AGE--Y30T70__SEX--F, dcid:sdg/SH_DTH_NCOM.AGE--Y30T70__SEX--M +name: Mortality rate attributed to cardiovascular disease, cancer, diabetes or chronic respiratory disease (probability) (30 to 70 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_DYN_IMRT.002 +member: dcid:sdg/SH_DYN_IMRT.AGE--Y0, dcid:sdg/SH_DYN_IMRT.AGE--Y0__SEX--F, dcid:sdg/SH_DYN_IMRT.AGE--Y0__SEX--M +name: Infant mortality rate (under 1 year old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_DYN_IMRTN.002 +member: dcid:sdg/SH_DYN_IMRTN.AGE--Y0, dcid:sdg/SH_DYN_IMRTN.AGE--Y0__SEX--F, dcid:sdg/SH_DYN_IMRTN.AGE--Y0__SEX--M +name: Infant deaths (under 1 year old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_DYN_MORT.002 +member: dcid:sdg/SH_DYN_MORT.AGE--Y0T4, dcid:sdg/SH_DYN_MORT.AGE--Y0T4__SEX--F, dcid:sdg/SH_DYN_MORT.AGE--Y0T4__SEX--M +name: Under-five mortality rate (under 5 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_DYN_MORTN.002 +member: dcid:sdg/SH_DYN_MORTN.AGE--Y0T4, dcid:sdg/SH_DYN_MORTN.AGE--Y0T4__SEX--F, dcid:sdg/SH_DYN_MORTN.AGE--Y0T4__SEX--M +name: Under-five deaths (under 5 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_DYN_NMRT.001 +member: dcid:sdg/SH_DYN_NMRT.AGE--M0 +name: Neonatal mortality rate +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_DYN_NMRTN.001 +member: dcid:sdg/SH_DYN_NMRTN.AGE--M0 +name: Neonatal deaths +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_FPL_INFM.001 +member: dcid:sdg/SH_FPL_INFM.AGE--Y15T49__SEX--F +name: Proportion of women who make their own informed decisions regarding sexual relations, contraceptive use and reproductive health care (15 to 49 years old) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_FPL_INFMCU.001 +member: dcid:sdg/SH_FPL_INFMCU.AGE--Y15T49__SEX--F +name: Proportion of women who make their own informed decisions regarding contraceptive use (15 to 49 years old) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_FPL_INFMRH.001 +member: dcid:sdg/SH_FPL_INFMRH.AGE--Y15T49__SEX--F +name: Proportion of women who make their own informed decisions regarding reproductive health care (15 to 49 years old) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_FPL_INFMSR.001 +member: dcid:sdg/SH_FPL_INFMSR.AGE--Y15T49__SEX--F +name: Proportion of women who make their own informed decisions regarding sexual relations (15 to 49 years old) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_FPL_MTMM.001 +member: dcid:sdg/SH_FPL_MTMM.AGE--Y15T49__SEX--F +name: Proportion of women of reproductive age (aged 15-49 years) who have their need for family planning satisfied with modern methods +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_H2O_SAFE.001 +member: dcid:sdg/SH_H2O_SAFE +name: Proportion of population using safely managed drinking water services +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_H2O_SAFE.002 +member: dcid:sdg/SH_H2O_SAFE.URBANIZATION--R, dcid:sdg/SH_H2O_SAFE.URBANIZATION--U +name: Proportion of population using safely managed drinking water services by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_HAP_ASMORT.001 +member: dcid:sdg/SH_HAP_ASMORT +name: Age-standardized mortality rate attributed to household air pollution +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_HAP_HBSAG.001 +member: dcid:sdg/SH_HAP_HBSAG.AGE--Y0T4 +name: Prevalence of hepatitis B surface antigen (HBsAg) (under 5 years old) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_HIV_INCD.001 +member: dcid:sdg/SH_HIV_INCD +name: Number of new HIV infections per 1, 000 uninfected population +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_HIV_INCD.002 +member: dcid:sdg/SH_HIV_INCD.AGE--Y0T14, dcid:sdg/SH_HIV_INCD.AGE--Y15T24, dcid:sdg/SH_HIV_INCD.AGE--Y15T49, dcid:sdg/SH_HIV_INCD.AGE--Y_GE50 +name: Number of new HIV infections per 1, 000 uninfected population by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_HIV_INCD.003 +member: dcid:sdg/SH_HIV_INCD.AGE--Y15T24__SEX--F, dcid:sdg/SH_HIV_INCD.AGE--Y15T24__SEX--M +name: Number of new HIV infections per 1, 000 uninfected population (15 to 24 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_HIV_INCD.004 +member: dcid:sdg/SH_HIV_INCD.AGE--Y15T49__SEX--F, dcid:sdg/SH_HIV_INCD.AGE--Y15T49__SEX--M +name: Number of new HIV infections per 1, 000 uninfected population (15 to 49 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_HIV_INCD.005 +member: dcid:sdg/SH_HIV_INCD.AGE--Y_GE50__SEX--F, dcid:sdg/SH_HIV_INCD.AGE--Y_GE50__SEX--M +name: Number of new HIV infections per 1, 000 uninfected population (50 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_HIV_INCD.006 +member: dcid:sdg/SH_HIV_INCD.SEX--F, dcid:sdg/SH_HIV_INCD.SEX--M +name: Number of new HIV infections per 1, 000 uninfected population by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_HLF_EMED.001 +member: dcid:sdg/SH_HLF_EMED +name: Proportion of health facilities that have a core set of relevant essential medicines available and affordable on a sustainable basis +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_IHR_CAPS.001 +member: dcid:sdg/SH_IHR_CAPS +name: International Health Regulations (IHR) capacity +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_IHR_CAPS.002 +member: dcid:sdg/SH_IHR_CAPS.IHR_CAPACITY--IHR_01, dcid:sdg/SH_IHR_CAPS.IHR_CAPACITY--IHR_02, dcid:sdg/SH_IHR_CAPS.IHR_CAPACITY--IHR_03, dcid:sdg/SH_IHR_CAPS.IHR_CAPACITY--IHR_04, dcid:sdg/SH_IHR_CAPS.IHR_CAPACITY--IHR_05, dcid:sdg/SH_IHR_CAPS.IHR_CAPACITY--IHR_06, dcid:sdg/SH_IHR_CAPS.IHR_CAPACITY--IHR_07, dcid:sdg/SH_IHR_CAPS.IHR_CAPACITY--IHR_08, dcid:sdg/SH_IHR_CAPS.IHR_CAPACITY--IHR_09, dcid:sdg/SH_IHR_CAPS.IHR_CAPACITY--IHR_10, dcid:sdg/SH_IHR_CAPS.IHR_CAPACITY--IHR_11, dcid:sdg/SH_IHR_CAPS.IHR_CAPACITY--IHR_12, dcid:sdg/SH_IHR_CAPS.IHR_CAPACITY--IHR_13 +name: International Health Regulations (IHR) capacity by IHR core capacities +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_IHR_CAPS.003 +member: dcid:sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR_01, dcid:sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR_02, dcid:sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR_03, dcid:sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR_04, dcid:sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR_05, dcid:sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR_06, dcid:sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR_07, dcid:sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR_08, dcid:sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR_09, dcid:sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR_10, dcid:sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR_11, dcid:sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR_12, dcid:sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR_13 +name: International Health Regulations (IHR) capacity by IHR core capacities (SPAR) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_IHR_CAPS.004 +member: dcid:sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR2_C01, dcid:sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR2_C02, dcid:sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR2_C03, dcid:sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR2_C04, dcid:sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR2_C05, dcid:sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR2_C06, dcid:sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR2_C07, dcid:sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR2_C08, dcid:sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR2_C09, dcid:sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR2_C10, dcid:sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR2_C11, dcid:sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR2_C12, dcid:sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR2_C13, dcid:sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR2_C14, dcid:sdg/SH_IHR_CAPS.IHR_CAPACITY--SPAR2_C15 +name: International Health Regulations (IHR) capacity by IHR core capacities (SPAR2) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_LGR_ACSRHE.001 +member: dcid:sdg/SH_LGR_ACSRHE +name: Extent to which countries have 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 +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_LGR_ACSRHEC1.001 +member: dcid:sdg/SH_LGR_ACSRHEC1 +name: Extent to which countries have 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 (maternity care component) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_LGR_ACSRHEC10.001 +member: dcid:sdg/SH_LGR_ACSRHEC10 +name: Extent to which countries have 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 (HIV testing and counsellilng component) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_LGR_ACSRHEC11.001 +member: dcid:sdg/SH_LGR_ACSRHEC11 +name: Extent to which countries have 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 (HIV treatment and care component) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_LGR_ACSRHEC12.001 +member: dcid:sdg/SH_LGR_ACSRHEC12 +name: Extent to which countries have 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 (HIV Confidentiality component) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_LGR_ACSRHEC13.001 +member: dcid:sdg/SH_LGR_ACSRHEC13 +name: Extent to which countries have 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 (HPV Vaccine component) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_LGR_ACSRHEC2.001 +member: dcid:sdg/SH_LGR_ACSRHEC2 +name: Extent to which countries have 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 (life-saving commodities component) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_LGR_ACSRHEC3.001 +member: dcid:sdg/SH_LGR_ACSRHEC3 +name: Extent to which countries have 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 (abortion component) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_LGR_ACSRHEC4.001 +member: dcid:sdg/SH_LGR_ACSRHEC4 +name: Extent to which countries have 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 (post-abortion care component) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_LGR_ACSRHEC5.001 +member: dcid:sdg/SH_LGR_ACSRHEC5 +name: Extent to which countries have 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 (contraceptive services component) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_LGR_ACSRHEC6.001 +member: dcid:sdg/SH_LGR_ACSRHEC6 +name: Extent to which countries have 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 (consent for contraceptive services component) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_LGR_ACSRHEC7.001 +member: dcid:sdg/SH_LGR_ACSRHEC7 +name: Extent to which countries have 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 (emergency contraception component) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_LGR_ACSRHEC8.001 +member: dcid:sdg/SH_LGR_ACSRHEC8 +name: Extent to which countries have 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 (comprehensive sexuality education curriculum laws component) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_LGR_ACSRHEC9.001 +member: dcid:sdg/SH_LGR_ACSRHEC9 +name: Extent to which countries have 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 (comprehensive sexuality education curriculum topics component) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_LGR_ACSRHES1.001 +member: dcid:sdg/SH_LGR_ACSRHES1 +name: Extent to which countries have 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 (maternity care section) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_LGR_ACSRHES2.001 +member: dcid:sdg/SH_LGR_ACSRHES2 +name: Extent to which countries have 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 (contraception and family planning section) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_LGR_ACSRHES3.001 +member: dcid:sdg/SH_LGR_ACSRHES3 +name: Extent to which countries have 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 (comprehensive sexuality education and information section) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_LGR_ACSRHES4.001 +member: dcid:sdg/SH_LGR_ACSRHES4 +name: Extent to which countries have 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 (HIV and HPV) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_MED_DEN.001 +member: dcid:sdg/SH_MED_DEN.OCCUPATION--ISCO08_221, dcid:sdg/SH_MED_DEN.OCCUPATION--ISCO08_222_322, dcid:sdg/SH_MED_DEN.OCCUPATION--ISCO08_2261, dcid:sdg/SH_MED_DEN.OCCUPATION--ISCO08_2262 +name: Health worker density by Professionals (ISCO08 - 2) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_MED_HWRKDIS.001 +member: dcid:sdg/SH_MED_HWRKDIS.SEX--F__OCCUPATION--ISCO08_221, dcid:sdg/SH_MED_HWRKDIS.SEX--F__OCCUPATION--ISCO08_2221_3221 +name: Health worker distribution (Female) by Professionals (ISCO08 - 2) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_MED_HWRKDIS.002 +member: dcid:sdg/SH_MED_HWRKDIS.SEX--M__OCCUPATION--ISCO08_221, dcid:sdg/SH_MED_HWRKDIS.SEX--M__OCCUPATION--ISCO08_2221_3221 +name: Health worker distribution (Male) by Professionals (ISCO08 - 2) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_PRV_SMOK.001 +member: dcid:sdg/SH_PRV_SMOK.AGE--Y_GE15 +name: Age-standardized prevalence of current tobacco use among persons aged 15 years and older +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_PRV_SMOK.002 +member: dcid:sdg/SH_PRV_SMOK.AGE--Y_GE15__SEX--F, dcid:sdg/SH_PRV_SMOK.AGE--Y_GE15__SEX--M +name: Age-standardized prevalence of current tobacco use among persons aged 15 years and older by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_SAN_DEFECT.001 +member: dcid:sdg/SH_SAN_DEFECT +name: Proportion of population practicing open defecation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_SAN_DEFECT.002 +member: dcid:sdg/SH_SAN_DEFECT.URBANIZATION--R, dcid:sdg/SH_SAN_DEFECT.URBANIZATION--U +name: Proportion of population practicing open defecation by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_SAN_HNDWSH.001 +member: dcid:sdg/SH_SAN_HNDWSH +name: Proportion of population with basic handwashing facilities on premises +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_SAN_HNDWSH.002 +member: dcid:sdg/SH_SAN_HNDWSH.URBANIZATION--R, dcid:sdg/SH_SAN_HNDWSH.URBANIZATION--U +name: Proportion of population with basic handwashing facilities on premises by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_SAN_SAFE.001 +member: dcid:sdg/SH_SAN_SAFE +name: Proportion of population using safely managed sanitation services +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_SAN_SAFE.002 +member: dcid:sdg/SH_SAN_SAFE.URBANIZATION--R, dcid:sdg/SH_SAN_SAFE.URBANIZATION--U +name: Proportion of population using safely managed sanitation services by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_STA_ANEM.001 +member: dcid:sdg/SH_STA_ANEM.AGE--Y15T49__SEX--F +name: Proportion of women aged 15-49 years with anaemia +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_STA_ANEM_NPRG.001 +member: dcid:sdg/SH_STA_ANEM_NPRG.AGE--Y15T49__SEX--F +name: Proportion of non-pregnant women aged 15-49 years with anaemia +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_STA_ANEM_PREG.001 +member: dcid:sdg/SH_STA_ANEM_PREG.AGE--Y15T49__SEX--F +name: Proportion of women aged 15-49 years with anaemia, pregnant +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_STA_ASAIRP.001 +member: dcid:sdg/SH_STA_ASAIRP +name: Age-standardized mortality rate attributed to household and ambient air pollution +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_STA_BRTC.001 +member: dcid:sdg/SH_STA_BRTC +name: Proportion of births attended by skilled health personnel +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_STA_FGMS.001 +member: dcid:sdg/SH_STA_FGMS.AGE--Y15T19__SEX--F, dcid:sdg/SH_STA_FGMS.AGE--Y15T49__SEX--F +name: Proportion of girls and women aged 15-49 years who have undergone female genital mutilation by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_STA_MALR.001 +member: dcid:sdg/SH_STA_MALR +name: Malaria incidence per 1, 000 population at risk +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_STA_MORT.001 +member: dcid:sdg/SH_STA_MORT.SEX--F +name: Maternal mortality ratio +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_STA_POISN.001 +member: dcid:sdg/SH_STA_POISN +name: Mortality rate attributed to unintentional poisonings +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_STA_POISN.002 +member: dcid:sdg/SH_STA_POISN.SEX--F, dcid:sdg/SH_STA_POISN.SEX--M +name: Mortality rate attributed to unintentional poisonings by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_STA_SCIDE.001 +member: dcid:sdg/SH_STA_SCIDE +name: Suicide mortality rate +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_STA_SCIDE.002 +member: dcid:sdg/SH_STA_SCIDE.SEX--F, dcid:sdg/SH_STA_SCIDE.SEX--M +name: Suicide mortality rate by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_STA_SCIDEN.001 +member: dcid:sdg/SH_STA_SCIDEN +name: Number of deaths attributed to suicide +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_STA_SCIDEN.002 +member: dcid:sdg/SH_STA_SCIDEN.SEX--F, dcid:sdg/SH_STA_SCIDEN.SEX--M +name: Number of deaths attributed to suicide by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_STA_STNT.001 +member: dcid:sdg/SH_STA_STNT.AGE--Y0T4 +name: Proportion of children moderately or severely stunted +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_STA_STNTN.001 +member: dcid:sdg/SH_STA_STNTN.AGE--Y0T4 +name: Children moderately or severely stunted +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_STA_TRAF.001 +member: dcid:sdg/SH_STA_TRAF +name: Death rate due to road traffic injuries +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_STA_TRAFN.001 +member: dcid:sdg/SH_STA_TRAFN +name: Number of deaths rate due to road traffic injuries +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_STA_WASHARI.001 +member: dcid:sdg/SH_STA_WASHARI +name: Mortality rate attributed to unsafe water, unsafe sanitation and lack of hygiene from diarrhoea, intestinal nematode infections, malnutrition and acute respiratory infections +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_STA_WAST.001 +member: dcid:sdg/SH_STA_WAST.AGE--Y0T4 +name: Proportion of children moderately or severely wasted +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_STA_WASTN.001 +member: dcid:sdg/SH_STA_WASTN.AGE--Y0T4 +name: Children moderately or severely wasted +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_SUD_ALCOL.002 +member: dcid:sdg/SH_SUD_ALCOL.AGE--Y_GE15, dcid:sdg/SH_SUD_ALCOL.AGE--Y_GE15__SEX--F, dcid:sdg/SH_SUD_ALCOL.AGE--Y_GE15__SEX--M +name: Alcohol use disorders, 12-month prevalence (15 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_SUD_TREAT.001 +member: dcid:sdg/SH_SUD_TREAT.SUBSTANCE--AMPHETAMINE_TYPE, dcid:sdg/SH_SUD_TREAT.SUBSTANCE--COCAINE, dcid:sdg/SH_SUD_TREAT.SUBSTANCE--DRUGS, dcid:sdg/SH_SUD_TREAT.SUBSTANCE--OPIOIDS +name: Coverage of treatment interventions (pharmacological, psychosocial and rehabilitation and aftercare services) for substance use disorders by Type of substance +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_SUD_TREAT.002 +member: dcid:sdg/SH_SUD_TREAT.SEX--F__SUBSTANCE--AMPHETAMINE_TYPE, dcid:sdg/SH_SUD_TREAT.SEX--M__SUBSTANCE--AMPHETAMINE_TYPE +name: Coverage of treatment interventions (pharmacological, psychosocial and rehabilitation and aftercare services) for substance use disorders (Amphetamine type stimulants) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_SUD_TREAT.003 +member: dcid:sdg/SH_SUD_TREAT.SEX--F__SUBSTANCE--COCAINE, dcid:sdg/SH_SUD_TREAT.SEX--M__SUBSTANCE--COCAINE +name: Coverage of treatment interventions (pharmacological, psychosocial and rehabilitation and aftercare services) for substance use disorders (Cocaine) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_SUD_TREAT.004 +member: dcid:sdg/SH_SUD_TREAT.SEX--F__SUBSTANCE--DRUGS, dcid:sdg/SH_SUD_TREAT.SEX--M__SUBSTANCE--DRUGS +name: Coverage of treatment interventions (pharmacological, psychosocial and rehabilitation and aftercare services) for substance use disorders (Drugs) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_SUD_TREAT.005 +member: dcid:sdg/SH_SUD_TREAT.SEX--F__SUBSTANCE--OPIOIDS, dcid:sdg/SH_SUD_TREAT.SEX--M__SUBSTANCE--OPIOIDS +name: Coverage of treatment interventions (pharmacological, psychosocial and rehabilitation and aftercare services) for substance use disorders (Opioids) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_TBS_INCD.001 +member: dcid:sdg/SH_TBS_INCD +name: Tuberculosis incidence +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_TRP_INTVN.001 +member: dcid:sdg/SH_TRP_INTVN +name: Number of people requiring interventions against neglected tropical diseases +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_XPD_EARN10.001 +member: dcid:sdg/SH_XPD_EARN10 +name: Proportion of population with large household expenditures on health (greater than 10%) as a share of total household expenditure or income +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSH_XPD_EARN25.001 +member: dcid:sdg/SH_XPD_EARN25 +name: Proportion of population with large household expenditures on health (greater than 25%) as a share of total household expenditure or income +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_AGR_LSFP.001 +member: dcid:sdg/SI_AGR_LSFP +name: Average income of large-scale food producers, at purchasing-power parity rates +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_AGR_LSFP.002 +member: dcid:sdg/SI_AGR_LSFP.SEX--F, dcid:sdg/SI_AGR_LSFP.SEX--M +name: Average income of large-scale food producers, at purchasing-power parity rates by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_AGR_SSFP.001 +member: dcid:sdg/SI_AGR_SSFP +name: Average income of small-scale food producers, at purchasing-power parity rates +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_AGR_SSFP.002 +member: dcid:sdg/SI_AGR_SSFP.SEX--F, dcid:sdg/SI_AGR_SSFP.SEX--M +name: Average income of small-scale food producers, at purchasing-power parity rates by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_COV_BENFTS.001 +member: dcid:sdg/SI_COV_BENFTS +name: ILO Proportion of population covered by at least one social protection benefit +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_COV_BENFTS.002 +member: dcid:sdg/SI_COV_BENFTS.SEX--F, dcid:sdg/SI_COV_BENFTS.SEX--M +name: ILO Proportion of population covered by at least one social protection benefit by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_COV_CHLD.001 +member: dcid:sdg/SI_COV_CHLD, dcid:sdg/SI_COV_CHLD.SEX--F, dcid:sdg/SI_COV_CHLD.SEX--M +name: ILO Proportion of children/households receiving child/family cash benefit by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_COV_CHLD.003 +member: dcid:sdg/SI_COV_CHLD.AGE--Y0T14, dcid:sdg/SI_COV_CHLD.AGE--Y0T14__SEX--F, dcid:sdg/SI_COV_CHLD.AGE--Y0T14__SEX--M +name: ILO Proportion of children/households receiving child/family cash benefit (under 15 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_COV_DISAB.001 +member: dcid:sdg/SI_COV_DISAB +name: ILO Proportion of population with severe disabilities receiving disability cash benefit +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_COV_DISAB.002 +member: dcid:sdg/SI_COV_DISAB.SEX--F, dcid:sdg/SI_COV_DISAB.SEX--M +name: ILO Proportion of population with severe disabilities receiving disability cash benefit by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_COV_LMKT.001 +member: dcid:sdg/SI_COV_LMKT +name: World Bank Proportion of population covered by labour market programs +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_COV_LMKT.002 +member: dcid:sdg/SI_COV_LMKT.WEALTH_QUANTILE--Q1 +name: World Bank Proportion of population covered by labour market programs (lowest quintile) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_COV_MATNL.002 +member: dcid:sdg/SI_COV_MATNL.AGE--Y15T49__SEX--F, dcid:sdg/SI_COV_MATNL.SEX--F +name: ILO Proportion of mothers with newborns receiving maternity cash benefit by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_COV_PENSN.001 +member: dcid:sdg/SI_COV_PENSN, dcid:sdg/SI_COV_PENSN.AGE--Y_GE65 +name: ILO Proportion of population above statutory pensionable age receiving a pension, by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_COV_PENSN.003 +member: dcid:sdg/SI_COV_PENSN.AGE--Y_GE65__SEX--F, dcid:sdg/SI_COV_PENSN.AGE--Y_GE65__SEX--M +name: ILO Proportion of population above statutory pensionable age (65 years old and over) receiving a pension by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_COV_PENSN.004 +member: dcid:sdg/SI_COV_PENSN.SEX--F, dcid:sdg/SI_COV_PENSN.SEX--M +name: ILO Proportion of population above statutory pensionable ageby Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_COV_POOR.001 +member: dcid:sdg/SI_COV_POOR +name: ILO Proportion of poor population receiving social assistance cash benefit +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_COV_POOR.002 +member: dcid:sdg/SI_COV_POOR.SEX--F, dcid:sdg/SI_COV_POOR.SEX--M +name: ILO Proportion of poor population receiving social assistance cash benefit by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_COV_SOCAST.001 +member: dcid:sdg/SI_COV_SOCAST +name: World Bank Proportion of population covered by social assistance programs +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_COV_SOCAST.002 +member: dcid:sdg/SI_COV_SOCAST.WEALTH_QUANTILE--Q1 +name: World Bank Proportion of population covered by social assistance programs (lowest quintile) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_COV_SOCINS.001 +member: dcid:sdg/SI_COV_SOCINS +name: World Bank Proportion of population covered by social insurance programs +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_COV_SOCINS.002 +member: dcid:sdg/SI_COV_SOCINS.WEALTH_QUANTILE--Q1 +name: World Bank Proportion of population covered by social insurance programs (lowest quintile) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_COV_UEMP.002 +member: dcid:sdg/SI_COV_UEMP, dcid:sdg/SI_COV_UEMP.AGE--Y_GE15 +name: ILO Proportion of unemployed persons receiving unemployment cash benefit by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_COV_UEMP.003 +member: dcid:sdg/SI_COV_UEMP.AGE--Y_GE15__SEX--F, dcid:sdg/SI_COV_UEMP.AGE--Y_GE15__SEX--M +name: ILO Proportion of unemployed persons receiving unemployment cash benefit (15 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_COV_UEMP.004 +member: dcid:sdg/SI_COV_UEMP.SEX--F, dcid:sdg/SI_COV_UEMP.SEX--M +name: ILO Proportion of unemployed persons receiving unemployment cash benefit by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_COV_VULN.002 +member: dcid:sdg/SI_COV_VULN, dcid:sdg/SI_COV_VULN.SEX--F, dcid:sdg/SI_COV_VULN.SEX--M +name: ILO Proportion of vulnerable population receiving social assistance cash benefit by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_COV_WKINJRY.001 +member: dcid:sdg/SI_COV_WKINJRY, dcid:sdg/SI_COV_WKINJRY.SEX--F, dcid:sdg/SI_COV_WKINJRY.SEX--M +name: ILO Proportion of employed population covered in the event of work injury by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_COV_WKINJRY.002 +member: dcid:sdg/SI_COV_WKINJRY.AGE--Y_GE15, dcid:sdg/SI_COV_WKINJRY.AGE--Y_GE15__SEX--F, dcid:sdg/SI_COV_WKINJRY.AGE--Y_GE15__SEX--M +name: ILO Proportion of employed population covered in the event of work injury (15 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_DST_FISP.001 +member: dcid:sdg/SI_DST_FISP.FISCAL_INTERVENTION_STAGE--POST_CON_INC, dcid:sdg/SI_DST_FISP.FISCAL_INTERVENTION_STAGE--POST_DIS_INC, dcid:sdg/SI_DST_FISP.FISCAL_INTERVENTION_STAGE--PRE_INC +name: Redistributive impact of fiscal policy, Gini index by Fiscal intervention stage +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_HEI_TOTL.001 +member: dcid:sdg/SI_HEI_TOTL +name: Growth rates of household expenditure or income per capita +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_HEI_TOTL.002 +member: dcid:sdg/SI_HEI_TOTL.WEALTH_QUANTILE--BOTTOM40 +name: Growth rates of household expenditure or income per capita by Quantile +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_POV_50MI.001 +member: dcid:sdg/SI_POV_50MI.WEALTH_QUANTILE--BOTTOM50 +name: Proportion of people living below 50 percent of median income by Quantile +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_POV_DAY1.001 +member: dcid:sdg/SI_POV_DAY1 +name: Proportion of population below international poverty line +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_POV_DAY1.002 +member: dcid:sdg/SI_POV_DAY1.AGE--Y0T14, dcid:sdg/SI_POV_DAY1.AGE--Y15T64, dcid:sdg/SI_POV_DAY1.AGE--Y_GE65 +name: Proportion of population below international poverty line by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_POV_DAY1.003 +member: dcid:sdg/SI_POV_DAY1.SEX--F, dcid:sdg/SI_POV_DAY1.SEX--M +name: Proportion of population below international poverty line by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_POV_DAY1.004 +member: dcid:sdg/SI_POV_DAY1.URBANIZATION--R, dcid:sdg/SI_POV_DAY1.URBANIZATION--U +name: Proportion of population below international poverty line by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_POV_EMP1.001 +member: dcid:sdg/SI_POV_EMP1.AGE--Y15T24, dcid:sdg/SI_POV_EMP1.AGE--Y_GE15, dcid:sdg/SI_POV_EMP1.AGE--Y_GE25 +name: Employed population below international poverty line by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_POV_EMP1.002 +member: dcid:sdg/SI_POV_EMP1.AGE--Y15T24__SEX--F, dcid:sdg/SI_POV_EMP1.AGE--Y15T24__SEX--M +name: Employed population below international poverty line (15 to 24 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_POV_EMP1.003 +member: dcid:sdg/SI_POV_EMP1.AGE--Y_GE15__SEX--F, dcid:sdg/SI_POV_EMP1.AGE--Y_GE15__SEX--M +name: Employed population below international poverty line (15 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_POV_EMP1.004 +member: dcid:sdg/SI_POV_EMP1.AGE--Y_GE25__SEX--F, dcid:sdg/SI_POV_EMP1.AGE--Y_GE25__SEX--M +name: Employed population below international poverty line (25 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_POV_NAHC.001 +member: dcid:sdg/SI_POV_NAHC +name: Proportion of population living below the national poverty line +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_POV_NAHC.002 +member: dcid:sdg/SI_POV_NAHC.URBANIZATION--U +name: Proportion of population living below the national poverty line by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_RMT_COST.001 +member: dcid:sdg/SI_RMT_COST +name: Average remittance costs of sending $200 to a receiving country as a proportion of the amount remitted +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_RMT_COST_BC.001 +member: dcid:sdg/SI_RMT_COST_BC +name: Average remittance costs of sending $200 in a corridor as a proportion of the amount remitted +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_RMT_COST_BC.002 +member: dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00000020, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00000050, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00000060, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00000090, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00000140, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00000190, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00000230, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00000260, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00000290, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00000320, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00000350, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00000360, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00000380, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00000430, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00000460, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00000470, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00000480, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00000610, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00000660, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00000670, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00000700, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00000710, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00000720, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00000730, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00000790, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00000840, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00000890, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00000900, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00000910, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00000950, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00000960, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00000970, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00000980, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00001040, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00001150, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00001170, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00001200, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00001270, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00001310, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00001320, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00001350, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00001360, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00001380, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00001400, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00001480, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00001540, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00001560, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00001570, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00001610, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00001630, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00001640, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00001650, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00001660, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00001680, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00001690, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00001720, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00001750, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00001760, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00001770, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00001830, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00001930, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00002020, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00002040, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00002050, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00002080, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00002170, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00002190, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00002220, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00002290, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00002310, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00002360, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00002370, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00002380, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00002400, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00002460, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00002500, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00002540, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00002690, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00002750, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00002760, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00002800, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00002890, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00002910, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00002930, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00002960, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00002980, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00002990, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00003020, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00003060, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00003080, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00003090, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00003110, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00003130, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00003160, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00003170, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00003210, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00003220, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00003270, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00003370, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00003380, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00003400, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00003480, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00003490, dcid:sdg/SI_RMT_COST_BC.COUNTERPART--G00003500 +name: Average remittance costs of sending $200 in a corridor as a proportion of the amount remitted by Counterpart +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_RMT_COST_SC.001 +member: dcid:sdg/SI_RMT_COST_SC +name: SmaRT average remittance costs of sending $200 in a corridor as a proportion of the amount remitted +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_RMT_COST_SC.002 +member: dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00000020, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00000050, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00000060, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00000090, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00000140, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00000190, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00000230, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00000260, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00000290, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00000320, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00000350, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00000360, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00000380, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00000430, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00000460, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00000470, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00000480, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00000610, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00000660, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00000670, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00000700, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00000710, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00000720, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00000730, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00000790, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00000840, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00000890, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00000900, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00000910, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00000950, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00000960, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00000970, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00000980, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00001040, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00001150, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00001170, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00001200, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00001270, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00001310, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00001320, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00001350, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00001360, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00001380, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00001400, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00001480, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00001540, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00001560, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00001570, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00001610, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00001630, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00001640, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00001650, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00001660, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00001680, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00001690, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00001720, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00001750, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00001760, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00001770, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00001830, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00001930, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00002020, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00002040, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00002050, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00002080, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00002170, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00002190, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00002220, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00002290, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00002310, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00002360, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00002370, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00002380, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00002400, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00002460, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00002500, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00002540, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00002690, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00002750, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00002760, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00002800, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00002890, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00002910, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00002930, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00002960, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00002980, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00002990, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00003020, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00003060, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00003080, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00003090, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00003110, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00003130, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00003160, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00003170, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00003210, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00003220, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00003270, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00003370, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00003380, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00003400, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00003480, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00003490, dcid:sdg/SI_RMT_COST_SC.COUNTERPART--G00003500 +name: SmaRT average remittance costs of sending $200 in a corridor as a proportion of the amount remitted by Counterpart +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSI_RMT_COST_SND.001 +member: dcid:sdg/SI_RMT_COST_SND +name: Average remittance costs of sending $200 for a sending country as a proportion of the amount remitted +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_CPA_YEMP.001 +member: dcid:sdg/SL_CPA_YEMP +name: Existence of a developed and operationalized national strategy for youth employment, as a distinct strategy or as part of a national employment strategy +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.001 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y10T14__SEX--F, dcid:sdg/SL_DOM_TSPD.AGE--Y10T14__SEX--M +name: Proportion of time spent on unpaid domestic chores and care work (10 to 14 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.002 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y_GE10__SEX--F, dcid:sdg/SL_DOM_TSPD.AGE--Y_GE10__SEX--M +name: Proportion of time spent on unpaid domestic chores and care work (10 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.003 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y12T14__SEX--F, dcid:sdg/SL_DOM_TSPD.AGE--Y12T14__SEX--M +name: Proportion of time spent on unpaid domestic chores and care work (12 to 14 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.004 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y12T19__SEX--F, dcid:sdg/SL_DOM_TSPD.AGE--Y12T19__SEX--M +name: Proportion of time spent on unpaid domestic chores and care work (12 to 19 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.005 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y_GE12__SEX--F, dcid:sdg/SL_DOM_TSPD.AGE--Y_GE12__SEX--M +name: Proportion of time spent on unpaid domestic chores and care work (12 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.006 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y_GE14__SEX--F, dcid:sdg/SL_DOM_TSPD.AGE--Y_GE14__SEX--M +name: Proportion of time spent on unpaid domestic chores and care work (14 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.007 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y15T24__SEX--F, dcid:sdg/SL_DOM_TSPD.AGE--Y15T24__SEX--M +name: Proportion of time spent on unpaid domestic chores and care work (15 to 24 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.008 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y15T64__SEX--F, dcid:sdg/SL_DOM_TSPD.AGE--Y15T64__SEX--M +name: Proportion of time spent on unpaid domestic chores and care work (15 to 64 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.009 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y_GE15__SEX--F, dcid:sdg/SL_DOM_TSPD.AGE--Y_GE15__SEX--M +name: Proportion of time spent on unpaid domestic chores and care work (15 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.010 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y_GE16__SEX--F, dcid:sdg/SL_DOM_TSPD.AGE--Y_GE16__SEX--M +name: Proportion of time spent on unpaid domestic chores and care work (16 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.011 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y_GE18__SEX--F, dcid:sdg/SL_DOM_TSPD.AGE--Y_GE18__SEX--M +name: Proportion of time spent on unpaid domestic chores and care work (18 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.012 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y20T24__SEX--F, dcid:sdg/SL_DOM_TSPD.AGE--Y20T24__SEX--M +name: Proportion of time spent on unpaid domestic chores and care work (20 to 24 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.013 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y20T35__SEX--F, dcid:sdg/SL_DOM_TSPD.AGE--Y20T35__SEX--M +name: Proportion of time spent on unpaid domestic chores and care work (20 to 35 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.014 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y20T64__SEX--F, dcid:sdg/SL_DOM_TSPD.AGE--Y20T64__SEX--M +name: Proportion of time spent on unpaid domestic chores and care work (20 to 64 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.015 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y20T74__SEX--F, dcid:sdg/SL_DOM_TSPD.AGE--Y20T74__SEX--M +name: Proportion of time spent on unpaid domestic chores and care work (20 to 74 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.016 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y_GE20__SEX--F, dcid:sdg/SL_DOM_TSPD.AGE--Y_GE20__SEX--M +name: Proportion of time spent on unpaid domestic chores and care work (20 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.017 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y25T34__SEX--F, dcid:sdg/SL_DOM_TSPD.AGE--Y25T34__SEX--M +name: Proportion of time spent on unpaid domestic chores and care work (25 to 34 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.018 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y25T44__SEX--F, dcid:sdg/SL_DOM_TSPD.AGE--Y25T44__SEX--M +name: Proportion of time spent on unpaid domestic chores and care work (25 to 44 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.019 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y_GE3__SEX--F, dcid:sdg/SL_DOM_TSPD.AGE--Y_GE3__SEX--M +name: Proportion of time spent on unpaid domestic chores and care work (3 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.020 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y35T44__SEX--F, dcid:sdg/SL_DOM_TSPD.AGE--Y35T44__SEX--M +name: Proportion of time spent on unpaid domestic chores and care work (35 to 44 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.021 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y36T54__SEX--F, dcid:sdg/SL_DOM_TSPD.AGE--Y36T54__SEX--M +name: Proportion of time spent on unpaid domestic chores and care work (36 to 54 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.022 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y45T54__SEX--F, dcid:sdg/SL_DOM_TSPD.AGE--Y45T54__SEX--M +name: Proportion of time spent on unpaid domestic chores and care work (45 to 54 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.023 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y45T64__SEX--F, dcid:sdg/SL_DOM_TSPD.AGE--Y45T64__SEX--M +name: Proportion of time spent on unpaid domestic chores and care work (45 to 64 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.024 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y_GE5__SEX--F, dcid:sdg/SL_DOM_TSPD.AGE--Y_GE5__SEX--M +name: Proportion of time spent on unpaid domestic chores and care work (5 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.025 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y55T64__SEX--F, dcid:sdg/SL_DOM_TSPD.AGE--Y55T64__SEX--M +name: Proportion of time spent on unpaid domestic chores and care work (55 to 64 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.026 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y_GE55__SEX--F, dcid:sdg/SL_DOM_TSPD.AGE--Y_GE55__SEX--M +name: Proportion of time spent on unpaid domestic chores and care work (55 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.027 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y_GE6__SEX--F, dcid:sdg/SL_DOM_TSPD.AGE--Y_GE6__SEX--M +name: Proportion of time spent on unpaid domestic chores and care work (6 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.028 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y65T74__SEX--F, dcid:sdg/SL_DOM_TSPD.AGE--Y65T74__SEX--M +name: Proportion of time spent on unpaid domestic chores and care work (65 to 74 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.029 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y_GE65__SEX--F, dcid:sdg/SL_DOM_TSPD.AGE--Y_GE65__SEX--M +name: Proportion of time spent on unpaid domestic chores and care work (65 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.030 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y75T84__SEX--F, dcid:sdg/SL_DOM_TSPD.AGE--Y75T84__SEX--M +name: Proportion of time spent on unpaid domestic chores and care work (75 to 84 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.031 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y_GE85__SEX--F, dcid:sdg/SL_DOM_TSPD.AGE--Y_GE85__SEX--M +name: Proportion of time spent on unpaid domestic chores and care work (85 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.032 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y_GE10__SEX--F__URBANIZATION--R, dcid:sdg/SL_DOM_TSPD.AGE--Y_GE10__SEX--M__URBANIZATION--R +name: Proportion of time spent on unpaid domestic chores and care work (10 years old and over, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.033 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y_GE10__SEX--F__URBANIZATION--U, dcid:sdg/SL_DOM_TSPD.AGE--Y_GE10__SEX--M__URBANIZATION--U +name: Proportion of time spent on unpaid domestic chores and care work (10 years old and over, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.034 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y12T14__SEX--F__URBANIZATION--R, dcid:sdg/SL_DOM_TSPD.AGE--Y12T14__SEX--M__URBANIZATION--R +name: Proportion of time spent on unpaid domestic chores and care work (12 to 14 years old, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.035 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y12T14__SEX--F__URBANIZATION--U, dcid:sdg/SL_DOM_TSPD.AGE--Y12T14__SEX--M__URBANIZATION--U +name: Proportion of time spent on unpaid domestic chores and care work (12 to 14 years old, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.036 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y_GE12__SEX--F__URBANIZATION--R, dcid:sdg/SL_DOM_TSPD.AGE--Y_GE12__SEX--M__URBANIZATION--R +name: Proportion of time spent on unpaid domestic chores and care work (12 years old and over, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.037 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y_GE12__SEX--F__URBANIZATION--U, dcid:sdg/SL_DOM_TSPD.AGE--Y_GE12__SEX--M__URBANIZATION--U +name: Proportion of time spent on unpaid domestic chores and care work (12 years old and over, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.038 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y_GE14__SEX--F__URBANIZATION--U, dcid:sdg/SL_DOM_TSPD.AGE--Y_GE14__SEX--M__URBANIZATION--U +name: Proportion of time spent on unpaid domestic chores and care work (14 years old and over, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.039 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y15T24__SEX--F__URBANIZATION--R, dcid:sdg/SL_DOM_TSPD.AGE--Y15T24__SEX--M__URBANIZATION--R +name: Proportion of time spent on unpaid domestic chores and care work (15 to 24 years old, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.040 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y15T24__SEX--F__URBANIZATION--U, dcid:sdg/SL_DOM_TSPD.AGE--Y15T24__SEX--M__URBANIZATION--U +name: Proportion of time spent on unpaid domestic chores and care work (15 to 24 years old, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.041 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y15T49__SEX--F__URBANIZATION--R, dcid:sdg/SL_DOM_TSPD.AGE--Y15T49__SEX--M__URBANIZATION--R +name: Proportion of time spent on unpaid domestic chores and care work (15 to 49 years old, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.042 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y15T49__SEX--F__URBANIZATION--U, dcid:sdg/SL_DOM_TSPD.AGE--Y15T49__SEX--M__URBANIZATION--U +name: Proportion of time spent on unpaid domestic chores and care work (15 to 49 years old, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.043 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y_GE15__SEX--F__URBANIZATION--R, dcid:sdg/SL_DOM_TSPD.AGE--Y_GE15__SEX--M__URBANIZATION--R +name: Proportion of time spent on unpaid domestic chores and care work (15 years old and over, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.044 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y_GE15__SEX--F__URBANIZATION--U, dcid:sdg/SL_DOM_TSPD.AGE--Y_GE15__SEX--M__URBANIZATION--U +name: Proportion of time spent on unpaid domestic chores and care work (15 years old and over, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.045 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y18T24__SEX--F__URBANIZATION--U, dcid:sdg/SL_DOM_TSPD.AGE--Y18T24__SEX--M__URBANIZATION--U +name: Proportion of time spent on unpaid domestic chores and care work (18 to 24 years old, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.046 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y_GE18__SEX--F__URBANIZATION--U, dcid:sdg/SL_DOM_TSPD.AGE--Y_GE18__SEX--M__URBANIZATION--U +name: Proportion of time spent on unpaid domestic chores and care work (18 years old and over, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.047 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y25T44__SEX--F__URBANIZATION--R, dcid:sdg/SL_DOM_TSPD.AGE--Y25T44__SEX--M__URBANIZATION--R +name: Proportion of time spent on unpaid domestic chores and care work (25 to 44 years old, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.048 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y25T44__SEX--F__URBANIZATION--U, dcid:sdg/SL_DOM_TSPD.AGE--Y25T44__SEX--M__URBANIZATION--U +name: Proportion of time spent on unpaid domestic chores and care work (25 to 44 years old, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.049 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y_GE3__SEX--F__URBANIZATION--R, dcid:sdg/SL_DOM_TSPD.AGE--Y_GE3__SEX--M__URBANIZATION--R +name: Proportion of time spent on unpaid domestic chores and care work (3 years old and over, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.050 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y_GE3__SEX--F__URBANIZATION--U, dcid:sdg/SL_DOM_TSPD.AGE--Y_GE3__SEX--M__URBANIZATION--U +name: Proportion of time spent on unpaid domestic chores and care work (3 years old and over, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.051 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y45T54__SEX--F__URBANIZATION--R, dcid:sdg/SL_DOM_TSPD.AGE--Y45T54__SEX--M__URBANIZATION--R +name: Proportion of time spent on unpaid domestic chores and care work (45 to 54 years old, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.052 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y45T54__SEX--F__URBANIZATION--U, dcid:sdg/SL_DOM_TSPD.AGE--Y45T54__SEX--M__URBANIZATION--U +name: Proportion of time spent on unpaid domestic chores and care work (45 to 54 years old, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.053 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y45T64__SEX--F__URBANIZATION--R, dcid:sdg/SL_DOM_TSPD.AGE--Y45T64__SEX--M__URBANIZATION--R +name: Proportion of time spent on unpaid domestic chores and care work (45 to 64 years old, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.054 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y45T64__SEX--F__URBANIZATION--U, dcid:sdg/SL_DOM_TSPD.AGE--Y45T64__SEX--M__URBANIZATION--U +name: Proportion of time spent on unpaid domestic chores and care work (45 to 64 years old, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.055 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y55T64__SEX--F__URBANIZATION--R, dcid:sdg/SL_DOM_TSPD.AGE--Y55T64__SEX--M__URBANIZATION--R +name: Proportion of time spent on unpaid domestic chores and care work (55 to 64 years old, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.056 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y55T64__SEX--F__URBANIZATION--U, dcid:sdg/SL_DOM_TSPD.AGE--Y55T64__SEX--M__URBANIZATION--U +name: Proportion of time spent on unpaid domestic chores and care work (55 to 64 years old, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.057 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y6T65__SEX--F__URBANIZATION--R, dcid:sdg/SL_DOM_TSPD.AGE--Y6T65__SEX--M__URBANIZATION--R +name: Proportion of time spent on unpaid domestic chores and care work (6 to 65 years old, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.058 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y6T65__SEX--F__URBANIZATION--U, dcid:sdg/SL_DOM_TSPD.AGE--Y6T65__SEX--M__URBANIZATION--U +name: Proportion of time spent on unpaid domestic chores and care work (6 to 65 years old, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.059 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y_GE65__SEX--F__URBANIZATION--R, dcid:sdg/SL_DOM_TSPD.AGE--Y_GE65__SEX--M__URBANIZATION--R +name: Proportion of time spent on unpaid domestic chores and care work (65 years old and over, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.060 +member: dcid:sdg/SL_DOM_TSPD.AGE--Y_GE65__SEX--F__URBANIZATION--U, dcid:sdg/SL_DOM_TSPD.AGE--Y_GE65__SEX--M__URBANIZATION--U +name: Proportion of time spent on unpaid domestic chores and care work (65 years old and over, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPD.061 +member: dcid:sdg/SL_DOM_TSPD.SEX--F, dcid:sdg/SL_DOM_TSPD.SEX--M +name: Proportion of time spent on unpaid domestic chores and care work by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.001 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y10T14__SEX--F, dcid:sdg/SL_DOM_TSPDCW.AGE--Y10T14__SEX--M +name: Proportion of time spent on unpaid care work (10 to 14 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.002 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE10__SEX--F, dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE10__SEX--M +name: Proportion of time spent on unpaid care work (10 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.003 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y12T14__SEX--F, dcid:sdg/SL_DOM_TSPDCW.AGE--Y12T14__SEX--M +name: Proportion of time spent on unpaid care work (12 to 14 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.004 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y12T19__SEX--F, dcid:sdg/SL_DOM_TSPDCW.AGE--Y12T19__SEX--M +name: Proportion of time spent on unpaid care work (12 to 19 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.005 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE12__SEX--F, dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE12__SEX--M +name: Proportion of time spent on unpaid care work (12 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.006 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE14__SEX--F, dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE14__SEX--M +name: Proportion of time spent on unpaid care work (14 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.007 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y15T24__SEX--F, dcid:sdg/SL_DOM_TSPDCW.AGE--Y15T24__SEX--M +name: Proportion of time spent on unpaid care work (15 to 24 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.008 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y15T64__SEX--F, dcid:sdg/SL_DOM_TSPDCW.AGE--Y15T64__SEX--M +name: Proportion of time spent on unpaid care work (15 to 64 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.009 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE15__SEX--F, dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE15__SEX--M +name: Proportion of time spent on unpaid care work (15 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.010 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE16__SEX--F, dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE16__SEX--M +name: Proportion of time spent on unpaid care work (16 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.011 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y20T24__SEX--F, dcid:sdg/SL_DOM_TSPDCW.AGE--Y20T24__SEX--M +name: Proportion of time spent on unpaid care work (20 to 24 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.012 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y20T35__SEX--F, dcid:sdg/SL_DOM_TSPDCW.AGE--Y20T35__SEX--M +name: Proportion of time spent on unpaid care work (20 to 35 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.013 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y20T64__SEX--F, dcid:sdg/SL_DOM_TSPDCW.AGE--Y20T64__SEX--M +name: Proportion of time spent on unpaid care work (20 to 64 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.014 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y20T74__SEX--F, dcid:sdg/SL_DOM_TSPDCW.AGE--Y20T74__SEX--M +name: Proportion of time spent on unpaid care work (20 to 74 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.015 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE20__SEX--F, dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE20__SEX--M +name: Proportion of time spent on unpaid care work (20 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.016 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y25T34__SEX--F, dcid:sdg/SL_DOM_TSPDCW.AGE--Y25T34__SEX--M +name: Proportion of time spent on unpaid care work (25 to 34 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.017 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y25T44__SEX--F, dcid:sdg/SL_DOM_TSPDCW.AGE--Y25T44__SEX--M +name: Proportion of time spent on unpaid care work (25 to 44 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.018 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE3__SEX--F, dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE3__SEX--M +name: Proportion of time spent on unpaid care work (3 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.019 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y35T44__SEX--F, dcid:sdg/SL_DOM_TSPDCW.AGE--Y35T44__SEX--M +name: Proportion of time spent on unpaid care work (35 to 44 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.020 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y36T54__SEX--F, dcid:sdg/SL_DOM_TSPDCW.AGE--Y36T54__SEX--M +name: Proportion of time spent on unpaid care work (36 to 54 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.021 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y45T54__SEX--F, dcid:sdg/SL_DOM_TSPDCW.AGE--Y45T54__SEX--M +name: Proportion of time spent on unpaid care work (45 to 54 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.022 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y45T64__SEX--F, dcid:sdg/SL_DOM_TSPDCW.AGE--Y45T64__SEX--M +name: Proportion of time spent on unpaid care work (45 to 64 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.023 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE5__SEX--F, dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE5__SEX--M +name: Proportion of time spent on unpaid care work (5 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.024 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y55T64__SEX--F, dcid:sdg/SL_DOM_TSPDCW.AGE--Y55T64__SEX--M +name: Proportion of time spent on unpaid care work (55 to 64 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.025 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE55__SEX--F, dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE55__SEX--M +name: Proportion of time spent on unpaid care work (55 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.026 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE6__SEX--F, dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE6__SEX--M +name: Proportion of time spent on unpaid care work (6 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.027 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y65T74__SEX--F, dcid:sdg/SL_DOM_TSPDCW.AGE--Y65T74__SEX--M +name: Proportion of time spent on unpaid care work (65 to 74 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.028 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE65__SEX--F, dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE65__SEX--M +name: Proportion of time spent on unpaid care work (65 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.029 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y75T84__SEX--F, dcid:sdg/SL_DOM_TSPDCW.AGE--Y75T84__SEX--M +name: Proportion of time spent on unpaid care work (75 to 84 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.030 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE85__SEX--F, dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE85__SEX--M +name: Proportion of time spent on unpaid care work (85 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.031 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE10__SEX--F__URBANIZATION--R, dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE10__SEX--M__URBANIZATION--R +name: Proportion of time spent on unpaid care work (10 years old and over, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.032 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE10__SEX--F__URBANIZATION--U, dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE10__SEX--M__URBANIZATION--U +name: Proportion of time spent on unpaid care work (10 years old and over, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.033 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y12T14__SEX--F__URBANIZATION--R, dcid:sdg/SL_DOM_TSPDCW.AGE--Y12T14__SEX--M__URBANIZATION--R +name: Proportion of time spent on unpaid care work (12 to 14 years old, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.034 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y12T14__SEX--F__URBANIZATION--U, dcid:sdg/SL_DOM_TSPDCW.AGE--Y12T14__SEX--M__URBANIZATION--U +name: Proportion of time spent on unpaid care work (12 to 14 years old, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.035 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE12__SEX--F__URBANIZATION--R, dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE12__SEX--M__URBANIZATION--R +name: Proportion of time spent on unpaid care work (12 years old and over, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.036 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE12__SEX--F__URBANIZATION--U, dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE12__SEX--M__URBANIZATION--U +name: Proportion of time spent on unpaid care work (12 years old and over, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.037 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE14__SEX--F__URBANIZATION--U, dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE14__SEX--M__URBANIZATION--U +name: Proportion of time spent on unpaid care work (14 years old and over, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.038 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y15T24__SEX--F__URBANIZATION--R, dcid:sdg/SL_DOM_TSPDCW.AGE--Y15T24__SEX--M__URBANIZATION--R +name: Proportion of time spent on unpaid care work (15 to 24 years old, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.039 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y15T24__SEX--F__URBANIZATION--U, dcid:sdg/SL_DOM_TSPDCW.AGE--Y15T24__SEX--M__URBANIZATION--U +name: Proportion of time spent on unpaid care work (15 to 24 years old, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.040 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE15__SEX--F__URBANIZATION--R, dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE15__SEX--M__URBANIZATION--R +name: Proportion of time spent on unpaid care work (15 years old and over, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.041 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE15__SEX--F__URBANIZATION--U, dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE15__SEX--M__URBANIZATION--U +name: Proportion of time spent on unpaid care work (15 years old and over, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.042 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y18T24__SEX--F__URBANIZATION--U, dcid:sdg/SL_DOM_TSPDCW.AGE--Y18T24__SEX--M__URBANIZATION--U +name: Proportion of time spent on unpaid care work (18 to 24 years old, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.043 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE18__SEX--F__URBANIZATION--U, dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE18__SEX--M__URBANIZATION--U +name: Proportion of time spent on unpaid care work (18 years old and over, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.044 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y25T44__SEX--F__URBANIZATION--R, dcid:sdg/SL_DOM_TSPDCW.AGE--Y25T44__SEX--M__URBANIZATION--R +name: Proportion of time spent on unpaid care work (25 to 44 years old, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.045 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y25T44__SEX--F__URBANIZATION--U, dcid:sdg/SL_DOM_TSPDCW.AGE--Y25T44__SEX--M__URBANIZATION--U +name: Proportion of time spent on unpaid care work (25 to 44 years old, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.046 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE3__SEX--F__URBANIZATION--R, dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE3__SEX--M__URBANIZATION--R +name: Proportion of time spent on unpaid care work (3 years old and over, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.047 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE3__SEX--F__URBANIZATION--U, dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE3__SEX--M__URBANIZATION--U +name: Proportion of time spent on unpaid care work (3 years old and over, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.048 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y45T54__SEX--F__URBANIZATION--R, dcid:sdg/SL_DOM_TSPDCW.AGE--Y45T54__SEX--M__URBANIZATION--R +name: Proportion of time spent on unpaid care work (45 to 54 years old, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.049 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y45T54__SEX--F__URBANIZATION--U, dcid:sdg/SL_DOM_TSPDCW.AGE--Y45T54__SEX--M__URBANIZATION--U +name: Proportion of time spent on unpaid care work (45 to 54 years old, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.050 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y45T64__SEX--F__URBANIZATION--R, dcid:sdg/SL_DOM_TSPDCW.AGE--Y45T64__SEX--M__URBANIZATION--R +name: Proportion of time spent on unpaid care work (45 to 64 years old, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.051 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y45T64__SEX--F__URBANIZATION--U, dcid:sdg/SL_DOM_TSPDCW.AGE--Y45T64__SEX--M__URBANIZATION--U +name: Proportion of time spent on unpaid care work (45 to 64 years old, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.052 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y55T64__SEX--F__URBANIZATION--R, dcid:sdg/SL_DOM_TSPDCW.AGE--Y55T64__SEX--M__URBANIZATION--R +name: Proportion of time spent on unpaid care work (55 to 64 years old, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.053 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y55T64__SEX--F__URBANIZATION--U, dcid:sdg/SL_DOM_TSPDCW.AGE--Y55T64__SEX--M__URBANIZATION--U +name: Proportion of time spent on unpaid care work (55 to 64 years old, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.054 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE65__SEX--F__URBANIZATION--R, dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE65__SEX--M__URBANIZATION--R +name: Proportion of time spent on unpaid care work (65 years old and over, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.055 +member: dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE65__SEX--F__URBANIZATION--U, dcid:sdg/SL_DOM_TSPDCW.AGE--Y_GE65__SEX--M__URBANIZATION--U +name: Proportion of time spent on unpaid care work (65 years old and over, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDCW.056 +member: dcid:sdg/SL_DOM_TSPDCW.SEX--F, dcid:sdg/SL_DOM_TSPDCW.SEX--M +name: Proportion of time spent on unpaid care work by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.001 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y10T14__SEX--F, dcid:sdg/SL_DOM_TSPDDC.AGE--Y10T14__SEX--M +name: Proportion of time spent on unpaid domestic chores (10 to 14 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.002 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE10__SEX--F, dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE10__SEX--M +name: Proportion of time spent on unpaid domestic chores (10 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.003 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y12T14__SEX--F, dcid:sdg/SL_DOM_TSPDDC.AGE--Y12T14__SEX--M +name: Proportion of time spent on unpaid domestic chores (12 to 14 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.004 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y12T19__SEX--F, dcid:sdg/SL_DOM_TSPDDC.AGE--Y12T19__SEX--M +name: Proportion of time spent on unpaid domestic chores (12 to 19 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.005 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE12__SEX--F, dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE12__SEX--M +name: Proportion of time spent on unpaid domestic chores (12 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.006 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE14__SEX--F, dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE14__SEX--M +name: Proportion of time spent on unpaid domestic chores (14 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.007 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y15T24__SEX--F, dcid:sdg/SL_DOM_TSPDDC.AGE--Y15T24__SEX--M +name: Proportion of time spent on unpaid domestic chores (15 to 24 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.008 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y15T64__SEX--F, dcid:sdg/SL_DOM_TSPDDC.AGE--Y15T64__SEX--M +name: Proportion of time spent on unpaid domestic chores (15 to 64 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.009 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE15__SEX--F, dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE15__SEX--M +name: Proportion of time spent on unpaid domestic chores (15 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.010 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE16__SEX--F, dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE16__SEX--M +name: Proportion of time spent on unpaid domestic chores (16 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.011 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y20T24__SEX--F, dcid:sdg/SL_DOM_TSPDDC.AGE--Y20T24__SEX--M +name: Proportion of time spent on unpaid domestic chores (20 to 24 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.012 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y20T35__SEX--F, dcid:sdg/SL_DOM_TSPDDC.AGE--Y20T35__SEX--M +name: Proportion of time spent on unpaid domestic chores (20 to 35 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.013 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y20T64__SEX--F, dcid:sdg/SL_DOM_TSPDDC.AGE--Y20T64__SEX--M +name: Proportion of time spent on unpaid domestic chores (20 to 64 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.014 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y20T74__SEX--F, dcid:sdg/SL_DOM_TSPDDC.AGE--Y20T74__SEX--M +name: Proportion of time spent on unpaid domestic chores (20 to 74 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.015 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE20__SEX--F, dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE20__SEX--M +name: Proportion of time spent on unpaid domestic chores (20 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.016 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y25T34__SEX--F, dcid:sdg/SL_DOM_TSPDDC.AGE--Y25T34__SEX--M +name: Proportion of time spent on unpaid domestic chores (25 to 34 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.017 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y25T44__SEX--F, dcid:sdg/SL_DOM_TSPDDC.AGE--Y25T44__SEX--M +name: Proportion of time spent on unpaid domestic chores (25 to 44 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.018 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE3__SEX--F, dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE3__SEX--M +name: Proportion of time spent on unpaid domestic chores (3 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.019 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y35T44__SEX--F, dcid:sdg/SL_DOM_TSPDDC.AGE--Y35T44__SEX--M +name: Proportion of time spent on unpaid domestic chores (35 to 44 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.020 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y36T54__SEX--F, dcid:sdg/SL_DOM_TSPDDC.AGE--Y36T54__SEX--M +name: Proportion of time spent on unpaid domestic chores (36 to 54 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.021 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y45T54__SEX--F, dcid:sdg/SL_DOM_TSPDDC.AGE--Y45T54__SEX--M +name: Proportion of time spent on unpaid domestic chores (45 to 54 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.022 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y45T64__SEX--F, dcid:sdg/SL_DOM_TSPDDC.AGE--Y45T64__SEX--M +name: Proportion of time spent on unpaid domestic chores (45 to 64 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.023 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE5__SEX--F, dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE5__SEX--M +name: Proportion of time spent on unpaid domestic chores (5 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.024 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y55T64__SEX--F, dcid:sdg/SL_DOM_TSPDDC.AGE--Y55T64__SEX--M +name: Proportion of time spent on unpaid domestic chores (55 to 64 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.025 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE55__SEX--F, dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE55__SEX--M +name: Proportion of time spent on unpaid domestic chores (55 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.026 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE6__SEX--F, dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE6__SEX--M +name: Proportion of time spent on unpaid domestic chores (6 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.027 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y65T74__SEX--F, dcid:sdg/SL_DOM_TSPDDC.AGE--Y65T74__SEX--M +name: Proportion of time spent on unpaid domestic chores (65 to 74 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.028 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE65__SEX--F, dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE65__SEX--M +name: Proportion of time spent on unpaid domestic chores (65 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.029 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y75T84__SEX--F, dcid:sdg/SL_DOM_TSPDDC.AGE--Y75T84__SEX--M +name: Proportion of time spent on unpaid domestic chores (75 to 84 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.030 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE85__SEX--F, dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE85__SEX--M +name: Proportion of time spent on unpaid domestic chores (85 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.031 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE10__SEX--F__URBANIZATION--R, dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE10__SEX--M__URBANIZATION--R +name: Proportion of time spent on unpaid domestic chores (10 years old and over, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.032 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE10__SEX--F__URBANIZATION--U, dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE10__SEX--M__URBANIZATION--U +name: Proportion of time spent on unpaid domestic chores (10 years old and over, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.033 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y12T14__SEX--F__URBANIZATION--R, dcid:sdg/SL_DOM_TSPDDC.AGE--Y12T14__SEX--M__URBANIZATION--R +name: Proportion of time spent on unpaid domestic chores (12 to 14 years old, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.034 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y12T14__SEX--F__URBANIZATION--U, dcid:sdg/SL_DOM_TSPDDC.AGE--Y12T14__SEX--M__URBANIZATION--U +name: Proportion of time spent on unpaid domestic chores (12 to 14 years old, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.035 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE12__SEX--F__URBANIZATION--R, dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE12__SEX--M__URBANIZATION--R +name: Proportion of time spent on unpaid domestic chores (12 years old and over, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.036 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE12__SEX--F__URBANIZATION--U, dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE12__SEX--M__URBANIZATION--U +name: Proportion of time spent on unpaid domestic chores (12 years old and over, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.037 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE14__SEX--F__URBANIZATION--U, dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE14__SEX--M__URBANIZATION--U +name: Proportion of time spent on unpaid domestic chores (14 years old and over, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.038 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y15T24__SEX--F__URBANIZATION--R, dcid:sdg/SL_DOM_TSPDDC.AGE--Y15T24__SEX--M__URBANIZATION--R +name: Proportion of time spent on unpaid domestic chores (15 to 24 years old, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.039 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y15T24__SEX--F__URBANIZATION--U, dcid:sdg/SL_DOM_TSPDDC.AGE--Y15T24__SEX--M__URBANIZATION--U +name: Proportion of time spent on unpaid domestic chores (15 to 24 years old, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.040 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE15__SEX--F__URBANIZATION--R, dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE15__SEX--M__URBANIZATION--R +name: Proportion of time spent on unpaid domestic chores (15 years old and over, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.041 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE15__SEX--F__URBANIZATION--U, dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE15__SEX--M__URBANIZATION--U +name: Proportion of time spent on unpaid domestic chores (15 years old and over, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.042 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y18T24__SEX--F__URBANIZATION--U, dcid:sdg/SL_DOM_TSPDDC.AGE--Y18T24__SEX--M__URBANIZATION--U +name: Proportion of time spent on unpaid domestic chores (18 to 24 years old, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.043 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE18__SEX--F__URBANIZATION--U, dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE18__SEX--M__URBANIZATION--U +name: Proportion of time spent on unpaid domestic chores (18 years old and over, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.044 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y25T44__SEX--F__URBANIZATION--R, dcid:sdg/SL_DOM_TSPDDC.AGE--Y25T44__SEX--M__URBANIZATION--R +name: Proportion of time spent on unpaid domestic chores (25 to 44 years old, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.045 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y25T44__SEX--F__URBANIZATION--U, dcid:sdg/SL_DOM_TSPDDC.AGE--Y25T44__SEX--M__URBANIZATION--U +name: Proportion of time spent on unpaid domestic chores (25 to 44 years old, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.046 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE3__SEX--F__URBANIZATION--R, dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE3__SEX--M__URBANIZATION--R +name: Proportion of time spent on unpaid domestic chores (3 years old and over, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.047 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE3__SEX--F__URBANIZATION--U, dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE3__SEX--M__URBANIZATION--U +name: Proportion of time spent on unpaid domestic chores (3 years old and over, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.048 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y45T54__SEX--F__URBANIZATION--R, dcid:sdg/SL_DOM_TSPDDC.AGE--Y45T54__SEX--M__URBANIZATION--R +name: Proportion of time spent on unpaid domestic chores (45 to 54 years old, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.049 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y45T54__SEX--F__URBANIZATION--U, dcid:sdg/SL_DOM_TSPDDC.AGE--Y45T54__SEX--M__URBANIZATION--U +name: Proportion of time spent on unpaid domestic chores (45 to 54 years old, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.050 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y45T64__SEX--F__URBANIZATION--R, dcid:sdg/SL_DOM_TSPDDC.AGE--Y45T64__SEX--M__URBANIZATION--R +name: Proportion of time spent on unpaid domestic chores (45 to 64 years old, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.051 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y45T64__SEX--F__URBANIZATION--U, dcid:sdg/SL_DOM_TSPDDC.AGE--Y45T64__SEX--M__URBANIZATION--U +name: Proportion of time spent on unpaid domestic chores (45 to 64 years old, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.052 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y55T64__SEX--F__URBANIZATION--R, dcid:sdg/SL_DOM_TSPDDC.AGE--Y55T64__SEX--M__URBANIZATION--R +name: Proportion of time spent on unpaid domestic chores (55 to 64 years old, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.053 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y55T64__SEX--F__URBANIZATION--U, dcid:sdg/SL_DOM_TSPDDC.AGE--Y55T64__SEX--M__URBANIZATION--U +name: Proportion of time spent on unpaid domestic chores (55 to 64 years old, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.054 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE65__SEX--F__URBANIZATION--R, dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE65__SEX--M__URBANIZATION--R +name: Proportion of time spent on unpaid domestic chores (65 years old and over, Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.055 +member: dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE65__SEX--F__URBANIZATION--U, dcid:sdg/SL_DOM_TSPDDC.AGE--Y_GE65__SEX--M__URBANIZATION--U +name: Proportion of time spent on unpaid domestic chores (65 years old and over, Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_DOM_TSPDDC.056 +member: dcid:sdg/SL_DOM_TSPDDC.SEX--F, dcid:sdg/SL_DOM_TSPDDC.SEX--M +name: Proportion of time spent on unpaid domestic chores by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_EMP_EARN.001 +member: dcid:sdg/SL_EMP_EARN.AGE--Y_GE15 +name: Average hourly earnings of employees in local currency by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_EMP_EARN.002 +member: dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__OCCUPATION--ISCO08_0, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__OCCUPATION--ISCO08_1, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__OCCUPATION--ISCO08_2, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__OCCUPATION--ISCO08_3, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__OCCUPATION--ISCO08_4, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__OCCUPATION--ISCO08_5, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__OCCUPATION--ISCO08_6, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__OCCUPATION--ISCO08_7, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__OCCUPATION--ISCO08_8, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__OCCUPATION--ISCO08_9, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__OCCUPATION--ISCO08_X +name: Average hourly earnings of employees in local currency (15 years old and over) by Major groups of ISCO-08 +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_EMP_EARN.003 +member: dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__OCCUPATION--ISCO88_0, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__OCCUPATION--ISCO88_1, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__OCCUPATION--ISCO88_2, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__OCCUPATION--ISCO88_3, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__OCCUPATION--ISCO88_4, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__OCCUPATION--ISCO88_5, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__OCCUPATION--ISCO88_6, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__OCCUPATION--ISCO88_7, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__OCCUPATION--ISCO88_8, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__OCCUPATION--ISCO88_9, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__OCCUPATION--ISCO88_X +name: Average hourly earnings of employees in local currency (15 years old and over) by Major groups of ISCO-88 +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_EMP_EARN.004 +member: dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--_O +name: Average hourly earnings of employees in local currency (15 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_EMP_EARN.005 +member: dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F__OCCUPATION--ISCO08_0, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F__OCCUPATION--ISCO08_1, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F__OCCUPATION--ISCO08_2, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F__OCCUPATION--ISCO08_3, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F__OCCUPATION--ISCO08_4, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F__OCCUPATION--ISCO08_5, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F__OCCUPATION--ISCO08_6, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F__OCCUPATION--ISCO08_7, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F__OCCUPATION--ISCO08_8, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F__OCCUPATION--ISCO08_9, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F__OCCUPATION--ISCO08_X +name: Average hourly earnings of employees in local currency (15 years old and over, Female) by Major groups of ISCO-08 +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_EMP_EARN.006 +member: dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M__OCCUPATION--ISCO08_0, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M__OCCUPATION--ISCO08_1, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M__OCCUPATION--ISCO08_2, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M__OCCUPATION--ISCO08_3, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M__OCCUPATION--ISCO08_4, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M__OCCUPATION--ISCO08_5, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M__OCCUPATION--ISCO08_6, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M__OCCUPATION--ISCO08_7, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M__OCCUPATION--ISCO08_8, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M__OCCUPATION--ISCO08_9, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M__OCCUPATION--ISCO08_X +name: Average hourly earnings of employees in local currency (15 years old and over, Male) by Major groups of ISCO-08 +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_EMP_EARN.007 +member: dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F__OCCUPATION--ISCO88_0, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F__OCCUPATION--ISCO88_1, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F__OCCUPATION--ISCO88_2, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F__OCCUPATION--ISCO88_3, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F__OCCUPATION--ISCO88_4, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F__OCCUPATION--ISCO88_5, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F__OCCUPATION--ISCO88_6, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F__OCCUPATION--ISCO88_7, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F__OCCUPATION--ISCO88_8, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F__OCCUPATION--ISCO88_9, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--F__OCCUPATION--ISCO88_X +name: Average hourly earnings of employees in local currency (15 years old and over, Female) by Major groups of ISCO-88 +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_EMP_EARN.008 +member: dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M__OCCUPATION--ISCO88_0, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M__OCCUPATION--ISCO88_1, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M__OCCUPATION--ISCO88_2, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M__OCCUPATION--ISCO88_3, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M__OCCUPATION--ISCO88_4, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M__OCCUPATION--ISCO88_5, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M__OCCUPATION--ISCO88_6, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M__OCCUPATION--ISCO88_7, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M__OCCUPATION--ISCO88_8, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M__OCCUPATION--ISCO88_9, dcid:sdg/SL_EMP_EARN.AGE--Y_GE15__SEX--M__OCCUPATION--ISCO88_X +name: Average hourly earnings of employees in local currency (15 years old and over, Male) by Major groups of ISCO-88 +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_EMP_FTLINJUR.001 +member: dcid:sdg/SL_EMP_FTLINJUR +name: Fatal occupational injuries among employees +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_EMP_FTLINJUR.002 +member: dcid:sdg/SL_EMP_FTLINJUR.MIGRATORY_STATUS--EUMIGRANT, dcid:sdg/SL_EMP_FTLINJUR.MIGRATORY_STATUS--MIGRANT, dcid:sdg/SL_EMP_FTLINJUR.MIGRATORY_STATUS--NOMIGRANT, dcid:sdg/SL_EMP_FTLINJUR.MIGRATORY_STATUS--NONEUMIGRANT +name: Fatal occupational injuries among employees by Migratory status +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_EMP_FTLINJUR.003 +member: dcid:sdg/SL_EMP_FTLINJUR.SEX--F, dcid:sdg/SL_EMP_FTLINJUR.SEX--M +name: Fatal occupational injuries among employees by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_EMP_FTLINJUR.004 +member: dcid:sdg/SL_EMP_FTLINJUR.SEX--F__MIGRATORY_STATUS--EUMIGRANT, dcid:sdg/SL_EMP_FTLINJUR.SEX--F__MIGRATORY_STATUS--MIGRANT, dcid:sdg/SL_EMP_FTLINJUR.SEX--F__MIGRATORY_STATUS--NOMIGRANT, dcid:sdg/SL_EMP_FTLINJUR.SEX--F__MIGRATORY_STATUS--NONEUMIGRANT +name: Fatal occupational injuries among employees (Female) by Migratory status +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_EMP_FTLINJUR.005 +member: dcid:sdg/SL_EMP_FTLINJUR.SEX--M__MIGRATORY_STATUS--EUMIGRANT, dcid:sdg/SL_EMP_FTLINJUR.SEX--M__MIGRATORY_STATUS--MIGRANT, dcid:sdg/SL_EMP_FTLINJUR.SEX--M__MIGRATORY_STATUS--NOMIGRANT, dcid:sdg/SL_EMP_FTLINJUR.SEX--M__MIGRATORY_STATUS--NONEUMIGRANT +name: Fatal occupational injuries among employees (Male) by Migratory status +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_EMP_GTOTL.001 +member: dcid:sdg/SL_EMP_GTOTL.AGE--Y_GE15 +name: Labour share of GDP by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_EMP_INJUR.001 +member: dcid:sdg/SL_EMP_INJUR +name: Non-fatal occupational injuries among employees +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_EMP_INJUR.002 +member: dcid:sdg/SL_EMP_INJUR.MIGRATORY_STATUS--EUMIGRANT, dcid:sdg/SL_EMP_INJUR.MIGRATORY_STATUS--MIGRANT, dcid:sdg/SL_EMP_INJUR.MIGRATORY_STATUS--NOMIGRANT, dcid:sdg/SL_EMP_INJUR.MIGRATORY_STATUS--NONEUMIGRANT +name: Non-fatal occupational injuries among employees by Migratory status +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_EMP_INJUR.003 +member: dcid:sdg/SL_EMP_INJUR.SEX--F, dcid:sdg/SL_EMP_INJUR.SEX--M +name: Non-fatal occupational injuries among employees by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_EMP_INJUR.004 +member: dcid:sdg/SL_EMP_INJUR.SEX--F__MIGRATORY_STATUS--EUMIGRANT, dcid:sdg/SL_EMP_INJUR.SEX--F__MIGRATORY_STATUS--MIGRANT, dcid:sdg/SL_EMP_INJUR.SEX--F__MIGRATORY_STATUS--NOMIGRANT, dcid:sdg/SL_EMP_INJUR.SEX--F__MIGRATORY_STATUS--NONEUMIGRANT +name: Non-fatal occupational injuries among employees (Female) by Migratory status +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_EMP_INJUR.005 +member: dcid:sdg/SL_EMP_INJUR.SEX--M__MIGRATORY_STATUS--EUMIGRANT, dcid:sdg/SL_EMP_INJUR.SEX--M__MIGRATORY_STATUS--MIGRANT, dcid:sdg/SL_EMP_INJUR.SEX--M__MIGRATORY_STATUS--NOMIGRANT, dcid:sdg/SL_EMP_INJUR.SEX--M__MIGRATORY_STATUS--NONEUMIGRANT +name: Non-fatal occupational injuries among employees (Male) by Migratory status +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_EMP_PCAP.001 +member: dcid:sdg/SL_EMP_PCAP.AGE--Y_GE15 +name: Annual growth rate of real GDP per employed person (15 years old and over) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_EMP_RCOST_MO.001 +member: dcid:sdg/SL_EMP_RCOST_MO.MIGRATORY_STATUS--MIGRANT +name: Migrant recruitment costs (number of months of earnings) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_EMP_RCOST_MO.002 +member: dcid:sdg/SL_EMP_RCOST_MO.SEX--F__MIGRATORY_STATUS--MIGRANT +name: Migrant recruitment costs (number of months of earnings) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_EMP_RCOST_MO.003 +member: dcid:sdg/SL_EMP_RCOST_MO.SEX--M__MIGRATORY_STATUS--MIGRANT +name: Migrant recruitment costs (number of months of earnings) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_ISV_IFEM.001 +member: dcid:sdg/SL_ISV_IFEM.AGE--Y_GE15 +name: Proportion of informal employment, previous definition (15 years old and over) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_ISV_IFEM.002 +member: dcid:sdg/SL_ISV_IFEM.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_A, dcid:sdg/SL_ISV_IFEM.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_BTU +name: Proportion of informal employment, previous definition (15 years old and over) by sector +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_ISV_IFEM.004 +member: dcid:sdg/SL_ISV_IFEM.AGE--Y_GE15__SEX--F, dcid:sdg/SL_ISV_IFEM.AGE--Y_GE15__SEX--M, dcid:sdg/SL_ISV_IFEM.AGE--Y_GE15__SEX--_O +name: Proportion of informal employment, previous definition (15 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_ISV_IFEM.005 +member: dcid:sdg/SL_ISV_IFEM.AGE--Y_GE15__SEX--F__ECONOMIC_ACTIVITY--ISIC4_A, dcid:sdg/SL_ISV_IFEM.AGE--Y_GE15__SEX--M__ECONOMIC_ACTIVITY--ISIC4_A, dcid:sdg/SL_ISV_IFEM.AGE--Y_GE15__SEX--_O__ECONOMIC_ACTIVITY--ISIC4_A +name: Proportion of informal employment, previous definition (15 years old and over) in agriculture, forestry and fishing (ISIC4 - A), by sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_ISV_IFEM.008 +member: dcid:sdg/SL_ISV_IFEM.AGE--Y_GE15__SEX--F__ECONOMIC_ACTIVITY--ISIC4_BTU, dcid:sdg/SL_ISV_IFEM.AGE--Y_GE15__SEX--M__ECONOMIC_ACTIVITY--ISIC4_BTU, dcid:sdg/SL_ISV_IFEM.AGE--Y_GE15__SEX--_O__ECONOMIC_ACTIVITY--ISIC4_BTU +name: Proportion of informal employment, previous definition (15 years old and over) in non - agriculture (ISIC4 - B through U), by sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_ISV_IFEM_19ICLS.001 +member: dcid:sdg/SL_ISV_IFEM_19ICLS.AGE--Y_GE15 +name: Proportion of informal employment, current definition (15 years old and over) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_ISV_IFEM_19ICLS.002 +member: dcid:sdg/SL_ISV_IFEM_19ICLS.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_A, dcid:sdg/SL_ISV_IFEM_19ICLS.AGE--Y_GE15__ECONOMIC_ACTIVITY--ISIC4_BTU +name: Proportion of informal employment, current definition (15 years old and over) by sector +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_ISV_IFEM_19ICLS.004 +member: dcid:sdg/SL_ISV_IFEM_19ICLS.AGE--Y_GE15__SEX--F, dcid:sdg/SL_ISV_IFEM_19ICLS.AGE--Y_GE15__SEX--M +name: Proportion of informal employment, current definition (15 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_ISV_IFEM_19ICLS.005 +member: dcid:sdg/SL_ISV_IFEM_19ICLS.AGE--Y_GE15__SEX--F__ECONOMIC_ACTIVITY--ISIC4_A, dcid:sdg/SL_ISV_IFEM_19ICLS.AGE--Y_GE15__SEX--M__ECONOMIC_ACTIVITY--ISIC4_A +name: Proportion of informal employment, current definition (15 years old and over) in agriculture, forestry and fishing (ISIC4 - A), by sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_ISV_IFEM_19ICLS.007 +member: dcid:sdg/SL_ISV_IFEM_19ICLS.AGE--Y_GE15__SEX--F__ECONOMIC_ACTIVITY--ISIC4_BTU, dcid:sdg/SL_ISV_IFEM_19ICLS.AGE--Y_GE15__SEX--M__ECONOMIC_ACTIVITY--ISIC4_BTU +name: Proportion of informal employment, current definition (15 years old and over) in non - agriculture (ISIC4 - B through U), by sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_LBR_NTLCPL.001 +member: dcid:sdg/SL_LBR_NTLCPL +name: Level of national compliance with labour rights (freedom of association and collective bargaining) based on International Labour Organization (ILO) textual sources and national legislation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_TLF_CHLDEA.001 +member: dcid:sdg/SL_TLF_CHLDEA.AGE--Y10T17, dcid:sdg/SL_TLF_CHLDEA.AGE--Y5T14, dcid:sdg/SL_TLF_CHLDEA.AGE--Y5T17, dcid:sdg/SL_TLF_CHLDEA.AGE--Y6T17, dcid:sdg/SL_TLF_CHLDEA.AGE--Y7T17 +name: Proportion of children engaged in economic activity by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_TLF_CHLDEA.002 +member: dcid:sdg/SL_TLF_CHLDEA.AGE--Y10T17__SEX--F, dcid:sdg/SL_TLF_CHLDEA.AGE--Y10T17__SEX--M +name: Proportion of children engaged in economic activity (10 to 17 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_TLF_CHLDEA.003 +member: dcid:sdg/SL_TLF_CHLDEA.AGE--Y5T14__SEX--F, dcid:sdg/SL_TLF_CHLDEA.AGE--Y5T14__SEX--M +name: Proportion of children engaged in economic activity (5 to 14 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_TLF_CHLDEA.004 +member: dcid:sdg/SL_TLF_CHLDEA.AGE--Y5T17__SEX--F, dcid:sdg/SL_TLF_CHLDEA.AGE--Y5T17__SEX--M +name: Proportion of children engaged in economic activity (5 to 17 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_TLF_CHLDEA.005 +member: dcid:sdg/SL_TLF_CHLDEA.AGE--Y6T17__SEX--F, dcid:sdg/SL_TLF_CHLDEA.AGE--Y6T17__SEX--M +name: Proportion of children engaged in economic activity (6 to 17 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_TLF_CHLDEA.006 +member: dcid:sdg/SL_TLF_CHLDEA.AGE--Y7T17__SEX--F, dcid:sdg/SL_TLF_CHLDEA.AGE--Y7T17__SEX--M +name: Proportion of children engaged in economic activity (7 to 17 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_TLF_CHLDEC.001 +member: dcid:sdg/SL_TLF_CHLDEC.AGE--Y10T17, dcid:sdg/SL_TLF_CHLDEC.AGE--Y5T14, dcid:sdg/SL_TLF_CHLDEC.AGE--Y5T17, dcid:sdg/SL_TLF_CHLDEC.AGE--Y6T17, dcid:sdg/SL_TLF_CHLDEC.AGE--Y7T17 +name: Proportion of children engaged in economic activity and household chores by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_TLF_CHLDEC.002 +member: dcid:sdg/SL_TLF_CHLDEC.AGE--Y10T17__SEX--F, dcid:sdg/SL_TLF_CHLDEC.AGE--Y10T17__SEX--M +name: Proportion of children engaged in economic activity and household chores (10 to 17 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_TLF_CHLDEC.003 +member: dcid:sdg/SL_TLF_CHLDEC.AGE--Y5T14__SEX--F, dcid:sdg/SL_TLF_CHLDEC.AGE--Y5T14__SEX--M +name: Proportion of children engaged in economic activity and household chores (5 to 14 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_TLF_CHLDEC.004 +member: dcid:sdg/SL_TLF_CHLDEC.AGE--Y5T17__SEX--F, dcid:sdg/SL_TLF_CHLDEC.AGE--Y5T17__SEX--M +name: Proportion of children engaged in economic activity and household chores (5 to 17 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_TLF_CHLDEC.005 +member: dcid:sdg/SL_TLF_CHLDEC.AGE--Y6T17__SEX--F, dcid:sdg/SL_TLF_CHLDEC.AGE--Y6T17__SEX--M +name: Proportion of children engaged in economic activity and household chores (6 to 17 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_TLF_CHLDEC.006 +member: dcid:sdg/SL_TLF_CHLDEC.AGE--Y7T17__SEX--F, dcid:sdg/SL_TLF_CHLDEC.AGE--Y7T17__SEX--M +name: Proportion of children engaged in economic activity and household chores (7 to 17 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_TLF_MANF.001 +member: dcid:sdg/SL_TLF_MANF.ECONOMIC_ACTIVITY--ISIC4_C +name: Manufacturing employment as a proportion of total employment - previous definition +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_TLF_MANF_19ICLS.001 +member: dcid:sdg/SL_TLF_MANF_19ICLS.ECONOMIC_ACTIVITY--ISIC4_C +name: Manufacturing employment as a proportion of total employment - current definition +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_TLF_NEET.001 +member: dcid:sdg/SL_TLF_NEET.AGE--Y15T24 +name: Proportion of youth not in education, employment or training - previous definition by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_TLF_NEET.002 +member: dcid:sdg/SL_TLF_NEET.AGE--Y15T24__SEX--F, dcid:sdg/SL_TLF_NEET.AGE--Y15T24__SEX--M, dcid:sdg/SL_TLF_NEET.AGE--Y15T24__SEX--_O +name: Proportion of youth not in education, employment or training - previous definition (15 to 24 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_TLF_NEET_19ICLS.001 +member: dcid:sdg/SL_TLF_NEET_19ICLS.AGE--Y15T24 +name: Proportion of youth not in education, employment or training - current definition by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_TLF_NEET_19ICLS.002 +member: dcid:sdg/SL_TLF_NEET_19ICLS.AGE--Y15T24__SEX--F, dcid:sdg/SL_TLF_NEET_19ICLS.AGE--Y15T24__SEX--M +name: Proportion of youth not in education, employment or training - current definition (15 to 24 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_TLF_UEM.001 +member: dcid:sdg/SL_TLF_UEM.AGE--Y15T24, dcid:sdg/SL_TLF_UEM.AGE--Y_GE15, dcid:sdg/SL_TLF_UEM.AGE--Y_GE25 +name: Unemployment rate by sex and age - previous definition by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_TLF_UEM.002 +member: dcid:sdg/SL_TLF_UEM.AGE--Y15T24__SEX--F, dcid:sdg/SL_TLF_UEM.AGE--Y15T24__SEX--M +name: Unemployment rate by sex and age - previous definition (15 to 24 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_TLF_UEM.003 +member: dcid:sdg/SL_TLF_UEM.AGE--Y_GE15__SEX--F, dcid:sdg/SL_TLF_UEM.AGE--Y_GE15__SEX--M, dcid:sdg/SL_TLF_UEM.AGE--Y_GE15__SEX--_O +name: Unemployment rate by sex and age - previous definition (15 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_TLF_UEM.004 +member: dcid:sdg/SL_TLF_UEM.AGE--Y_GE25__SEX--F, dcid:sdg/SL_TLF_UEM.AGE--Y_GE25__SEX--M, dcid:sdg/SL_TLF_UEM.AGE--Y_GE25__SEX--_O +name: Unemployment rate by sex and age - previous definition (25 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_TLF_UEMDIS.001 +member: dcid:sdg/SL_TLF_UEMDIS.AGE--Y_GE15 +name: Unemployment rate by sex and disability - previous definition (15 years old and over) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_TLF_UEMDIS.002 +member: dcid:sdg/SL_TLF_UEMDIS.AGE--Y_GE15__DISABILITY_STATUS--PD, dcid:sdg/SL_TLF_UEMDIS.AGE--Y_GE15__DISABILITY_STATUS--PWD +name: Unemployment rate by sex and disability - previous definition (15 years old and over) by Disability status +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_TLF_UEMDIS.003 +member: dcid:sdg/SL_TLF_UEMDIS.AGE--Y_GE15__SEX--F, dcid:sdg/SL_TLF_UEMDIS.AGE--Y_GE15__SEX--M +name: Unemployment rate by sex and disability - previous definition (15 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_TLF_UEMDIS.004 +member: dcid:sdg/SL_TLF_UEMDIS.AGE--Y_GE15__SEX--F__DISABILITY_STATUS--PD, dcid:sdg/SL_TLF_UEMDIS.AGE--Y_GE15__SEX--F__DISABILITY_STATUS--PWD +name: Unemployment rate by sex and disability - previous definition (15 years old and over, Female) by Disability status +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_TLF_UEMDIS.005 +member: dcid:sdg/SL_TLF_UEMDIS.AGE--Y_GE15__SEX--M__DISABILITY_STATUS--PD, dcid:sdg/SL_TLF_UEMDIS.AGE--Y_GE15__SEX--M__DISABILITY_STATUS--PWD +name: Unemployment rate by sex and disability - previous definition (15 years old and over, Male) by Disability status +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_TLF_UEMDIS_19ICLS.001 +member: dcid:sdg/SL_TLF_UEMDIS_19ICLS.AGE--Y_GE15 +name: Unemployment rate by sex and disability - current definition (15 years old and over) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_TLF_UEMDIS_19ICLS.002 +member: dcid:sdg/SL_TLF_UEMDIS_19ICLS.AGE--Y_GE15__DISABILITY_STATUS--PD, dcid:sdg/SL_TLF_UEMDIS_19ICLS.AGE--Y_GE15__DISABILITY_STATUS--PWD +name: Unemployment rate by sex and disability - current definition (15 years old and over) by Disability status +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_TLF_UEMDIS_19ICLS.003 +member: dcid:sdg/SL_TLF_UEMDIS_19ICLS.AGE--Y_GE15__SEX--F, dcid:sdg/SL_TLF_UEMDIS_19ICLS.AGE--Y_GE15__SEX--M +name: Unemployment rate by sex and disability - current definition (15 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_TLF_UEMDIS_19ICLS.004 +member: dcid:sdg/SL_TLF_UEMDIS_19ICLS.AGE--Y_GE15__SEX--F__DISABILITY_STATUS--PD, dcid:sdg/SL_TLF_UEMDIS_19ICLS.AGE--Y_GE15__SEX--F__DISABILITY_STATUS--PWD +name: Unemployment rate by sex and disability - current definition (15 years old and over, Female) by Disability status +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_TLF_UEMDIS_19ICLS.005 +member: dcid:sdg/SL_TLF_UEMDIS_19ICLS.AGE--Y_GE15__SEX--M__DISABILITY_STATUS--PD, dcid:sdg/SL_TLF_UEMDIS_19ICLS.AGE--Y_GE15__SEX--M__DISABILITY_STATUS--PWD +name: Unemployment rate by sex and disability - current definition (15 years old and over, Male) by Disability status +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_TLF_UEM_19ICLS.001 +member: dcid:sdg/SL_TLF_UEM_19ICLS.AGE--Y15T24, dcid:sdg/SL_TLF_UEM_19ICLS.AGE--Y_GE15, dcid:sdg/SL_TLF_UEM_19ICLS.AGE--Y_GE25 +name: Unemployment rate by sex and age - current definition by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_TLF_UEM_19ICLS.002 +member: dcid:sdg/SL_TLF_UEM_19ICLS.AGE--Y15T24__SEX--F, dcid:sdg/SL_TLF_UEM_19ICLS.AGE--Y15T24__SEX--M +name: Unemployment rate by sex and age - current definition (15 to 24 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_TLF_UEM_19ICLS.003 +member: dcid:sdg/SL_TLF_UEM_19ICLS.AGE--Y_GE15__SEX--F, dcid:sdg/SL_TLF_UEM_19ICLS.AGE--Y_GE15__SEX--M +name: Unemployment rate by sex and age - current definition (15 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSL_TLF_UEM_19ICLS.004 +member: dcid:sdg/SL_TLF_UEM_19ICLS.AGE--Y_GE25__SEX--F, dcid:sdg/SL_TLF_UEM_19ICLS.AGE--Y_GE25__SEX--M +name: Unemployment rate by sex and age - current definition (25 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSM_DTH_MIGR.001 +member: dcid:sdg/SM_DTH_MIGR +name: Total deaths and disappearances recorded during migration +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSM_POP_REFG_OR.001 +member: dcid:sdg/SM_POP_REFG_OR +name: Number of refugees per 100, 000 population +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSN_ITK_DEFC.001 +member: dcid:sdg/SN_ITK_DEFC +name: Prevalence of undernourishment +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSN_ITK_DEFCN.001 +member: dcid:sdg/SN_ITK_DEFCN +name: Number of undernourished people +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSN_STA_OVWGT.001 +member: dcid:sdg/SN_STA_OVWGT.AGE--Y0T4 +name: Proportion of children under 5 years old moderately or severely overweight +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSN_STA_OVWGTN.001 +member: dcid:sdg/SN_STA_OVWGTN.AGE--Y0T4 +name: Children under 5 years old moderately or severely overweight +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_ACS_BSRVH2O.001 +member: dcid:sdg/SP_ACS_BSRVH2O +name: Proportion of population using basic drinking water services +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_ACS_BSRVH2O.002 +member: dcid:sdg/SP_ACS_BSRVH2O.URBANIZATION--R, dcid:sdg/SP_ACS_BSRVH2O.URBANIZATION--U +name: Proportion of population using basic drinking water services by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_ACS_BSRVSAN.001 +member: dcid:sdg/SP_ACS_BSRVSAN +name: Proportion of population using basic sanitation services +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_ACS_BSRVSAN.002 +member: dcid:sdg/SP_ACS_BSRVSAN.URBANIZATION--R, dcid:sdg/SP_ACS_BSRVSAN.URBANIZATION--U +name: Proportion of population using basic sanitation services by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_DISP_RESOL.001 +member: dcid:sdg/SP_DISP_RESOL +name: Proportion of the population who have experienced a dispute in the past two years who accessed a formal or informal dispute resolution mechanism +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_DISP_RESOL.002 +member: dcid:sdg/SP_DISP_RESOL.DISABILITY_STATUS--PD, dcid:sdg/SP_DISP_RESOL.DISABILITY_STATUS--PWD +name: Proportion of the population who have experienced a dispute in the past two years who accessed a formal or informal dispute resolution mechanism by Disability status +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_DISP_RESOL.003 +member: dcid:sdg/SP_DISP_RESOL.SEX--F, dcid:sdg/SP_DISP_RESOL.SEX--M +name: Proportion of the population who have experienced a dispute in the past two years who accessed a formal or informal dispute resolution mechanism by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_DYN_ADKL.001 +member: dcid:sdg/SP_DYN_ADKL.AGE--Y10T14__SEX--F, dcid:sdg/SP_DYN_ADKL.AGE--Y15T19__SEX--F +name: Adolescent birth rate +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_DYN_MRBF15.001 +member: dcid:sdg/SP_DYN_MRBF15.AGE--Y20T24__SEX--F +name: Proportion of women aged 20-24 years who were married or in a union before age 15 +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_DYN_MRBF18.001 +member: dcid:sdg/SP_DYN_MRBF18.AGE--Y20T24__SEX--F +name: Proportion of women aged 20-24 years who were married or in a union before age 18 +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_GNP_WNOWNS.001 +member: dcid:sdg/SP_GNP_WNOWNS +name: Share of women among owners or rights-bearers of agricultural land +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_LGL_LNDAGSEC.001 +member: dcid:sdg/SP_LGL_LNDAGSEC +name: Proportion of total agricultural population with ownership or secure rights over agricultural land +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_LGL_LNDAGSEC.002 +member: dcid:sdg/SP_LGL_LNDAGSEC.SEX--F, dcid:sdg/SP_LGL_LNDAGSEC.SEX--M +name: Proportion of total agricultural population with ownership or secure rights over agricultural land by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_LGL_LNDDOC.002 +member: dcid:sdg/SP_LGL_LNDDOC, dcid:sdg/SP_LGL_LNDDOC.SEX--F +name: Proportion of people with legally recognized documentation of their rights to land out of total adult population by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_LGL_LNDSEC.001 +member: dcid:sdg/SP_LGL_LNDSEC +name: Proportion of people who perceive their rights to land as secure out of total adult population +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_LGL_LNDSTR.002 +member: dcid:sdg/SP_LGL_LNDSTR, dcid:sdg/SP_LGL_LNDSTR.SEX--F +name: Proportion of people with secure tenure rights to land out of total adult population by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_OSATIS_GOV.001 +member: dcid:sdg/SP_PSR_OSATIS_GOV +name: Proportion of population who say that overall they are satisfied with the quality of government services +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_OSATIS_GOV.002 +member: dcid:sdg/SP_PSR_OSATIS_GOV.AGE--Y0T24, dcid:sdg/SP_PSR_OSATIS_GOV.AGE--Y25T34, dcid:sdg/SP_PSR_OSATIS_GOV.AGE--Y35T44, dcid:sdg/SP_PSR_OSATIS_GOV.AGE--Y45T54, dcid:sdg/SP_PSR_OSATIS_GOV.AGE--Y55T64, dcid:sdg/SP_PSR_OSATIS_GOV.AGE--Y_GE65 +name: Proportion of population who say that overall they are satisfied with the quality of government services by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_OSATIS_GOV.003 +member: dcid:sdg/SP_PSR_OSATIS_GOV.DISABILITY_STATUS--PD, dcid:sdg/SP_PSR_OSATIS_GOV.DISABILITY_STATUS--PWD +name: Proportion of population who say that overall they are satisfied with the quality of government services by Disability status +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_OSATIS_GOV.004 +member: dcid:sdg/SP_PSR_OSATIS_GOV.POPULATION_GROUP--CYP_0, dcid:sdg/SP_PSR_OSATIS_GOV.POPULATION_GROUP--CYP_1, dcid:sdg/SP_PSR_OSATIS_GOV.POPULATION_GROUP--ISR_0 +name: Proportion of population who say that overall they are satisfied with the quality of government services by Population group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_OSATIS_GOV.005 +member: dcid:sdg/SP_PSR_OSATIS_GOV.SEX--F, dcid:sdg/SP_PSR_OSATIS_GOV.SEX--M +name: Proportion of population who say that overall they are satisfied with the quality of government services by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_OSATIS_GOV.006 +member: dcid:sdg/SP_PSR_OSATIS_GOV.URBANIZATION--R, dcid:sdg/SP_PSR_OSATIS_GOV.URBANIZATION--U +name: Proportion of population who say that overall they are satisfied with the quality of government services by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_OSATIS_HLTH.001 +member: dcid:sdg/SP_PSR_OSATIS_HLTH +name: Proportion of population who say that overall they are satisfied with the quality of healthcare services +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_OSATIS_HLTH.002 +member: dcid:sdg/SP_PSR_OSATIS_HLTH.AGE--Y0T24, dcid:sdg/SP_PSR_OSATIS_HLTH.AGE--Y25T34, dcid:sdg/SP_PSR_OSATIS_HLTH.AGE--Y35T44, dcid:sdg/SP_PSR_OSATIS_HLTH.AGE--Y45T54, dcid:sdg/SP_PSR_OSATIS_HLTH.AGE--Y55T64, dcid:sdg/SP_PSR_OSATIS_HLTH.AGE--Y_GE65 +name: Proportion of population who say that overall they are satisfied with the quality of healthcare services by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_OSATIS_HLTH.003 +member: dcid:sdg/SP_PSR_OSATIS_HLTH.DISABILITY_STATUS--PD, dcid:sdg/SP_PSR_OSATIS_HLTH.DISABILITY_STATUS--PWD +name: Proportion of population who say that overall they are satisfied with the quality of healthcare services by Disability status +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_OSATIS_HLTH.004 +member: dcid:sdg/SP_PSR_OSATIS_HLTH.POPULATION_GROUP--JPN_0, dcid:sdg/SP_PSR_OSATIS_HLTH.POPULATION_GROUP--JPN_1 +name: Proportion of population who say that overall they are satisfied with the quality of healthcare services by Population group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_OSATIS_HLTH.005 +member: dcid:sdg/SP_PSR_OSATIS_HLTH.SEX--F, dcid:sdg/SP_PSR_OSATIS_HLTH.SEX--M +name: Proportion of population who say that overall they are satisfied with the quality of healthcare services by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_OSATIS_HLTH.006 +member: dcid:sdg/SP_PSR_OSATIS_HLTH.URBANIZATION--R, dcid:sdg/SP_PSR_OSATIS_HLTH.URBANIZATION--U +name: Proportion of population who say that overall they are satisfied with the quality of healthcare services by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_OSATIS_PRM.001 +member: dcid:sdg/SP_PSR_OSATIS_PRM +name: Proportion of population who say that overall they are satisfied with the quality of primary education services +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_OSATIS_PRM.002 +member: dcid:sdg/SP_PSR_OSATIS_PRM.AGE--Y0T24, dcid:sdg/SP_PSR_OSATIS_PRM.AGE--Y25T34, dcid:sdg/SP_PSR_OSATIS_PRM.AGE--Y35T44, dcid:sdg/SP_PSR_OSATIS_PRM.AGE--Y45T54, dcid:sdg/SP_PSR_OSATIS_PRM.AGE--Y55T64, dcid:sdg/SP_PSR_OSATIS_PRM.AGE--Y_GE65 +name: Proportion of population who say that overall they are satisfied with the quality of primary education services by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_OSATIS_PRM.003 +member: dcid:sdg/SP_PSR_OSATIS_PRM.DISABILITY_STATUS--PD, dcid:sdg/SP_PSR_OSATIS_PRM.DISABILITY_STATUS--PWD +name: Proportion of population who say that overall they are satisfied with the quality of primary education services by Disability status +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_OSATIS_PRM.004 +member: dcid:sdg/SP_PSR_OSATIS_PRM.POPULATION_GROUP--ISR_0 +name: Proportion of population who say that overall they are satisfied with the quality of primary education services by Population group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_OSATIS_PRM.005 +member: dcid:sdg/SP_PSR_OSATIS_PRM.SEX--F, dcid:sdg/SP_PSR_OSATIS_PRM.SEX--M +name: Proportion of population who say that overall they are satisfied with the quality of primary education services by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_OSATIS_PRM.006 +member: dcid:sdg/SP_PSR_OSATIS_PRM.URBANIZATION--R, dcid:sdg/SP_PSR_OSATIS_PRM.URBANIZATION--U +name: Proportion of population who say that overall they are satisfied with the quality of primary education services by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_OSATIS_SEC.001 +member: dcid:sdg/SP_PSR_OSATIS_SEC +name: Proportion of population who say that overall they are satisfied with the quality of secondary education services +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_OSATIS_SEC.002 +member: dcid:sdg/SP_PSR_OSATIS_SEC.AGE--Y0T24, dcid:sdg/SP_PSR_OSATIS_SEC.AGE--Y25T34, dcid:sdg/SP_PSR_OSATIS_SEC.AGE--Y35T44, dcid:sdg/SP_PSR_OSATIS_SEC.AGE--Y45T54, dcid:sdg/SP_PSR_OSATIS_SEC.AGE--Y55T64, dcid:sdg/SP_PSR_OSATIS_SEC.AGE--Y_GE65 +name: Proportion of population who say that overall they are satisfied with the quality of secondary education services by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_OSATIS_SEC.003 +member: dcid:sdg/SP_PSR_OSATIS_SEC.DISABILITY_STATUS--PD, dcid:sdg/SP_PSR_OSATIS_SEC.DISABILITY_STATUS--PWD +name: Proportion of population who say that overall they are satisfied with the quality of secondary education services by Disability status +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_OSATIS_SEC.004 +member: dcid:sdg/SP_PSR_OSATIS_SEC.POPULATION_GROUP--ISR_0 +name: Proportion of population who say that overall they are satisfied with the quality of secondary education services by Population group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_OSATIS_SEC.005 +member: dcid:sdg/SP_PSR_OSATIS_SEC.SEX--F, dcid:sdg/SP_PSR_OSATIS_SEC.SEX--M +name: Proportion of population who say that overall they are satisfied with the quality of secondary education services by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_OSATIS_SEC.006 +member: dcid:sdg/SP_PSR_OSATIS_SEC.URBANIZATION--R, dcid:sdg/SP_PSR_OSATIS_SEC.URBANIZATION--U +name: Proportion of population who say that overall they are satisfied with the quality of secondary education services by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_GOV.001 +member: dcid:sdg/SP_PSR_SATIS_GOV.AGE--Y25T34__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_GOV.AGE--Y25T34__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_GOV.AGE--Y25T34__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_GOV.AGE--Y25T34__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_GOV.AGE--Y25T34__SERVICE_ATTRIBUTE--QUALITY, dcid:sdg/SP_PSR_SATIS_GOV.AGE--Y25T34__SERVICE_ATTRIBUTE--TIMELINESS +name: Proportion of population satisfied with their last experience of government services (25 to 34 years old) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_GOV.002 +member: dcid:sdg/SP_PSR_SATIS_GOV.AGE--Y35T44__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_GOV.AGE--Y35T44__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_GOV.AGE--Y35T44__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_GOV.AGE--Y35T44__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_GOV.AGE--Y35T44__SERVICE_ATTRIBUTE--QUALITY, dcid:sdg/SP_PSR_SATIS_GOV.AGE--Y35T44__SERVICE_ATTRIBUTE--TIMELINESS +name: Proportion of population satisfied with their last experience of government services (35 to 44 years old) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_GOV.003 +member: dcid:sdg/SP_PSR_SATIS_GOV.AGE--Y45T54__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_GOV.AGE--Y45T54__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_GOV.AGE--Y45T54__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_GOV.AGE--Y45T54__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_GOV.AGE--Y45T54__SERVICE_ATTRIBUTE--QUALITY, dcid:sdg/SP_PSR_SATIS_GOV.AGE--Y45T54__SERVICE_ATTRIBUTE--TIMELINESS +name: Proportion of population satisfied with their last experience of government services (45 to 54 years old) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_GOV.004 +member: dcid:sdg/SP_PSR_SATIS_GOV.AGE--Y55T64__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_GOV.AGE--Y55T64__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_GOV.AGE--Y55T64__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_GOV.AGE--Y55T64__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_GOV.AGE--Y55T64__SERVICE_ATTRIBUTE--QUALITY, dcid:sdg/SP_PSR_SATIS_GOV.AGE--Y55T64__SERVICE_ATTRIBUTE--TIMELINESS +name: Proportion of population satisfied with their last experience of government services (55 to 64 years old) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_GOV.005 +member: dcid:sdg/SP_PSR_SATIS_GOV.AGE--Y_GE65__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_GOV.AGE--Y_GE65__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_GOV.AGE--Y_GE65__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_GOV.AGE--Y_GE65__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_GOV.AGE--Y_GE65__SERVICE_ATTRIBUTE--QUALITY, dcid:sdg/SP_PSR_SATIS_GOV.AGE--Y_GE65__SERVICE_ATTRIBUTE--TIMELINESS +name: Proportion of population satisfied with their last experience of government services (65 years old and over) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_GOV.006 +member: dcid:sdg/SP_PSR_SATIS_GOV.AGE--Y0T24__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_GOV.AGE--Y0T24__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_GOV.AGE--Y0T24__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_GOV.AGE--Y0T24__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_GOV.AGE--Y0T24__SERVICE_ATTRIBUTE--QUALITY, dcid:sdg/SP_PSR_SATIS_GOV.AGE--Y0T24__SERVICE_ATTRIBUTE--TIMELINESS +name: Proportion of population satisfied with their last experience of government services (under 25 years old) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_GOV.007 +member: dcid:sdg/SP_PSR_SATIS_GOV.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_GOV.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_GOV.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_GOV.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_GOV.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--QUALITY, dcid:sdg/SP_PSR_SATIS_GOV.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--TIMELINESS +name: Proportion of population satisfied with their last experience of government services (Persons with disability) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_GOV.008 +member: dcid:sdg/SP_PSR_SATIS_GOV.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_GOV.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_GOV.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_GOV.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_GOV.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--QUALITY, dcid:sdg/SP_PSR_SATIS_GOV.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--TIMELINESS +name: Proportion of population satisfied with their last experience of government services (Persons without disability) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_GOV.009 +member: dcid:sdg/SP_PSR_SATIS_GOV.SERVICE_ATTRIBUTE--ACCESS__POPULATION_GROUP--ISR_0, dcid:sdg/SP_PSR_SATIS_GOV.SERVICE_ATTRIBUTE--EQUALITY__POPULATION_GROUP--ISR_0, dcid:sdg/SP_PSR_SATIS_GOV.SERVICE_ATTRIBUTE--QUALITY__POPULATION_GROUP--ISR_0, dcid:sdg/SP_PSR_SATIS_GOV.SERVICE_ATTRIBUTE--TIMELINESS__POPULATION_GROUP--ISR_0 +name: Proportion of population satisfied with their last experience of government services (Arabs) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_GOV.010 +member: dcid:sdg/SP_PSR_SATIS_GOV.SERVICE_ATTRIBUTE--ACCESS__POPULATION_GROUP--CYP_0, dcid:sdg/SP_PSR_SATIS_GOV.SERVICE_ATTRIBUTE--AVERAGE__POPULATION_GROUP--CYP_0, dcid:sdg/SP_PSR_SATIS_GOV.SERVICE_ATTRIBUTE--EQUALITY__POPULATION_GROUP--CYP_0, dcid:sdg/SP_PSR_SATIS_GOV.SERVICE_ATTRIBUTE--QUALITY__POPULATION_GROUP--CYP_0, dcid:sdg/SP_PSR_SATIS_GOV.SERVICE_ATTRIBUTE--TIMELINESS__POPULATION_GROUP--CYP_0 +name: Proportion of population satisfied with their last experience of government services (Cypriot Nationality) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_GOV.011 +member: dcid:sdg/SP_PSR_SATIS_GOV.SERVICE_ATTRIBUTE--ACCESS__POPULATION_GROUP--CYP_1, dcid:sdg/SP_PSR_SATIS_GOV.SERVICE_ATTRIBUTE--AVERAGE__POPULATION_GROUP--CYP_1, dcid:sdg/SP_PSR_SATIS_GOV.SERVICE_ATTRIBUTE--EQUALITY__POPULATION_GROUP--CYP_1, dcid:sdg/SP_PSR_SATIS_GOV.SERVICE_ATTRIBUTE--QUALITY__POPULATION_GROUP--CYP_1, dcid:sdg/SP_PSR_SATIS_GOV.SERVICE_ATTRIBUTE--TIMELINESS__POPULATION_GROUP--CYP_1 +name: Proportion of population satisfied with their last experience of government services (Non-Cypriot Nationality) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_GOV.012 +member: dcid:sdg/SP_PSR_SATIS_GOV.SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_GOV.SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_GOV.SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_GOV.SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_GOV.SERVICE_ATTRIBUTE--QUALITY, dcid:sdg/SP_PSR_SATIS_GOV.SERVICE_ATTRIBUTE--TIMELINESS +name: Proportion of population satisfied with their last experience of government services by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_GOV.013 +member: dcid:sdg/SP_PSR_SATIS_GOV.SEX--F__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_GOV.SEX--F__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_GOV.SEX--F__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_GOV.SEX--F__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_GOV.SEX--F__SERVICE_ATTRIBUTE--QUALITY, dcid:sdg/SP_PSR_SATIS_GOV.SEX--F__SERVICE_ATTRIBUTE--TIMELINESS +name: Proportion of population satisfied with their last experience of government services (Female) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_GOV.014 +member: dcid:sdg/SP_PSR_SATIS_GOV.SEX--M__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_GOV.SEX--M__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_GOV.SEX--M__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_GOV.SEX--M__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_GOV.SEX--M__SERVICE_ATTRIBUTE--QUALITY, dcid:sdg/SP_PSR_SATIS_GOV.SEX--M__SERVICE_ATTRIBUTE--TIMELINESS +name: Proportion of population satisfied with their last experience of government services (Male) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_GOV.015 +member: dcid:sdg/SP_PSR_SATIS_GOV.URBANIZATION--R__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_GOV.URBANIZATION--R__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_GOV.URBANIZATION--R__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_GOV.URBANIZATION--R__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_GOV.URBANIZATION--R__SERVICE_ATTRIBUTE--QUALITY, dcid:sdg/SP_PSR_SATIS_GOV.URBANIZATION--R__SERVICE_ATTRIBUTE--TIMELINESS +name: Proportion of population satisfied with their last experience of government services (Rural) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_GOV.016 +member: dcid:sdg/SP_PSR_SATIS_GOV.URBANIZATION--U__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_GOV.URBANIZATION--U__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_GOV.URBANIZATION--U__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_GOV.URBANIZATION--U__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_GOV.URBANIZATION--U__SERVICE_ATTRIBUTE--QUALITY, dcid:sdg/SP_PSR_SATIS_GOV.URBANIZATION--U__SERVICE_ATTRIBUTE--TIMELINESS +name: Proportion of population satisfied with their last experience of government services (Urban) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_HLTH.001 +member: dcid:sdg/SP_PSR_SATIS_HLTH.AGE--Y25T34__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_HLTH.AGE--Y25T34__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_HLTH.AGE--Y25T34__SERVICE_ATTRIBUTE--ATTITUDE, dcid:sdg/SP_PSR_SATIS_HLTH.AGE--Y25T34__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_HLTH.AGE--Y25T34__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_HLTH.AGE--Y25T34__SERVICE_ATTRIBUTE--QUALITY +name: Proportion of population satisfied with their last experience of public healthcare services (25 to 34 years old) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_HLTH.002 +member: dcid:sdg/SP_PSR_SATIS_HLTH.AGE--Y35T44__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_HLTH.AGE--Y35T44__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_HLTH.AGE--Y35T44__SERVICE_ATTRIBUTE--ATTITUDE, dcid:sdg/SP_PSR_SATIS_HLTH.AGE--Y35T44__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_HLTH.AGE--Y35T44__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_HLTH.AGE--Y35T44__SERVICE_ATTRIBUTE--QUALITY +name: Proportion of population satisfied with their last experience of public healthcare services (35 to 44 years old) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_HLTH.003 +member: dcid:sdg/SP_PSR_SATIS_HLTH.AGE--Y45T54__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_HLTH.AGE--Y45T54__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_HLTH.AGE--Y45T54__SERVICE_ATTRIBUTE--ATTITUDE, dcid:sdg/SP_PSR_SATIS_HLTH.AGE--Y45T54__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_HLTH.AGE--Y45T54__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_HLTH.AGE--Y45T54__SERVICE_ATTRIBUTE--QUALITY +name: Proportion of population satisfied with their last experience of public healthcare services (45 to 54 years old) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_HLTH.004 +member: dcid:sdg/SP_PSR_SATIS_HLTH.AGE--Y55T64__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_HLTH.AGE--Y55T64__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_HLTH.AGE--Y55T64__SERVICE_ATTRIBUTE--ATTITUDE, dcid:sdg/SP_PSR_SATIS_HLTH.AGE--Y55T64__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_HLTH.AGE--Y55T64__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_HLTH.AGE--Y55T64__SERVICE_ATTRIBUTE--QUALITY +name: Proportion of population satisfied with their last experience of public healthcare services (55 to 64 years old) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_HLTH.005 +member: dcid:sdg/SP_PSR_SATIS_HLTH.AGE--Y_GE65__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_HLTH.AGE--Y_GE65__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_HLTH.AGE--Y_GE65__SERVICE_ATTRIBUTE--ATTITUDE, dcid:sdg/SP_PSR_SATIS_HLTH.AGE--Y_GE65__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_HLTH.AGE--Y_GE65__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_HLTH.AGE--Y_GE65__SERVICE_ATTRIBUTE--QUALITY +name: Proportion of population satisfied with their last experience of public healthcare services (65 years old and over) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_HLTH.006 +member: dcid:sdg/SP_PSR_SATIS_HLTH.AGE--Y0T24__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_HLTH.AGE--Y0T24__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_HLTH.AGE--Y0T24__SERVICE_ATTRIBUTE--ATTITUDE, dcid:sdg/SP_PSR_SATIS_HLTH.AGE--Y0T24__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_HLTH.AGE--Y0T24__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_HLTH.AGE--Y0T24__SERVICE_ATTRIBUTE--QUALITY +name: Proportion of population satisfied with their last experience of public healthcare services (under 25 years old) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_HLTH.007 +member: dcid:sdg/SP_PSR_SATIS_HLTH.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_HLTH.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_HLTH.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--ATTITUDE, dcid:sdg/SP_PSR_SATIS_HLTH.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_HLTH.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_HLTH.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--QUALITY +name: Proportion of population satisfied with their last experience of public healthcare services (Persons with disability) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_HLTH.008 +member: dcid:sdg/SP_PSR_SATIS_HLTH.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_HLTH.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_HLTH.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--ATTITUDE, dcid:sdg/SP_PSR_SATIS_HLTH.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_HLTH.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_HLTH.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--QUALITY +name: Proportion of population satisfied with their last experience of public healthcare services (Persons without disability) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_HLTH.009 +member: dcid:sdg/SP_PSR_SATIS_HLTH.SERVICE_ATTRIBUTE--ACCESS__POPULATION_GROUP--ISR_0, dcid:sdg/SP_PSR_SATIS_HLTH.SERVICE_ATTRIBUTE--ATTITUDE__POPULATION_GROUP--ISR_0, dcid:sdg/SP_PSR_SATIS_HLTH.SERVICE_ATTRIBUTE--QUALITY__POPULATION_GROUP--ISR_0 +name: Proportion of population satisfied with their last experience of public healthcare services (Arabs) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_HLTH.010 +member: dcid:sdg/SP_PSR_SATIS_HLTH.SERVICE_ATTRIBUTE--ACCESS__POPULATION_GROUP--NZL_4, dcid:sdg/SP_PSR_SATIS_HLTH.SERVICE_ATTRIBUTE--AFFORD__POPULATION_GROUP--NZL_4, dcid:sdg/SP_PSR_SATIS_HLTH.SERVICE_ATTRIBUTE--ATTITUDE__POPULATION_GROUP--NZL_4 +name: Proportion of population satisfied with their last experience of public healthcare services (Asia) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_HLTH.011 +member: dcid:sdg/SP_PSR_SATIS_HLTH.SERVICE_ATTRIBUTE--ACCESS__POPULATION_GROUP--NZL_3, dcid:sdg/SP_PSR_SATIS_HLTH.SERVICE_ATTRIBUTE--AFFORD__POPULATION_GROUP--NZL_3, dcid:sdg/SP_PSR_SATIS_HLTH.SERVICE_ATTRIBUTE--ATTITUDE__POPULATION_GROUP--NZL_3 +name: Proportion of population satisfied with their last experience of public healthcare services (European/Other) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_HLTH.012 +member: dcid:sdg/SP_PSR_SATIS_HLTH.SERVICE_ATTRIBUTE--ACCESS__POPULATION_GROUP--NZL_0, dcid:sdg/SP_PSR_SATIS_HLTH.SERVICE_ATTRIBUTE--AFFORD__POPULATION_GROUP--NZL_0, dcid:sdg/SP_PSR_SATIS_HLTH.SERVICE_ATTRIBUTE--ATTITUDE__POPULATION_GROUP--NZL_0 +name: Proportion of population satisfied with their last experience of public healthcare services (Maori) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_HLTH.013 +member: dcid:sdg/SP_PSR_SATIS_HLTH.SERVICE_ATTRIBUTE--ACCESS__POPULATION_GROUP--NZL_1, dcid:sdg/SP_PSR_SATIS_HLTH.SERVICE_ATTRIBUTE--AFFORD__POPULATION_GROUP--NZL_1, dcid:sdg/SP_PSR_SATIS_HLTH.SERVICE_ATTRIBUTE--ATTITUDE__POPULATION_GROUP--NZL_1 +name: Proportion of population satisfied with their last experience of public healthcare services (Pacific People) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_HLTH.014 +member: dcid:sdg/SP_PSR_SATIS_HLTH.SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_HLTH.SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_HLTH.SERVICE_ATTRIBUTE--ATTITUDE, dcid:sdg/SP_PSR_SATIS_HLTH.SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_HLTH.SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_HLTH.SERVICE_ATTRIBUTE--QUALITY +name: Proportion of population satisfied with their last experience of public healthcare services by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_HLTH.015 +member: dcid:sdg/SP_PSR_SATIS_HLTH.SEX--F__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_HLTH.SEX--F__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_HLTH.SEX--F__SERVICE_ATTRIBUTE--ATTITUDE, dcid:sdg/SP_PSR_SATIS_HLTH.SEX--F__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_HLTH.SEX--F__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_HLTH.SEX--F__SERVICE_ATTRIBUTE--QUALITY +name: Proportion of population satisfied with their last experience of public healthcare services (Female) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_HLTH.016 +member: dcid:sdg/SP_PSR_SATIS_HLTH.SEX--M__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_HLTH.SEX--M__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_HLTH.SEX--M__SERVICE_ATTRIBUTE--ATTITUDE, dcid:sdg/SP_PSR_SATIS_HLTH.SEX--M__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_HLTH.SEX--M__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_HLTH.SEX--M__SERVICE_ATTRIBUTE--QUALITY +name: Proportion of population satisfied with their last experience of public healthcare services (Male) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_HLTH.017 +member: dcid:sdg/SP_PSR_SATIS_HLTH.URBANIZATION--R__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_HLTH.URBANIZATION--R__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_HLTH.URBANIZATION--R__SERVICE_ATTRIBUTE--ATTITUDE, dcid:sdg/SP_PSR_SATIS_HLTH.URBANIZATION--R__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_HLTH.URBANIZATION--R__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_HLTH.URBANIZATION--R__SERVICE_ATTRIBUTE--QUALITY +name: Proportion of population satisfied with their last experience of public healthcare services (Rural) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_HLTH.018 +member: dcid:sdg/SP_PSR_SATIS_HLTH.URBANIZATION--U__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_HLTH.URBANIZATION--U__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_HLTH.URBANIZATION--U__SERVICE_ATTRIBUTE--ATTITUDE, dcid:sdg/SP_PSR_SATIS_HLTH.URBANIZATION--U__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_HLTH.URBANIZATION--U__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_HLTH.URBANIZATION--U__SERVICE_ATTRIBUTE--QUALITY +name: Proportion of population satisfied with their last experience of public healthcare services (Urban) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_HLTH.019 +member: dcid:sdg/SP_PSR_SATIS_HLTH.WEALTH_QUANTILE--Q4__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_HLTH.WEALTH_QUANTILE--Q4__SERVICE_ATTRIBUTE--AFFORD +name: Proportion of population satisfied with their last experience of public healthcare services (Fourth quintile) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_HLTH.020 +member: dcid:sdg/SP_PSR_SATIS_HLTH.WEALTH_QUANTILE--Q5__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_HLTH.WEALTH_QUANTILE--Q5__SERVICE_ATTRIBUTE--AFFORD +name: Proportion of population satisfied with their last experience of public healthcare services (Highest quintile) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_HLTH.021 +member: dcid:sdg/SP_PSR_SATIS_HLTH.WEALTH_QUANTILE--Q1__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_HLTH.WEALTH_QUANTILE--Q1__SERVICE_ATTRIBUTE--AFFORD +name: Proportion of population satisfied with their last experience of public healthcare services (Lowest quintile) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_HLTH.022 +member: dcid:sdg/SP_PSR_SATIS_HLTH.WEALTH_QUANTILE--Q3__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_HLTH.WEALTH_QUANTILE--Q3__SERVICE_ATTRIBUTE--AFFORD +name: Proportion of population satisfied with their last experience of public healthcare services (Middle quintile) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_HLTH.023 +member: dcid:sdg/SP_PSR_SATIS_HLTH.WEALTH_QUANTILE--Q2__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_HLTH.WEALTH_QUANTILE--Q2__SERVICE_ATTRIBUTE--AFFORD +name: Proportion of population satisfied with their last experience of public healthcare services (Second quintile) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_PRM.001 +member: dcid:sdg/SP_PSR_SATIS_PRM.AGE--Y25T34__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_PRM.AGE--Y25T34__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_PRM.AGE--Y25T34__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_PRM.AGE--Y25T34__SERVICE_ATTRIBUTE--EFFECTIVE, dcid:sdg/SP_PSR_SATIS_PRM.AGE--Y25T34__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_PRM.AGE--Y25T34__SERVICE_ATTRIBUTE--QUALITY +name: Proportion of population satisfied with their last experience of public primary education services (25 to 34 years old) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_PRM.002 +member: dcid:sdg/SP_PSR_SATIS_PRM.AGE--Y35T44__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_PRM.AGE--Y35T44__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_PRM.AGE--Y35T44__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_PRM.AGE--Y35T44__SERVICE_ATTRIBUTE--EFFECTIVE, dcid:sdg/SP_PSR_SATIS_PRM.AGE--Y35T44__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_PRM.AGE--Y35T44__SERVICE_ATTRIBUTE--QUALITY +name: Proportion of population satisfied with their last experience of public primary education services (35 to 44 years old) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_PRM.003 +member: dcid:sdg/SP_PSR_SATIS_PRM.AGE--Y45T54__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_PRM.AGE--Y45T54__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_PRM.AGE--Y45T54__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_PRM.AGE--Y45T54__SERVICE_ATTRIBUTE--EFFECTIVE, dcid:sdg/SP_PSR_SATIS_PRM.AGE--Y45T54__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_PRM.AGE--Y45T54__SERVICE_ATTRIBUTE--QUALITY +name: Proportion of population satisfied with their last experience of public primary education services (45 to 54 years old) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_PRM.004 +member: dcid:sdg/SP_PSR_SATIS_PRM.AGE--Y55T64__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_PRM.AGE--Y55T64__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_PRM.AGE--Y55T64__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_PRM.AGE--Y55T64__SERVICE_ATTRIBUTE--EFFECTIVE, dcid:sdg/SP_PSR_SATIS_PRM.AGE--Y55T64__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_PRM.AGE--Y55T64__SERVICE_ATTRIBUTE--QUALITY +name: Proportion of population satisfied with their last experience of public primary education services (55 to 64 years old) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_PRM.005 +member: dcid:sdg/SP_PSR_SATIS_PRM.AGE--Y_GE65__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_PRM.AGE--Y_GE65__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_PRM.AGE--Y_GE65__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_PRM.AGE--Y_GE65__SERVICE_ATTRIBUTE--EFFECTIVE, dcid:sdg/SP_PSR_SATIS_PRM.AGE--Y_GE65__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_PRM.AGE--Y_GE65__SERVICE_ATTRIBUTE--QUALITY +name: Proportion of population satisfied with their last experience of public primary education services (65 years old and over) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_PRM.006 +member: dcid:sdg/SP_PSR_SATIS_PRM.AGE--Y0T24__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_PRM.AGE--Y0T24__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_PRM.AGE--Y0T24__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_PRM.AGE--Y0T24__SERVICE_ATTRIBUTE--EFFECTIVE, dcid:sdg/SP_PSR_SATIS_PRM.AGE--Y0T24__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_PRM.AGE--Y0T24__SERVICE_ATTRIBUTE--QUALITY +name: Proportion of population satisfied with their last experience of public primary education services (under 25 years old) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_PRM.007 +member: dcid:sdg/SP_PSR_SATIS_PRM.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_PRM.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_PRM.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_PRM.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--EFFECTIVE, dcid:sdg/SP_PSR_SATIS_PRM.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_PRM.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--QUALITY +name: Proportion of population satisfied with their last experience of public primary education services (Persons with disability) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_PRM.008 +member: dcid:sdg/SP_PSR_SATIS_PRM.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_PRM.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_PRM.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_PRM.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--EFFECTIVE, dcid:sdg/SP_PSR_SATIS_PRM.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_PRM.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--QUALITY +name: Proportion of population satisfied with their last experience of public primary education services (Persons without disability) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_PRM.009 +member: dcid:sdg/SP_PSR_SATIS_PRM.SERVICE_ATTRIBUTE--ACCESS__POPULATION_GROUP--ISR_0, dcid:sdg/SP_PSR_SATIS_PRM.SERVICE_ATTRIBUTE--EFFECTIVE__POPULATION_GROUP--ISR_0, dcid:sdg/SP_PSR_SATIS_PRM.SERVICE_ATTRIBUTE--QUALITY__POPULATION_GROUP--ISR_0 +name: Proportion of population satisfied with their last experience of public primary education services (Arabs) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_PRM.010 +member: dcid:sdg/SP_PSR_SATIS_PRM.SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_PRM.SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_PRM.SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_PRM.SERVICE_ATTRIBUTE--EFFECTIVE, dcid:sdg/SP_PSR_SATIS_PRM.SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_PRM.SERVICE_ATTRIBUTE--QUALITY +name: Proportion of population satisfied with their last experience of public primary education services by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_PRM.011 +member: dcid:sdg/SP_PSR_SATIS_PRM.SEX--F__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_PRM.SEX--F__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_PRM.SEX--F__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_PRM.SEX--F__SERVICE_ATTRIBUTE--EFFECTIVE, dcid:sdg/SP_PSR_SATIS_PRM.SEX--F__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_PRM.SEX--F__SERVICE_ATTRIBUTE--QUALITY +name: Proportion of population satisfied with their last experience of public primary education services (Female) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_PRM.012 +member: dcid:sdg/SP_PSR_SATIS_PRM.SEX--M__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_PRM.SEX--M__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_PRM.SEX--M__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_PRM.SEX--M__SERVICE_ATTRIBUTE--EFFECTIVE, dcid:sdg/SP_PSR_SATIS_PRM.SEX--M__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_PRM.SEX--M__SERVICE_ATTRIBUTE--QUALITY +name: Proportion of population satisfied with their last experience of public primary education services (Male) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_PRM.013 +member: dcid:sdg/SP_PSR_SATIS_PRM.URBANIZATION--R__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_PRM.URBANIZATION--R__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_PRM.URBANIZATION--R__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_PRM.URBANIZATION--R__SERVICE_ATTRIBUTE--EFFECTIVE, dcid:sdg/SP_PSR_SATIS_PRM.URBANIZATION--R__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_PRM.URBANIZATION--R__SERVICE_ATTRIBUTE--QUALITY +name: Proportion of population satisfied with their last experience of public primary education services (Rural) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_PRM.014 +member: dcid:sdg/SP_PSR_SATIS_PRM.URBANIZATION--U__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_PRM.URBANIZATION--U__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_PRM.URBANIZATION--U__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_PRM.URBANIZATION--U__SERVICE_ATTRIBUTE--EFFECTIVE, dcid:sdg/SP_PSR_SATIS_PRM.URBANIZATION--U__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_PRM.URBANIZATION--U__SERVICE_ATTRIBUTE--QUALITY +name: Proportion of population satisfied with their last experience of public primary education services (Urban) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_PRM.015 +member: dcid:sdg/SP_PSR_SATIS_PRM.SEX--M__URBANIZATION--U__SERVICE_ATTRIBUTE--QUALITY +name: Proportion of population satisfied with their last experience of public primary education services (Urban, Male) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_SEC.001 +member: dcid:sdg/SP_PSR_SATIS_SEC.AGE--Y25T34__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_SEC.AGE--Y25T34__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_SEC.AGE--Y25T34__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_SEC.AGE--Y25T34__SERVICE_ATTRIBUTE--EFFECTIVE, dcid:sdg/SP_PSR_SATIS_SEC.AGE--Y25T34__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_SEC.AGE--Y25T34__SERVICE_ATTRIBUTE--QUALITY +name: Proportion of population satisfied with their last experience of public secondary education services (25 to 34 years old) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_SEC.002 +member: dcid:sdg/SP_PSR_SATIS_SEC.AGE--Y35T44__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_SEC.AGE--Y35T44__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_SEC.AGE--Y35T44__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_SEC.AGE--Y35T44__SERVICE_ATTRIBUTE--EFFECTIVE, dcid:sdg/SP_PSR_SATIS_SEC.AGE--Y35T44__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_SEC.AGE--Y35T44__SERVICE_ATTRIBUTE--QUALITY +name: Proportion of population satisfied with their last experience of public secondary education services (35 to 44 years old) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_SEC.003 +member: dcid:sdg/SP_PSR_SATIS_SEC.AGE--Y45T54__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_SEC.AGE--Y45T54__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_SEC.AGE--Y45T54__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_SEC.AGE--Y45T54__SERVICE_ATTRIBUTE--EFFECTIVE, dcid:sdg/SP_PSR_SATIS_SEC.AGE--Y45T54__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_SEC.AGE--Y45T54__SERVICE_ATTRIBUTE--QUALITY +name: Proportion of population satisfied with their last experience of public secondary education services (45 to 54 years old) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_SEC.004 +member: dcid:sdg/SP_PSR_SATIS_SEC.AGE--Y55T64__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_SEC.AGE--Y55T64__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_SEC.AGE--Y55T64__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_SEC.AGE--Y55T64__SERVICE_ATTRIBUTE--EFFECTIVE, dcid:sdg/SP_PSR_SATIS_SEC.AGE--Y55T64__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_SEC.AGE--Y55T64__SERVICE_ATTRIBUTE--QUALITY +name: Proportion of population satisfied with their last experience of public secondary education services (55 to 64 years old) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_SEC.005 +member: dcid:sdg/SP_PSR_SATIS_SEC.AGE--Y_GE65__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_SEC.AGE--Y_GE65__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_SEC.AGE--Y_GE65__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_SEC.AGE--Y_GE65__SERVICE_ATTRIBUTE--EFFECTIVE, dcid:sdg/SP_PSR_SATIS_SEC.AGE--Y_GE65__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_SEC.AGE--Y_GE65__SERVICE_ATTRIBUTE--QUALITY +name: Proportion of population satisfied with their last experience of public secondary education services (65 years old and over) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_SEC.006 +member: dcid:sdg/SP_PSR_SATIS_SEC.AGE--Y0T24__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_SEC.AGE--Y0T24__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_SEC.AGE--Y0T24__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_SEC.AGE--Y0T24__SERVICE_ATTRIBUTE--EFFECTIVE, dcid:sdg/SP_PSR_SATIS_SEC.AGE--Y0T24__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_SEC.AGE--Y0T24__SERVICE_ATTRIBUTE--QUALITY +name: Proportion of population satisfied with their last experience of public secondary education services (under 25 years old) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_SEC.007 +member: dcid:sdg/SP_PSR_SATIS_SEC.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_SEC.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_SEC.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_SEC.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--EFFECTIVE, dcid:sdg/SP_PSR_SATIS_SEC.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_SEC.DISABILITY_STATUS--PD__SERVICE_ATTRIBUTE--QUALITY +name: Proportion of population satisfied with their last experience of public secondary education services (Persons with disability) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_SEC.008 +member: dcid:sdg/SP_PSR_SATIS_SEC.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_SEC.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_SEC.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_SEC.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--EFFECTIVE, dcid:sdg/SP_PSR_SATIS_SEC.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_SEC.DISABILITY_STATUS--PWD__SERVICE_ATTRIBUTE--QUALITY +name: Proportion of population satisfied with their last experience of public secondary education services (Persons without disability) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_SEC.009 +member: dcid:sdg/SP_PSR_SATIS_SEC.SERVICE_ATTRIBUTE--ACCESS__POPULATION_GROUP--ISR_1, dcid:sdg/SP_PSR_SATIS_SEC.SERVICE_ATTRIBUTE--EFFECTIVE__POPULATION_GROUP--ISR_1, dcid:sdg/SP_PSR_SATIS_SEC.SERVICE_ATTRIBUTE--QUALITY__POPULATION_GROUP--ISR_1 +name: Proportion of population satisfied with their last experience of public secondary education services (West Bank) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_SEC.010 +member: dcid:sdg/SP_PSR_SATIS_SEC.SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_SEC.SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_SEC.SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_SEC.SERVICE_ATTRIBUTE--EFFECTIVE, dcid:sdg/SP_PSR_SATIS_SEC.SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_SEC.SERVICE_ATTRIBUTE--QUALITY +name: Proportion of population satisfied with their last experience of public secondary education services by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_SEC.011 +member: dcid:sdg/SP_PSR_SATIS_SEC.SEX--F__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_SEC.SEX--F__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_SEC.SEX--F__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_SEC.SEX--F__SERVICE_ATTRIBUTE--EFFECTIVE, dcid:sdg/SP_PSR_SATIS_SEC.SEX--F__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_SEC.SEX--F__SERVICE_ATTRIBUTE--QUALITY +name: Proportion of population satisfied with their last experience of public secondary education services (Female) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_SEC.012 +member: dcid:sdg/SP_PSR_SATIS_SEC.SEX--M__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_SEC.SEX--M__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_SEC.SEX--M__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_SEC.SEX--M__SERVICE_ATTRIBUTE--EFFECTIVE, dcid:sdg/SP_PSR_SATIS_SEC.SEX--M__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_SEC.SEX--M__SERVICE_ATTRIBUTE--QUALITY +name: Proportion of population satisfied with their last experience of public secondary education services (Male) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_SEC.013 +member: dcid:sdg/SP_PSR_SATIS_SEC.URBANIZATION--R__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_SEC.URBANIZATION--R__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_SEC.URBANIZATION--R__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_SEC.URBANIZATION--R__SERVICE_ATTRIBUTE--EFFECTIVE, dcid:sdg/SP_PSR_SATIS_SEC.URBANIZATION--R__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_SEC.URBANIZATION--R__SERVICE_ATTRIBUTE--QUALITY +name: Proportion of population satisfied with their last experience of public secondary education services (Rural) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_PSR_SATIS_SEC.014 +member: dcid:sdg/SP_PSR_SATIS_SEC.URBANIZATION--U__SERVICE_ATTRIBUTE--ACCESS, dcid:sdg/SP_PSR_SATIS_SEC.URBANIZATION--U__SERVICE_ATTRIBUTE--AFFORD, dcid:sdg/SP_PSR_SATIS_SEC.URBANIZATION--U__SERVICE_ATTRIBUTE--AVERAGE, dcid:sdg/SP_PSR_SATIS_SEC.URBANIZATION--U__SERVICE_ATTRIBUTE--EFFECTIVE, dcid:sdg/SP_PSR_SATIS_SEC.URBANIZATION--U__SERVICE_ATTRIBUTE--EQUALITY, dcid:sdg/SP_PSR_SATIS_SEC.URBANIZATION--U__SERVICE_ATTRIBUTE--QUALITY +name: Proportion of population satisfied with their last experience of public secondary education services (Urban) by Service attribute +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_ROD_R2KM.001 +member: dcid:sdg/SP_ROD_R2KM.URBANIZATION--R +name: Proportion of the rural population who live within 2 km of an all-season road +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGSP_TRN_PUBL.001 +member: dcid:sdg/SP_TRN_PUBL +name: Proportion of population that has convenient access to public transport +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGST_EEV_ACCSEEA.001 +member: dcid:sdg/ST_EEV_ACCSEEA +name: Implementation of standard accounting tools to monitor the economic and environmental aspects of tourism (SEEA tables) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGST_EEV_ACCTSA.001 +member: dcid:sdg/ST_EEV_ACCTSA +name: Implementation of standard accounting tools to monitor the economic and environmental aspects of tourism (Tourism Satellite Account tables) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGST_EEV_STDACCT.001 +member: dcid:sdg/ST_EEV_STDACCT +name: Implementation of standard accounting tools to monitor the economic and environmental aspects of tourism (number of tables) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGST_GDP_ZS.001 +member: dcid:sdg/ST_GDP_ZS +name: Tourism direct GDP as a proportion of total GDP +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGTG_VAL_TOTL_GD_ZS.001 +member: dcid:sdg/TG_VAL_TOTL_GD_ZS +name: Merchandise trade as a proportion of GDP +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGTM_TAX_DMFN.001 +member: dcid:sdg/TM_TAX_DMFN +name: Average tariff applied by developed countries, most-favored nation status +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGTM_TAX_DMFN.002 +member: dcid:sdg/TM_TAX_DMFN.PRODUCT--AGG_AGR, dcid:sdg/TM_TAX_DMFN.PRODUCT--AGG_ARMS, dcid:sdg/TM_TAX_DMFN.PRODUCT--AGG_CLTH, dcid:sdg/TM_TAX_DMFN.PRODUCT--AGG_IND, dcid:sdg/TM_TAX_DMFN.PRODUCT--AGG_OIL, dcid:sdg/TM_TAX_DMFN.PRODUCT--AGG_TXT +name: Average tariff applied by developed countries, most-favored nation status by Product +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGTM_TAX_DPRF.001 +member: dcid:sdg/TM_TAX_DPRF +name: Average tariff applied by developed countries, preferential status +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGTM_TAX_DPRF.002 +member: dcid:sdg/TM_TAX_DPRF.PRODUCT--AGG_AGR, dcid:sdg/TM_TAX_DPRF.PRODUCT--AGG_ARMS, dcid:sdg/TM_TAX_DPRF.PRODUCT--AGG_CLTH, dcid:sdg/TM_TAX_DPRF.PRODUCT--AGG_IND, dcid:sdg/TM_TAX_DPRF.PRODUCT--AGG_OIL, dcid:sdg/TM_TAX_DPRF.PRODUCT--AGG_TXT +name: Average tariff applied by developed countries, preferential status by Product +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGTM_TAX_WMFN.001 +member: dcid:sdg/TM_TAX_WMFN +name: Worldwide weighted tariff-average, most-favoured-nation status +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGTM_TAX_WMFN.002 +member: dcid:sdg/TM_TAX_WMFN.PRODUCT--AGG_AGR, dcid:sdg/TM_TAX_WMFN.PRODUCT--AGG_ARMS, dcid:sdg/TM_TAX_WMFN.PRODUCT--AGG_CLTH, dcid:sdg/TM_TAX_WMFN.PRODUCT--AGG_IND, dcid:sdg/TM_TAX_WMFN.PRODUCT--AGG_OIL, dcid:sdg/TM_TAX_WMFN.PRODUCT--AGG_TXT +name: Worldwide weighted tariff-average, most-favoured-nation status by Product +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGTM_TAX_WMPS.001 +member: dcid:sdg/TM_TAX_WMPS +name: Worldwide weighted tariff-average, preferential status +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGTM_TAX_WMPS.002 +member: dcid:sdg/TM_TAX_WMPS.PRODUCT--AGG_AGR, dcid:sdg/TM_TAX_WMPS.PRODUCT--AGG_ARMS, dcid:sdg/TM_TAX_WMPS.PRODUCT--AGG_CLTH, dcid:sdg/TM_TAX_WMPS.PRODUCT--AGG_IND, dcid:sdg/TM_TAX_WMPS.PRODUCT--AGG_OIL, dcid:sdg/TM_TAX_WMPS.PRODUCT--AGG_TXT +name: Worldwide weighted tariff-average, preferential status by Product +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGTM_TRF_ZERO.001 +member: dcid:sdg/TM_TRF_ZERO +name: Proportion of tariff lines applied to imports with zero-tariff +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGTM_TRF_ZERO.002 +member: dcid:sdg/TM_TRF_ZERO.PRODUCT--AGG_AGR, dcid:sdg/TM_TRF_ZERO.PRODUCT--AGG_ARMS, dcid:sdg/TM_TRF_ZERO.PRODUCT--AGG_CLTH, dcid:sdg/TM_TRF_ZERO.PRODUCT--AGG_IND, dcid:sdg/TM_TRF_ZERO.PRODUCT--AGG_OIL, dcid:sdg/TM_TRF_ZERO.PRODUCT--AGG_TXT +name: Proportion of tariff lines applied to imports with zero-tariff by Product +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGTX_EXP_GBMRCH.001 +member: dcid:sdg/TX_EXP_GBMRCH +name: Developing countries’ and least developed countries’ share of global merchandise exports +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGTX_EXP_GBSVR.001 +member: dcid:sdg/TX_EXP_GBSVR +name: Developing countries’ and least developed countries’ share of global services exports +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGTX_IMP_GBMRCH.001 +member: dcid:sdg/TX_IMP_GBMRCH +name: Developing countries’ and least developed countries’ share of global merchandise imports +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGTX_IMP_GBSVR.001 +member: dcid:sdg/TX_IMP_GBSVR +name: Developing countries’ and least developed countries’ share of global services imports +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_ARM_SZTRACE.001 +member: dcid:sdg/VC_ARM_SZTRACE +name: 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 +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_DSR_AFFCT.001 +member: dcid:sdg/VC_DSR_AFFCT +name: Number of people affected by disasters +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_DSR_AGLH.001 +member: dcid:sdg/VC_DSR_AGLH +name: Direct agriculture loss attributed to disasters +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_DSR_BSDN.001 +member: dcid:sdg/VC_DSR_BSDN +name: Number of disruptions to basic services attributed to disasters +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_DSR_CDAN.001 +member: dcid:sdg/VC_DSR_CDAN +name: Number of damaged critical infrastructure attributed to disasters +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_DSR_CDYN.001 +member: dcid:sdg/VC_DSR_CDYN +name: Number of other destroyed or damaged critical infrastructure units and facilities attributed to disasters +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_DSR_CHLN.001 +member: dcid:sdg/VC_DSR_CHLN +name: Direct economic loss to cultural heritage damaged or destroyed attributed to disasters +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_DSR_CILN.001 +member: dcid:sdg/VC_DSR_CILN +name: Direct economic loss resulting from damaged or destroyed critical infrastructure attributed to disasters +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_DSR_DAFF.001 +member: dcid:sdg/VC_DSR_DAFF +name: Number of directly affected persons attributed to disasters per 100, 000 population +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_DSR_DDPA.001 +member: dcid:sdg/VC_DSR_DDPA +name: Direct economic loss to other damaged or destroyed productive assets attributed to disasters +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_DSR_EFDN.001 +member: dcid:sdg/VC_DSR_EFDN +name: Number of destroyed or damaged educational facilities attributed to disasters +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_DSR_ESDN.001 +member: dcid:sdg/VC_DSR_ESDN +name: Number of disruptions to educational services attributed to disasters +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_DSR_GDPLS.001 +member: dcid:sdg/VC_DSR_GDPLS +name: Direct economic loss attributed to disasters +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_DSR_HFDN.001 +member: dcid:sdg/VC_DSR_HFDN +name: Number of destroyed or damaged health facilities attributed to disasters +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_DSR_HOLH.001 +member: dcid:sdg/VC_DSR_HOLH +name: Direct economic loss in the housing sector attributed to disasters +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_DSR_HSDN.001 +member: dcid:sdg/VC_DSR_HSDN +name: Number of disruptions to health services attributed to disasters +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_DSR_IJILN.001 +member: dcid:sdg/VC_DSR_IJILN +name: Number of injured or ill people attributed to disasters +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_DSR_LSGP.001 +member: dcid:sdg/VC_DSR_LSGP +name: Direct economic loss attributed to disasters relative to GDP +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_DSR_MISS.001 +member: dcid:sdg/VC_DSR_MISS +name: Number of missing persons due to disaster +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_DSR_MMHN.001 +member: dcid:sdg/VC_DSR_MMHN +name: Number of deaths and missing persons attributed to disasters +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_DSR_MORT.001 +member: dcid:sdg/VC_DSR_MORT +name: Number of deaths due to disaster +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_DSR_MTMP.001 +member: dcid:sdg/VC_DSR_MTMP +name: Number of deaths and missing persons attributed to disasters per 100, 000 population +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_DSR_OBDN.001 +member: dcid:sdg/VC_DSR_OBDN +name: Number of disruptions to other basic services attributed to disasters +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_DSR_PDAN.001 +member: dcid:sdg/VC_DSR_PDAN +name: Number of people whose damaged dwellings were attributed to disasters +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_DSR_PDLN.001 +member: dcid:sdg/VC_DSR_PDLN +name: Number of people whose livelihoods were disrupted or destroyed, attributed to disasters +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_DSR_PDYN.001 +member: dcid:sdg/VC_DSR_PDYN +name: Number of people whose destroyed dwellings were attributed to disasters +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_DTH_TOCVN.001 +member: dcid:sdg/VC_DTH_TOCVN +name: Number of conflict-related deaths (civilians) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_DTH_TONCVN.001 +member: dcid:sdg/VC_DTH_TONCVN +name: Number of conflict-related deaths (non-civilians) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_DTH_TOTN.001 +member: dcid:sdg/VC_DTH_TOTN +name: Number of total conflict-related deaths +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_DTH_TOTN.002 +member: dcid:sdg/VC_DTH_TOTN.AGE--Y0T17, dcid:sdg/VC_DTH_TOTN.AGE--Y_GE18, dcid:sdg/VC_DTH_TOTN.AGE--_U +name: Number of total conflict-related deaths by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_DTH_TOTN.003 +member: dcid:sdg/VC_DTH_TOTN.LETHAL_INSTRUMENT--EXPLOSIVES, dcid:sdg/VC_DTH_TOTN.LETHAL_INSTRUMENT--WEAPON_HEAVY, dcid:sdg/VC_DTH_TOTN.LETHAL_INSTRUMENT--WEAPON_LIGHT, dcid:sdg/VC_DTH_TOTN.LETHAL_INSTRUMENT--WEAPON_OTHER, dcid:sdg/VC_DTH_TOTN.LETHAL_INSTRUMENT--_U +name: Number of total conflict-related deaths by Lethal instrument +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_DTH_TOTN.004 +member: dcid:sdg/VC_DTH_TOTN.SEX--F, dcid:sdg/VC_DTH_TOTN.SEX--M, dcid:sdg/VC_DTH_TOTN.SEX--_U +name: Number of total conflict-related deaths by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_DTH_TOTPT.001 +member: dcid:sdg/VC_DTH_TOTPT +name: Conflict-related total death rate +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_DTH_TOTPT.002 +member: dcid:sdg/VC_DTH_TOTPT.AGE--Y0T17, dcid:sdg/VC_DTH_TOTPT.AGE--Y_GE18, dcid:sdg/VC_DTH_TOTPT.AGE--_U +name: Conflict-related total death rate by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_DTH_TOTPT.003 +member: dcid:sdg/VC_DTH_TOTPT.LETHAL_INSTRUMENT--EXPLOSIVES, dcid:sdg/VC_DTH_TOTPT.LETHAL_INSTRUMENT--WEAPON_HEAVY, dcid:sdg/VC_DTH_TOTPT.LETHAL_INSTRUMENT--WEAPON_LIGHT, dcid:sdg/VC_DTH_TOTPT.LETHAL_INSTRUMENT--WEAPON_OTHER, dcid:sdg/VC_DTH_TOTPT.LETHAL_INSTRUMENT--_U +name: Conflict-related total death rate by Lethal instrument +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_DTH_TOTPT.004 +member: dcid:sdg/VC_DTH_TOTPT.SEX--F, dcid:sdg/VC_DTH_TOTPT.SEX--M, dcid:sdg/VC_DTH_TOTPT.SEX--_U +name: Conflict-related total death rate by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_DTH_TOTR.001 +member: dcid:sdg/VC_DTH_TOTR +name: Number of total conflict-related deaths per 100, 000 population +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_DTH_TOUNN.001 +member: dcid:sdg/VC_DTH_TOUNN +name: Number of conflict-related deaths (unknown) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_HTF_DETV.001 +member: dcid:sdg/VC_HTF_DETV +name: Detected victims of human trafficking +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_HTF_DETV.002 +member: dcid:sdg/VC_HTF_DETV.AGE--Y0T17, dcid:sdg/VC_HTF_DETV.AGE--Y_GE18 +name: Detected victims of human trafficking by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_HTF_DETV.003 +member: dcid:sdg/VC_HTF_DETV.AGE--Y_GE18__SEX--F, dcid:sdg/VC_HTF_DETV.AGE--Y_GE18__SEX--M, dcid:sdg/VC_HTF_DETV.AGE--Y_GE18__SEX--_O +name: Detected victims of human trafficking (18 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_HTF_DETV.004 +member: dcid:sdg/VC_HTF_DETV.AGE--_U__SEX--_U +name: Detected victims of human trafficking (age and sex unknown) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_HTF_DETV.005 +member: dcid:sdg/VC_HTF_DETV.AGE--Y0T17__SEX--F, dcid:sdg/VC_HTF_DETV.AGE--Y0T17__SEX--M, dcid:sdg/VC_HTF_DETV.AGE--Y0T17__SEX--_O +name: Detected victims of human trafficking (under 18 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_HTF_DETV.006 +member: dcid:sdg/VC_HTF_DETV.SEX--F, dcid:sdg/VC_HTF_DETV.SEX--M, dcid:sdg/VC_HTF_DETV.SEX--_O +name: Detected victims of human trafficking by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_HTF_DETVFL.001 +member: dcid:sdg/VC_HTF_DETVFL +name: Detected victims of human trafficking for forced labour, servitude and slavery +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_HTF_DETVFL.002 +member: dcid:sdg/VC_HTF_DETVFL.AGE--Y0T17, dcid:sdg/VC_HTF_DETVFL.AGE--Y_GE18 +name: Detected victims of human trafficking for forced labour, servitude and slavery by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_HTF_DETVFL.003 +member: dcid:sdg/VC_HTF_DETVFL.AGE--Y_GE18__SEX--F, dcid:sdg/VC_HTF_DETVFL.AGE--Y_GE18__SEX--M, dcid:sdg/VC_HTF_DETVFL.AGE--Y_GE18__SEX--_O +name: Detected victims of human trafficking for forced labour, servitude and slavery (18 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_HTF_DETVFL.004 +member: dcid:sdg/VC_HTF_DETVFL.AGE--_U__SEX--_U +name: Detected victims of human trafficking for forced labour, servitude and slavery (Unknown) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_HTF_DETVFL.005 +member: dcid:sdg/VC_HTF_DETVFL.AGE--Y0T17__SEX--F, dcid:sdg/VC_HTF_DETVFL.AGE--Y0T17__SEX--M, dcid:sdg/VC_HTF_DETVFL.AGE--Y0T17__SEX--_O +name: Detected victims of human trafficking for forced labour, servitude and slavery (under 18 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_HTF_DETVFLR.001 +member: dcid:sdg/VC_HTF_DETVFLR +name: Detected victims of human trafficking for forced labour, servitude and slavery +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_HTF_DETVFLR.002 +member: dcid:sdg/VC_HTF_DETVFLR.AGE--Y0T17, dcid:sdg/VC_HTF_DETVFLR.AGE--Y_GE18 +name: Detected victims of human trafficking for forced labour, servitude and slavery by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_HTF_DETVFLR.003 +member: dcid:sdg/VC_HTF_DETVFLR.AGE--Y_GE18__SEX--F, dcid:sdg/VC_HTF_DETVFLR.AGE--Y_GE18__SEX--M +name: Detected victims of human trafficking for forced labour, servitude and slavery (18 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_HTF_DETVFLR.004 +member: dcid:sdg/VC_HTF_DETVFLR.AGE--Y0T17__SEX--F, dcid:sdg/VC_HTF_DETVFLR.AGE--Y0T17__SEX--M +name: Detected victims of human trafficking for forced labour, servitude and slavery (under 18 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_HTF_DETVOG.001 +member: dcid:sdg/VC_HTF_DETVOG +name: Detected victims of human trafficking for removal of organ +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_HTF_DETVOG.003 +member: dcid:sdg/VC_HTF_DETVOG.AGE--Y_GE18, dcid:sdg/VC_HTF_DETVOG.AGE--Y_GE18__SEX--F, dcid:sdg/VC_HTF_DETVOG.AGE--Y_GE18__SEX--M +name: Detected victims of human trafficking for removal of organ (18 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_HTF_DETVOGR.001 +member: dcid:sdg/VC_HTF_DETVOGR +name: Detected victims of human trafficking for removal of organ +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_HTF_DETVOGR.003 +member: dcid:sdg/VC_HTF_DETVOGR.AGE--Y_GE18, dcid:sdg/VC_HTF_DETVOGR.AGE--Y_GE18__SEX--F, dcid:sdg/VC_HTF_DETVOGR.AGE--Y_GE18__SEX--M +name: Detected victims of human trafficking for removal of organ (18 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_HTF_DETVOP.001 +member: dcid:sdg/VC_HTF_DETVOP +name: Detected victims of human trafficking for other purposes +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_HTF_DETVOP.002 +member: dcid:sdg/VC_HTF_DETVOP.AGE--Y0T17, dcid:sdg/VC_HTF_DETVOP.AGE--Y_GE18 +name: Detected victims of human trafficking for other purposes by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_HTF_DETVOP.003 +member: dcid:sdg/VC_HTF_DETVOP.AGE--Y_GE18__SEX--F, dcid:sdg/VC_HTF_DETVOP.AGE--Y_GE18__SEX--M, dcid:sdg/VC_HTF_DETVOP.AGE--Y_GE18__SEX--_O +name: Detected victims of human trafficking for other purposes (18 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_HTF_DETVOP.004 +member: dcid:sdg/VC_HTF_DETVOP.AGE--_U__SEX--_U +name: Detected victims of human trafficking for other purposes (age and sex unknown) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_HTF_DETVOP.005 +member: dcid:sdg/VC_HTF_DETVOP.AGE--Y0T17__SEX--F, dcid:sdg/VC_HTF_DETVOP.AGE--Y0T17__SEX--M, dcid:sdg/VC_HTF_DETVOP.AGE--Y0T17__SEX--_O +name: Detected victims of human trafficking for other purposes (under 18 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_HTF_DETVOPR.001 +member: dcid:sdg/VC_HTF_DETVOPR +name: Detected victims of human trafficking for other purposes +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_HTF_DETVOPR.002 +member: dcid:sdg/VC_HTF_DETVOPR.AGE--Y0T17, dcid:sdg/VC_HTF_DETVOPR.AGE--Y_GE18 +name: Detected victims of human trafficking for other purposes by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_HTF_DETVOPR.003 +member: dcid:sdg/VC_HTF_DETVOPR.AGE--Y_GE18__SEX--F, dcid:sdg/VC_HTF_DETVOPR.AGE--Y_GE18__SEX--M +name: Detected victims of human trafficking for other purposes (18 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_HTF_DETVOPR.004 +member: dcid:sdg/VC_HTF_DETVOPR.AGE--Y0T17__SEX--F, dcid:sdg/VC_HTF_DETVOPR.AGE--Y0T17__SEX--M +name: Detected victims of human trafficking for other purposes (under 18 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_HTF_DETVR.001 +member: dcid:sdg/VC_HTF_DETVR +name: Detected victims of human trafficking +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_HTF_DETVR.002 +member: dcid:sdg/VC_HTF_DETVR.AGE--Y0T17, dcid:sdg/VC_HTF_DETVR.AGE--Y_GE18 +name: Detected victims of human trafficking by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_HTF_DETVR.003 +member: dcid:sdg/VC_HTF_DETVR.AGE--Y_GE18__SEX--F, dcid:sdg/VC_HTF_DETVR.AGE--Y_GE18__SEX--M +name: Detected victims of human trafficking (18 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_HTF_DETVR.004 +member: dcid:sdg/VC_HTF_DETVR.AGE--Y0T17__SEX--F, dcid:sdg/VC_HTF_DETVR.AGE--Y0T17__SEX--M +name: Detected victims of human trafficking (under 18 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_HTF_DETVR.005 +member: dcid:sdg/VC_HTF_DETVR.SEX--F, dcid:sdg/VC_HTF_DETVR.SEX--M +name: Detected victims of human trafficking by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_HTF_DETVSX.001 +member: dcid:sdg/VC_HTF_DETVSX +name: Detected victims of human trafficking for sexual exploitation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_HTF_DETVSX.002 +member: dcid:sdg/VC_HTF_DETVSX.AGE--Y0T17, dcid:sdg/VC_HTF_DETVSX.AGE--Y_GE18 +name: Detected victims of human trafficking for sexual exploitation by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_HTF_DETVSX.003 +member: dcid:sdg/VC_HTF_DETVSX.AGE--Y_GE18__SEX--F, dcid:sdg/VC_HTF_DETVSX.AGE--Y_GE18__SEX--M, dcid:sdg/VC_HTF_DETVSX.AGE--Y_GE18__SEX--_O +name: Detected victims of human trafficking for sexual exploitation (18 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_HTF_DETVSX.004 +member: dcid:sdg/VC_HTF_DETVSX.AGE--_U__SEX--_U +name: Detected victims of human trafficking for sexual exploitation (age and sex unknown) +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_HTF_DETVSX.005 +member: dcid:sdg/VC_HTF_DETVSX.AGE--Y0T17__SEX--F, dcid:sdg/VC_HTF_DETVSX.AGE--Y0T17__SEX--M, dcid:sdg/VC_HTF_DETVSX.AGE--Y0T17__SEX--_O +name: Detected victims of human trafficking for sexual exploitation (under 18 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_HTF_DETVSXR.001 +member: dcid:sdg/VC_HTF_DETVSXR +name: Detected victims of human trafficking for sexual exploitation +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_HTF_DETVSXR.002 +member: dcid:sdg/VC_HTF_DETVSXR.AGE--Y0T17, dcid:sdg/VC_HTF_DETVSXR.AGE--Y_GE18 +name: Detected victims of human trafficking for sexual exploitation by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_HTF_DETVSXR.003 +member: dcid:sdg/VC_HTF_DETVSXR.AGE--Y_GE18__SEX--F, dcid:sdg/VC_HTF_DETVSXR.AGE--Y_GE18__SEX--M +name: Detected victims of human trafficking for sexual exploitation (18 years old and over) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_HTF_DETVSXR.004 +member: dcid:sdg/VC_HTF_DETVSXR.AGE--Y0T17__SEX--F, dcid:sdg/VC_HTF_DETVSXR.AGE--Y0T17__SEX--M +name: Detected victims of human trafficking for sexual exploitation (under 18 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_IHR_PSRC.001 +member: dcid:sdg/VC_IHR_PSRC +name: Number of victims of intentional homicide per 100, 000 population +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_IHR_PSRC.002 +member: dcid:sdg/VC_IHR_PSRC.SEX--F, dcid:sdg/VC_IHR_PSRC.SEX--M +name: Number of victims of intentional homicide per 100, 000 population by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_IHR_PSRCN.001 +member: dcid:sdg/VC_IHR_PSRCN +name: Number of victims of intentional homicide +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_IHR_PSRCN.002 +member: dcid:sdg/VC_IHR_PSRCN.SEX--F, dcid:sdg/VC_IHR_PSRCN.SEX--M +name: Number of victims of intentional homicide by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_PRR_PHYV.001 +member: dcid:sdg/VC_PRR_PHYV +name: Police reporting rate for physical assault in the previous 12 months +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_PRR_PHYV.002 +member: dcid:sdg/VC_PRR_PHYV.SEX--F, dcid:sdg/VC_PRR_PHYV.SEX--M +name: Police reporting rate for physical assault in the previous 12 months by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_PRR_PHY_VIO.001 +member: dcid:sdg/VC_PRR_PHY_VIO +name: Police reporting rate for physical violence in the previous 12 months +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_PRR_PHY_VIO.002 +member: dcid:sdg/VC_PRR_PHY_VIO.SEX--F, dcid:sdg/VC_PRR_PHY_VIO.SEX--M +name: Police reporting rate for physical violence in the previous 12 months by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_PRR_PSYCHV.001 +member: dcid:sdg/VC_PRR_PSYCHV +name: Police reporting rate for psychological violence in the previous 12 months +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_PRR_PSYCHV.002 +member: dcid:sdg/VC_PRR_PSYCHV.SEX--F, dcid:sdg/VC_PRR_PSYCHV.SEX--M +name: Police reporting rate for psychological violence in the previous 12 months by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_PRR_ROBB.001 +member: dcid:sdg/VC_PRR_ROBB +name: Police reporting rate for robbery in the previous 12 months +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_PRR_ROBB.002 +member: dcid:sdg/VC_PRR_ROBB.SEX--F, dcid:sdg/VC_PRR_ROBB.SEX--M +name: Police reporting rate for robbery in the previous 12 months by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_PRR_SEXV.001 +member: dcid:sdg/VC_PRR_SEXV +name: Police reporting rate for sexual assault in the previous 12 months +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_PRR_SEXV.002 +member: dcid:sdg/VC_PRR_SEXV.SEX--F, dcid:sdg/VC_PRR_SEXV.SEX--M +name: Police reporting rate for sexual assault in the previous 12 months by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_PRR_SEX_VIO.001 +member: dcid:sdg/VC_PRR_SEX_VIO +name: Police reporting rate for sexual violence in the previous 12 months +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_PRR_SEX_VIO.002 +member: dcid:sdg/VC_PRR_SEX_VIO.SEX--F, dcid:sdg/VC_PRR_SEX_VIO.SEX--M +name: Police reporting rate for sexual violence in the previous 12 months by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_PRS_UNSNT.001 +member: dcid:sdg/VC_PRS_UNSNT +name: Unsentenced detainees as a proportion of overall prison population +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_PRS_UNSNT.002 +member: dcid:sdg/VC_PRS_UNSNT.SEX--F, dcid:sdg/VC_PRS_UNSNT.SEX--M +name: Unsentenced detainees as a proportion of overall prison population by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_SNS_WALN_DRK.001 +member: dcid:sdg/VC_SNS_WALN_DRK +name: Proportion of population that feel safe walking alone around the area they live after dark +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_SNS_WALN_DRK.002 +member: dcid:sdg/VC_SNS_WALN_DRK.SEX--F, dcid:sdg/VC_SNS_WALN_DRK.SEX--M +name: Proportion of population that feel safe walking alone around the area they live after dark by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VAW_MARR.001 +member: dcid:sdg/VC_VAW_MARR.AGE--Y15T49__SEX--F, dcid:sdg/VC_VAW_MARR.AGE--Y_GE15__SEX--F +name: Proportion of ever-partnered women and girls subjected to physical and/or sexual violence by a current or former intimate partner in the previous 12 months by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VAW_MTUHRA.001 +member: dcid:sdg/VC_VAW_MTUHRA +name: Number of cases of killings of human rights defenders, journalists and trade unionists +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VAW_MTUHRA.002 +member: dcid:sdg/VC_VAW_MTUHRA.SEX--F, dcid:sdg/VC_VAW_MTUHRA.SEX--M +name: Number of cases of killings of human rights defenders, journalists and trade unionists by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VAW_MTUHRAN.001 +member: dcid:sdg/VC_VAW_MTUHRAN +name: Countries with at least one verified case of killings of human rights defenders, journalists, and trade unionists +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VAW_PHYPYV.001 +member: dcid:sdg/VC_VAW_PHYPYV.AGE--Y1T14, dcid:sdg/VC_VAW_PHYPYV.AGE--Y1T4, dcid:sdg/VC_VAW_PHYPYV.AGE--Y2T14, dcid:sdg/VC_VAW_PHYPYV.AGE--Y5T12 +name: Proportion of children aged 1-14 years who experienced physical punishment and/or psychological aggression by caregivers in last month by Age group +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VAW_SXVLN.001 +member: dcid:sdg/VC_VAW_SXVLN.AGE--Y18T29__SEX--F, dcid:sdg/VC_VAW_SXVLN.AGE--Y18T29__SEX--M +name: Proportion of population aged 18-29 years who experienced sexual violence by age\xa018 (18 to 29 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VAW_SXVLN.002 +member: dcid:sdg/VC_VAW_SXVLN.AGE--Y18T74__SEX--F, dcid:sdg/VC_VAW_SXVLN.AGE--Y18T74__SEX--M +name: Proportion of population aged 18-29 years who experienced sexual violence by age\xa018 (18 to 74 years old) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VOC_ENFDIS.001 +member: dcid:sdg/VC_VOC_ENFDIS +name: Number of cases of enforced disappearance of human rights defenders, journalists and trade unionists +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VOC_ENFDIS.002 +member: dcid:sdg/VC_VOC_ENFDIS.SEX--F, dcid:sdg/VC_VOC_ENFDIS.SEX--M +name: Number of cases of enforced disappearance of human rights defenders, journalists and trade unionists by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VOH_SXPH.001 +member: dcid:sdg/VC_VOH_SXPH +name: Proportion of persons victim of non-sexual or sexual harassment, in the previous 12 months +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VOH_SXPH.002 +member: dcid:sdg/VC_VOH_SXPH.SEX--F, dcid:sdg/VC_VOH_SXPH.SEX--M +name: Proportion of persons victim of non-sexual or sexual harassment, in the previous 12 months by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VOV_GDSD.001 +member: dcid:sdg/VC_VOV_GDSD +name: Proportion of population reporting having felt discriminated against +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VOV_GDSD.002 +member: dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD +name: Proportion of population reporting having felt discriminated against by Disability status +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VOV_GDSD.003 +member: dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--AGE, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--COLR, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--DIS, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--DISHEA, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--ETH, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--ETHCOLLAN, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--ETHI, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--ETHIO, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--ETHRACECOLLAN, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--GENID, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--GEO, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--HEAILLINJ, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--LANDIA, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--MARFAM, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--MIG, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--NETW, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--ORIGIN, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--OTHER, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--POLVIEW, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--RACECOLR, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--RELIGION, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--SEX, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--SEXGENID, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--SEXO, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--SEXOGENID, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--SOCIOECON, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--TRAD, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--WEDLOCK +name: Proportion of population reporting having felt discriminated against (Persons with disability) by Grounds of discrimination +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VOV_GDSD.004 +member: dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--AGE, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--COLR, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--DIS, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--DISHEA, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--ETH, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--ETHCOLLAN, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--ETHI, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--ETHIO, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--ETHRACECOLLAN, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--GENID, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--GEO, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--HEAILLINJ, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--LANDIA, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--MARFAM, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--MIG, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--NETW, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--ORIGIN, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--OTHER, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--POLVIEW, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--RACECOLR, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--RELIGION, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--SEX, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--SEXGENID, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--SEXO, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--SEXOGENID, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--SOCIOECON, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--TRAD, dcid:sdg/VC_VOV_GDSD.DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--WEDLOCK +name: Proportion of population reporting having felt discriminated against (Persons without disability) by Grounds of discrimination +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VOV_GDSD.005 +member: dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--AGE, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--CLOTH, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--COLR, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--DIS, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--DISHEA, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--EDU, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--ETH, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--ETHCOLLAN, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--ETHCOLLANMIG, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--ETHCOLLANNAL, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--ETHCUL, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--ETHI, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--ETHIO, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--ETHRACECOLLAN, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--FAM, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--FNAM, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--GENID, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--GEO, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--HEAILLINJ, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--HEALTH, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--INTERS, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--LANDIA, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--MAR, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--MARFAM, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--MHEALTH, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--MIG, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--NETW, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--ORIGIN, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--OTHER, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--PHEALTH, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--PHYSCOND, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--POLVIEW, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--RACE, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--RACECOLR, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--RELIGION, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--RES, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--SEX, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--SEXGENID, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--SEXO, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--SEXOGENID, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--SOCIOECON, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--TRAD, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--TRANSG, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--VIEW, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--WEDLOCK, dcid:sdg/VC_VOV_GDSD.GROUNDS_OF_DISCRIMINATION--WORK +name: Proportion of population reporting having felt discriminated against by Grounds of discrimination +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VOV_GDSD.006 +member: dcid:sdg/VC_VOV_GDSD.SEX--F, dcid:sdg/VC_VOV_GDSD.SEX--M +name: Proportion of population reporting having felt discriminated against by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VOV_GDSD.007 +member: dcid:sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PD, dcid:sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PWD +name: Proportion of population reporting having felt discriminated against (Female) by Disability status +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VOV_GDSD.008 +member: dcid:sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PD, dcid:sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PWD +name: Proportion of population reporting having felt discriminated against (Male) by Disability status +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VOV_GDSD.009 +member: dcid:sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--AGE, dcid:sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--COLR, dcid:sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--DIS, dcid:sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--ETH, dcid:sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--ETHI, dcid:sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--ETHIO, dcid:sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--MARFAM, dcid:sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--MIG, dcid:sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--NATION, dcid:sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--OTHER, dcid:sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--POLVIEW, dcid:sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--PREGY, dcid:sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--RELIGION, dcid:sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--RES, dcid:sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--SEX, dcid:sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--SEXO, dcid:sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--SOCIOECON, dcid:sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--WEDLOCK +name: Proportion of population reporting having felt discriminated against (Female, Persons with disability) by Grounds of discrimination +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VOV_GDSD.010 +member: dcid:sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--AGE, dcid:sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--COLR, dcid:sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--DIS, dcid:sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--ETH, dcid:sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--ETHI, dcid:sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--ETHIO, dcid:sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--MARFAM, dcid:sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--MIG, dcid:sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--NATION, dcid:sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--OTHER, dcid:sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--POLVIEW, dcid:sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--PREGY, dcid:sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--RELIGION, dcid:sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--RES, dcid:sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--SEX, dcid:sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--SEXO, dcid:sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--SOCIOECON, dcid:sdg/VC_VOV_GDSD.SEX--F__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--WEDLOCK +name: Proportion of population reporting having felt discriminated against (Female, Persons without disability) by Grounds of discrimination +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VOV_GDSD.011 +member: dcid:sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--AGE, dcid:sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--DIS, dcid:sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--ETH, dcid:sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--ETHI, dcid:sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--ETHIO, dcid:sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--MARFAM, dcid:sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--MIG, dcid:sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--OTHER, dcid:sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--POLVIEW, dcid:sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--RELIGION, dcid:sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--SEX, dcid:sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--SEXO, dcid:sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PD__GROUNDS_OF_DISCRIMINATION--WEDLOCK +name: Proportion of population reporting having felt discriminated against (Male, Persons with disability) by Grounds of discrimination +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VOV_GDSD.012 +member: dcid:sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--AGE, dcid:sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--COLR, dcid:sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--DIS, dcid:sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--ETH, dcid:sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--ETHI, dcid:sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--ETHIO, dcid:sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--MARFAM, dcid:sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--MIG, dcid:sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--OTHER, dcid:sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--POLVIEW, dcid:sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--RELIGION, dcid:sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--SEX, dcid:sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--SEXO, dcid:sdg/VC_VOV_GDSD.SEX--M__DISABILITY_STATUS--PWD__GROUNDS_OF_DISCRIMINATION--WEDLOCK +name: Proportion of population reporting having felt discriminated against (Male, Persons without disability) by Grounds of discrimination +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VOV_GDSD.013 +member: dcid:sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--AGE, dcid:sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--CLOTH, dcid:sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--COLR, dcid:sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--DIS, dcid:sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--DISHEA, dcid:sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--EDU, dcid:sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--ETH, dcid:sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--ETHCOLLAN, dcid:sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--ETHCOLLANMIG, dcid:sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--ETHCOLLANNAL, dcid:sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--ETHCUL, dcid:sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--ETHI, dcid:sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--ETHIO, dcid:sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--ETHRACECOLLAN, dcid:sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--FAM, dcid:sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--GENID, dcid:sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--GEO, dcid:sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--HEAILLINJ, dcid:sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--HEALTH, dcid:sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--INTERS, dcid:sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--LANDIA, dcid:sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--MAR, dcid:sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--MARFAM, dcid:sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--MIG, dcid:sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--NATION, dcid:sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--NETW, dcid:sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--ORIGIN, dcid:sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--OTHER, dcid:sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--PHYSCOND, dcid:sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--POLVIEW, dcid:sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--PREGY, dcid:sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--RACE, dcid:sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--RACECOLR, dcid:sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--RELIGION, dcid:sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--RES, dcid:sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--SEX, dcid:sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--SEXGENID, dcid:sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--SEXO, dcid:sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--SEXOGENID, dcid:sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--SOCIOECON, dcid:sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--TRAD, dcid:sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--TRANSG, dcid:sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--WEDLOCK, dcid:sdg/VC_VOV_GDSD.SEX--F__GROUNDS_OF_DISCRIMINATION--WORK +name: Proportion of population reporting having felt discriminated against (Female) by Grounds of discrimination +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VOV_GDSD.014 +member: dcid:sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--AGE, dcid:sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--CLOTH, dcid:sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--COLR, dcid:sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--DIS, dcid:sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--DISHEA, dcid:sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--EDU, dcid:sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--ETH, dcid:sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--ETHCOLLAN, dcid:sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--ETHCOLLANMIG, dcid:sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--ETHCOLLANNAL, dcid:sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--ETHCUL, dcid:sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--ETHI, dcid:sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--ETHIO, dcid:sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--ETHRACECOLLAN, dcid:sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--FAM, dcid:sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--GENID, dcid:sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--GEO, dcid:sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--HEAILLINJ, dcid:sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--HEALTH, dcid:sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--INTERS, dcid:sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--LANDIA, dcid:sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--MAR, dcid:sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--MARFAM, dcid:sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--MIG, dcid:sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--NETW, dcid:sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--ORIGIN, dcid:sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--OTHER, dcid:sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--PHYSCOND, dcid:sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--POLVIEW, dcid:sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--RACE, dcid:sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--RACECOLR, dcid:sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--RELIGION, dcid:sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--RES, dcid:sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--SEX, dcid:sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--SEXGENID, dcid:sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--SEXO, dcid:sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--SEXOGENID, dcid:sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--SOCIOECON, dcid:sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--TRAD, dcid:sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--TRANSG, dcid:sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--WEDLOCK, dcid:sdg/VC_VOV_GDSD.SEX--M__GROUNDS_OF_DISCRIMINATION--WORK +name: Proportion of population reporting having felt discriminated against (Male) by Grounds of discrimination +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VOV_GDSD.015 +member: dcid:sdg/VC_VOV_GDSD.URBANIZATION--R, dcid:sdg/VC_VOV_GDSD.URBANIZATION--U +name: Proportion of population reporting having felt discriminated against by Type of location +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VOV_GDSD.016 +member: dcid:sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--AGE, dcid:sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--CLOTH, dcid:sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--COLR, dcid:sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--DIS, dcid:sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--DISHEA, dcid:sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--ETH, dcid:sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--ETHCOLLAN, dcid:sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--ETHCOLLANMIG, dcid:sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--ETHI, dcid:sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--ETHIO, dcid:sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--GEO, dcid:sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--HEALTH, dcid:sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--INTERS, dcid:sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--LANDIA, dcid:sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--MAR, dcid:sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--MARFAM, dcid:sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--MIG, dcid:sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--ORIGIN, dcid:sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--OTHER, dcid:sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--PHYSCOND, dcid:sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--POLVIEW, dcid:sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--RACECOLR, dcid:sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--RELIGION, dcid:sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--RES, dcid:sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--SEX, dcid:sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--SEXO, dcid:sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--SEXOGENID, dcid:sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--SOCIOECON, dcid:sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--TRANSG, dcid:sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--WEDLOCK, dcid:sdg/VC_VOV_GDSD.URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--WORK +name: Proportion of population reporting having felt discriminated against (Rural) by Grounds of discrimination +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VOV_GDSD.017 +member: dcid:sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--AGE, dcid:sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--CLOTH, dcid:sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--COLR, dcid:sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--DIS, dcid:sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--DISHEA, dcid:sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--ETH, dcid:sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--ETHCOLLAN, dcid:sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--ETHCOLLANMIG, dcid:sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--ETHI, dcid:sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--ETHIO, dcid:sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--GEO, dcid:sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--HEALTH, dcid:sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--INTERS, dcid:sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--LANDIA, dcid:sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--MAR, dcid:sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--MARFAM, dcid:sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--MIG, dcid:sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--ORIGIN, dcid:sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--OTHER, dcid:sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--PHYSCOND, dcid:sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--POLVIEW, dcid:sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--RACECOLR, dcid:sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--RELIGION, dcid:sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--RES, dcid:sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--SEX, dcid:sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--SEXO, dcid:sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--SEXOGENID, dcid:sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--SOCIOECON, dcid:sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--TRANSG, dcid:sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--WEDLOCK, dcid:sdg/VC_VOV_GDSD.URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--WORK +name: Proportion of population reporting having felt discriminated against (Urban) by Grounds of discrimination +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VOV_GDSD.018 +member: dcid:sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--R, dcid:sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--R +name: Proportion of population reporting having felt discriminated against (Rural) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VOV_GDSD.019 +member: dcid:sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--U, dcid:sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--U +name: Proportion of population reporting having felt discriminated against (Urban) by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VOV_GDSD.020 +member: dcid:sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--AGE, dcid:sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--COLR, dcid:sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--DIS, dcid:sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--ETH, dcid:sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--ETHI, dcid:sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--ETHIO, dcid:sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--MARFAM, dcid:sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--MIG, dcid:sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--NATION, dcid:sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--OTHER, dcid:sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--POLVIEW, dcid:sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--PREGY, dcid:sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--RELIGION, dcid:sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--RES, dcid:sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--SEX, dcid:sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--SEXO, dcid:sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--SOCIOECON, dcid:sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--WEDLOCK, dcid:sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--WORK +name: Proportion of population reporting having felt discriminated against (Rural, Female) by Grounds of discrimination +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VOV_GDSD.021 +member: dcid:sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--AGE, dcid:sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--COLR, dcid:sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--DIS, dcid:sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--ETHI, dcid:sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--ETHIO, dcid:sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--MARFAM, dcid:sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--MIG, dcid:sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--OTHER, dcid:sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--POLVIEW, dcid:sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--RELIGION, dcid:sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--SEX, dcid:sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--SEXO, dcid:sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--SOCIOECON, dcid:sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--WEDLOCK, dcid:sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--R__GROUNDS_OF_DISCRIMINATION--WORK +name: Proportion of population reporting having felt discriminated against (Rural, Male) by Grounds of discrimination +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VOV_GDSD.022 +member: dcid:sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--AGE, dcid:sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--COLR, dcid:sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--DIS, dcid:sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--ETH, dcid:sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--ETHI, dcid:sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--ETHIO, dcid:sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--MARFAM, dcid:sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--MIG, dcid:sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--NATION, dcid:sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--OTHER, dcid:sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--POLVIEW, dcid:sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--PREGY, dcid:sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--RELIGION, dcid:sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--RES, dcid:sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--SEX, dcid:sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--SEXO, dcid:sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--SOCIOECON, dcid:sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--WEDLOCK, dcid:sdg/VC_VOV_GDSD.SEX--F__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--WORK +name: Proportion of population reporting having felt discriminated against (Urban, Female) by Grounds of discrimination +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VOV_GDSD.023 +member: dcid:sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--AGE, dcid:sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--COLR, dcid:sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--DIS, dcid:sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--ETH, dcid:sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--ETHI, dcid:sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--ETHIO, dcid:sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--MARFAM, dcid:sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--MIG, dcid:sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--OTHER, dcid:sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--POLVIEW, dcid:sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--RELIGION, dcid:sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--SEX, dcid:sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--SEXO, dcid:sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--SOCIOECON, dcid:sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--WEDLOCK, dcid:sdg/VC_VOV_GDSD.SEX--M__URBANIZATION--U__GROUNDS_OF_DISCRIMINATION--WORK +name: Proportion of population reporting having felt discriminated against (Urban, Male) by Grounds of discrimination +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VOV_PHYL.001 +member: dcid:sdg/VC_VOV_PHYL +name: Proportion of population subjected to physical violence in the previous 12 months +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VOV_PHYL.002 +member: dcid:sdg/VC_VOV_PHYL.SEX--F, dcid:sdg/VC_VOV_PHYL.SEX--M +name: Proportion of population subjected to physical violence in the previous 12 months by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VOV_PHY_ASLT.001 +member: dcid:sdg/VC_VOV_PHY_ASLT +name: Proportion of population subjected to physical assault in the previous 12 months +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VOV_PHY_ASLT.002 +member: dcid:sdg/VC_VOV_PHY_ASLT.SEX--F, dcid:sdg/VC_VOV_PHY_ASLT.SEX--M +name: Proportion of population subjected to physical assault in the previous 12 months by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VOV_PSYCHL.001 +member: dcid:sdg/VC_VOV_PSYCHL +name: Proportion of population subjected to psychological violence in the previous 12 months +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VOV_PSYCHL.002 +member: dcid:sdg/VC_VOV_PSYCHL.SEX--F, dcid:sdg/VC_VOV_PSYCHL.SEX--M +name: Proportion of population subjected to psychological violence in the previous 12 months by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VOV_ROBB.001 +member: dcid:sdg/VC_VOV_ROBB +name: Proportion of population subjected to robbery in the previous 12 months +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VOV_ROBB.002 +member: dcid:sdg/VC_VOV_ROBB.SEX--F, dcid:sdg/VC_VOV_ROBB.SEX--M +name: Proportion of population subjected to robbery in the previous 12 months by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VOV_SEXL.001 +member: dcid:sdg/VC_VOV_SEXL +name: Proportion of population subjected to sexual violence in the previous 12 months +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VOV_SEXL.002 +member: dcid:sdg/VC_VOV_SEXL.SEX--F, dcid:sdg/VC_VOV_SEXL.SEX--M +name: Proportion of population subjected to sexual violence in the previous 12 months by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VOV_SEX_ASLT.001 +member: dcid:sdg/VC_VOV_SEX_ASLT +name: Proportion of population subjected to sexual assault in the previous 12 months +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/svpg/SDGVC_VOV_SEX_ASLT.002 +member: dcid:sdg/VC_VOV_SEX_ASLT.SEX--F, dcid:sdg/VC_VOV_SEX_ASLT.SEX--M +name: Proportion of population subjected to sexual assault in the previous 12 months by Sex +typeOf: dcid:StatVarPeerGroup + +Node: dcid:dc/topic/SDGAGFLSINDEX +relevantVariable: dcid:dc/svpg/sdg/AG_FLS_INDEX.001 +name: "Global food loss index" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGAGFLSPCT +relevantVariable: dcid:dc/svpg/sdg/AG_FLS_PCT.001 +name: "Food loss percentage" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGAGFOODWST +relevantVariable: dcid:dc/svpg/sdg/AG_FOOD_WST.001, dcid:dc/svpg/sdg/AG_FOOD_WST.002 +name: "Food waste" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGAGFOODWSTPC +relevantVariable: dcid:dc/svpg/sdg/AG_FOOD_WST_PC.001, dcid:dc/svpg/sdg/AG_FOOD_WST_PC.002 +name: "Food waste per capita" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGAGFPACFPI +relevantVariable: dcid:dc/svpg/sdg/AG_FPA_CFPI.001 +name: "Indicator of Food Price Anomalies (IFPA) by Consumer Price Index of Food" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGAGFPACOMM +relevantVariable: dcid:dc/svpg/sdg/AG_FPA_COMM.001 +name: "Indicator of Food Price Anomalies (IFPA) by Product" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGAGFPAHMFP +relevantVariable: dcid:dc/svpg/sdg/AG_FPA_HMFP.001, dcid:dc/svpg/sdg/AG_FPA_HMFP.002 +name: "Proportion of countries recording abnormally high or moderately high food prices, according to the Indicator of Food Price Anomalies" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGAGLNDAGRBIO +relevantVariable: dcid:dc/svpg/sdg/AG_LND_AGRBIO.001 +name: "Proportion of agricultural land area that has achieved an acceptable or desirable level of use of agro-biodiversity supportive practices" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGAGLNDAGRWAG +relevantVariable: dcid:dc/svpg/sdg/AG_LND_AGRWAG.001 +name: "Proportion of agricultural land area that has achieved an acceptable or desirable level of wage rate in agriculture" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGAGLNDDGRD +relevantVariable: dcid:dc/svpg/sdg/AG_LND_DGRD.001 +name: "Proportion of land that is degraded over total land area" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGAGLNDFERTMG +relevantVariable: dcid:dc/svpg/sdg/AG_LND_FERTMG.001 +name: "Proportion of agricultural land area that has achieved an acceptable or desirable level of management of fertilizers" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGAGLNDFIES +relevantVariable: dcid:dc/svpg/sdg/AG_LND_FIES.001 +name: "Proportion of agricultural land area that has achieved an acceptable or desirable level of food security" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGAGLNDFOVH +relevantVariable: dcid:dc/svpg/sdg/AG_LND_FOVH.001 +name: "Proportion of agricultural land area that has achieved an acceptable or desirable level of farm output value per hectare" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGAGLNDFRST +relevantVariable: dcid:dc/svpg/sdg/AG_LND_FRST.001 +name: "Forest area as a proportion of total land area" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGAGLNDFRSTBIOPHA +relevantVariable: dcid:dc/svpg/sdg/AG_LND_FRSTBIOPHA.001 +name: "Above-ground biomass in forest" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGAGLNDFRSTCERT +relevantVariable: dcid:dc/svpg/sdg/AG_LND_FRSTCERT.001 +name: "Forest area certified under an independently verified certification scheme" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGAGLNDFRSTCHG +relevantVariable: dcid:dc/svpg/sdg/AG_LND_FRSTCHG.001 +name: "Annual forest area change rate" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGAGLNDFRSTMGT +relevantVariable: dcid:dc/svpg/sdg/AG_LND_FRSTMGT.001 +name: "Proportion of forest area with a long-term management plan" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGAGLNDFRSTN +relevantVariable: dcid:dc/svpg/sdg/AG_LND_FRSTN.001 +name: "Forest area" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGAGLNDFRSTPRCT +relevantVariable: dcid:dc/svpg/sdg/AG_LND_FRSTPRCT.001 +name: "Proportion of forest area within legally established protected areas" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGAGLNDH2OAVAIL +relevantVariable: dcid:dc/svpg/sdg/AG_LND_H2OAVAIL.001 +name: "Proportion of agricultural land area that has achieved an acceptable or desirable level of variation in water availability" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGAGLNDLNDSTR +relevantVariable: dcid:dc/svpg/sdg/AG_LND_LNDSTR.001 +name: "Proportion of agricultural land area that has achieved an acceptable or desirable level of secure tenure rights to agricultural land" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGAGLNDNFI +relevantVariable: dcid:dc/svpg/sdg/AG_LND_NFI.001 +name: "Proportion of agricultural land area that has achieved an acceptable or desirable level of net farm income" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGAGLNDPSTCDSMG +relevantVariable: dcid:dc/svpg/sdg/AG_LND_PSTCDSMG.001 +name: "Proportion of agricultural land area that has achieved an acceptable or desirable level of management of pesticides" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGAGLNDRMM +relevantVariable: dcid:dc/svpg/sdg/AG_LND_RMM.001 +name: "Proportion of agricultural land area that has achieved an acceptable or desirable level of risk mitigation mechanisms" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGAGLNDSDGRD +relevantVariable: dcid:dc/svpg/sdg/AG_LND_SDGRD.001 +name: "Proportion of agricultural land area that has achieved an acceptable or desirable level of soil degradation" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGAGLNDSUST +relevantVariable: dcid:dc/svpg/sdg/AG_LND_SUST.001 +name: "Proportion of agricultural area under productive and sustainable agriculture" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGAGLNDSUSTPRXCSS +relevantVariable: dcid:dc/svpg/sdg/AG_LND_SUST_PRXCSS.001 +name: "Progress toward productive and sustainable agriculture, current status score (proxy)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGAGLNDSUSTPRXTS +relevantVariable: dcid:dc/svpg/sdg/AG_LND_SUST_PRXTS.001 +name: "Progress toward productive and sustainable agriculture, trend score (proxy)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGAGLNDTOTL +relevantVariable: dcid:dc/svpg/sdg/AG_LND_TOTL.001 +name: "Land area" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGAGPRDAGVAS +relevantVariable: dcid:dc/svpg/sdg/AG_PRD_AGVAS.001 +name: "Agriculture value added share of GDP" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGAGPRDFIESMS +relevantVariable: dcid:dc/svpg/sdg/AG_PRD_FIESMS.001, dcid:dc/svpg/sdg/AG_PRD_FIESMS.002, dcid:dc/svpg/sdg/AG_PRD_FIESMS.003 +name: "Prevalence of moderate or severe food insecurity in the population" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGAGPRDFIESMSN +relevantVariable: dcid:dc/svpg/sdg/AG_PRD_FIESMSN.001, dcid:dc/svpg/sdg/AG_PRD_FIESMSN.002 +name: "Population in moderate or severe food insecurity" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGAGPRDFIESS +relevantVariable: dcid:dc/svpg/sdg/AG_PRD_FIESS.001, dcid:dc/svpg/sdg/AG_PRD_FIESS.002, dcid:dc/svpg/sdg/AG_PRD_FIESS.003 +name: "Prevalence of severe food insecurity in the population" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGAGPRDFIESSN +relevantVariable: dcid:dc/svpg/sdg/AG_PRD_FIESSN.001, dcid:dc/svpg/sdg/AG_PRD_FIESSN.002 +name: "Population in severe food insecurity" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGAGPRDORTIND +relevantVariable: dcid:dc/svpg/sdg/AG_PRD_ORTIND.001 +name: "Agriculture orientation index for government expenditures" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGAGPRDXSUBDY +relevantVariable: dcid:dc/svpg/sdg/AG_PRD_XSUBDY.001 +name: "Agricultural export subsidies" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGAGXPDAGSGB +relevantVariable: dcid:dc/svpg/sdg/AG_XPD_AGSGB.001 +name: "Agriculture share of Government Expenditure" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGBNCABXOKAGDZS +relevantVariable: dcid:dc/svpg/sdg/BN_CAB_XOKA_GD_ZS.001 +name: "Current account balance as a proportion of GDP" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGBNKLTPTXLCD +relevantVariable: dcid:dc/svpg/sdg/BN_KLT_PTXL_CD.001 +name: "Portfolio investment, net (Balance of Payments)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGBXKLTDINVWDGDZS +relevantVariable: dcid:dc/svpg/sdg/BX_KLT_DINV_WD_GD_ZS.001 +name: "Foreign direct investment, net inflows, as a proportion of GDP" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGBXTRFPWKR +relevantVariable: dcid:dc/svpg/sdg/BX_TRF_PWKR.001 +name: "Volume of remittances as a proportion of total GDP" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCENVTECHEXP +relevantVariable: dcid:dc/svpg/sdg/DC_ENVTECH_EXP.001 +name: "Amount of tracked exported Environmentally Sound Technologies" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCENVTECHIMP +relevantVariable: dcid:dc/svpg/sdg/DC_ENVTECH_IMP.001 +name: "Amount of tracked imported Environmentally Sound Technologies" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCENVTECHINV +relevantVariable: dcid:dc/svpg/sdg/DC_ENVTECH_INV.001, dcid:dc/svpg/sdg/DC_ENVTECH_INV.002 +name: "Total investment in Environment Sound Technologies" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCENVTECHREXP +relevantVariable: dcid:dc/svpg/sdg/DC_ENVTECH_REXP.001 +name: "Amount of tracked re-exported Environmentally Sound Technologies" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCENVTECHRIMP +relevantVariable: dcid:dc/svpg/sdg/DC_ENVTECH_RIMP.001 +name: "Amount of tracked re-imported Environmentally Sound Technologies" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCENVTECHTT +relevantVariable: dcid:dc/svpg/sdg/DC_ENVTECH_TT.001 +name: "Total trade of tracked Environmentally Sound Technologies" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCFINCLIMB +relevantVariable: dcid:dc/svpg/sdg/DC_FIN_CLIMB.001, dcid:dc/svpg/sdg/DC_FIN_CLIMB.002 +name: "Climate-specific financial support provided via bilateral, regional and other channels" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCFINCLIMM +relevantVariable: dcid:dc/svpg/sdg/DC_FIN_CLIMM.001, dcid:dc/svpg/sdg/DC_FIN_CLIMM.002 +name: "Climate-specific financial support provided via multilateral channels" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCFINCLIMT +relevantVariable: dcid:dc/svpg/sdg/DC_FIN_CLIMT.001 +name: "Total climate-specific financial support provided" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCFINGEN +relevantVariable: dcid:dc/svpg/sdg/DC_FIN_GEN.001 +name: "Core/general contributions provided to multilateral institutions" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCFINTOT +relevantVariable: dcid:dc/svpg/sdg/DC_FIN_TOT.001 +name: "Total financial support provided" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCFTATOTAL +relevantVariable: dcid:dc/svpg/sdg/DC_FTA_TOTAL.001 +name: "Total official development assistance (gross disbursement) for technical cooperation" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCODABDVDL +relevantVariable: dcid:dc/svpg/sdg/DC_ODA_BDVDL.001 +name: "Total outbound official development assistance for biodiversity" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCODABDVL +relevantVariable: dcid:dc/svpg/sdg/DC_ODA_BDVL.001 +name: "Total inbound official development assistance for biodiversity" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCODALDCG +relevantVariable: dcid:dc/svpg/sdg/DC_ODA_LDCG.001 +name: "Net outbound official development assistance (ODA) to LDCs as a percentage of OECD-DAC donors' GNI" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCODALDCS +relevantVariable: dcid:dc/svpg/sdg/DC_ODA_LDCS.001 +name: "Net inbound official development assistance (ODA) to LDCs from OECD-DAC countries" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCODALLDC +relevantVariable: dcid:dc/svpg/sdg/DC_ODA_LLDC.001 +name: "Net outbound official development assistance (ODA) to landlocked developing countries from OECD-DAC countries" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCODALLDCG +relevantVariable: dcid:dc/svpg/sdg/DC_ODA_LLDCG.001 +name: "Net outbound official development assistance (ODA) to landlocked developing countries as a percentage of OECD-DAC donors' GNI" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCODAPOVDLG +relevantVariable: dcid:dc/svpg/sdg/DC_ODA_POVDLG.001 +name: "Outbound official development assistance grants for poverty reduction, as percentage of GNI" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCODAPOVG +relevantVariable: dcid:dc/svpg/sdg/DC_ODA_POVG.001 +name: "Official development assistance grants for poverty reduction (percentage of GNI)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCODAPOVLG +relevantVariable: dcid:dc/svpg/sdg/DC_ODA_POVLG.001 +name: "Inbound official development assistance grants for poverty reduction, as a percentage of GNI" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCODASIDS +relevantVariable: dcid:dc/svpg/sdg/DC_ODA_SIDS.001 +name: "Net outbound official development assistance (ODA) to small island states (SIDS) from OECD-DAC countries" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCODASIDSG +relevantVariable: dcid:dc/svpg/sdg/DC_ODA_SIDSG.001 +name: "Net outbound official development assistance (ODA) to small island states (SIDS) as a percentage of OECD-DAC donors' GNI" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCODATOTG +relevantVariable: dcid:dc/svpg/sdg/DC_ODA_TOTG.001 +name: "Net outbound official development assistance (ODA) as a percentage of OECD-DAC donors' GNI" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCODATOTGGE +relevantVariable: dcid:dc/svpg/sdg/DC_ODA_TOTGGE.001 +name: "Outbound official development assistance (ODA) as a percentage of OECD-DAC donors' GNI on grant equivalent basis" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCODATOTL +relevantVariable: dcid:dc/svpg/sdg/DC_ODA_TOTL.001 +name: "Net outbound official development assistance (ODA) from OECD-DAC countries" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCODATOTLGE +relevantVariable: dcid:dc/svpg/sdg/DC_ODA_TOTLGE.001 +name: "Outbound official development assistance (ODA) from OECD-DAC countries on grant equivalent basis" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCOSSDGRT +relevantVariable: dcid:dc/svpg/sdg/DC_OSSD_GRT.001 +name: "Gross receipts by developing countries of official sustainable development grants" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCOSSDMPF +relevantVariable: dcid:dc/svpg/sdg/DC_OSSD_MPF.001 +name: "Gross receipts by developing countries of mobilised private finance (MPF) - on an experimental basis" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCOSSDOFFCL +relevantVariable: dcid:dc/svpg/sdg/DC_OSSD_OFFCL.001 +name: "Gross receipts by developing countries of official concessional sustainable development loans" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCOSSDOFFNL +relevantVariable: dcid:dc/svpg/sdg/DC_OSSD_OFFNL.001 +name: "Gross receipts by developing countries of official non-concessional sustainable development loans" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCOSSDPRVGRT +relevantVariable: dcid:dc/svpg/sdg/DC_OSSD_PRVGRT.001 +name: "Gross receipts by developing countries of private grants" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCTOFAGRL +relevantVariable: dcid:dc/svpg/sdg/DC_TOF_AGRL.001 +name: "Total inbound official flows (disbursements) for agriculture" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCTOFHLTHL +relevantVariable: dcid:dc/svpg/sdg/DC_TOF_HLTHL.001 +name: "Total inbound official development assistance to medical research and basic health sectors, gross disbursement" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCTOFHLTHNT +relevantVariable: dcid:dc/svpg/sdg/DC_TOF_HLTHNT.001 +name: "Total inbound official development assistance to medical research and basic health sectors, net disbursement" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCTOFINFRAL +relevantVariable: dcid:dc/svpg/sdg/DC_TOF_INFRAL.001 +name: "Total inbound official flows for infrastructure" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCTOFSCHIPSL +relevantVariable: dcid:dc/svpg/sdg/DC_TOF_SCHIPSL.001 +name: "Total inbound official flows for scholarships" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCTOFTRDCMDL +relevantVariable: dcid:dc/svpg/sdg/DC_TOF_TRDCMDL.001 +name: "Total outbound official flows (commitments) for Aid for Trade" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCTOFTRDCML +relevantVariable: dcid:dc/svpg/sdg/DC_TOF_TRDCML.001 +name: "Total inbound official flows (commitments) for Aid for Trade" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCTOFTRDDBMDL +relevantVariable: dcid:dc/svpg/sdg/DC_TOF_TRDDBMDL.001 +name: "Total outbound official flows (disbursement) for Aid for Trade" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCTOFTRDDBML +relevantVariable: dcid:dc/svpg/sdg/DC_TOF_TRDDBML.001 +name: "Total inbound official flows (disbursement) for Aid for Trade" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCTOFWASHL +relevantVariable: dcid:dc/svpg/sdg/DC_TOF_WASHL.001 +name: "Total inbound official development assistance (gross disbursement) for water supply and sanitation" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCTRFTFDV +relevantVariable: dcid:dc/svpg/sdg/DC_TRF_TFDV.001 +name: "Total inbound resource flows for development" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCTRFTOTDL +relevantVariable: dcid:dc/svpg/sdg/DC_TRF_TOTDL.001 +name: "Total outbound assistance for development" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDCTRFTOTL +relevantVariable: dcid:dc/svpg/sdg/DC_TRF_TOTL.001 +name: "Total inbound assistance for development" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDIILLIN +relevantVariable: dcid:dc/svpg/sdg/DI_ILL_IN.001 +name: "Total value of inward illicit financial flows by Type of flow" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDIILLOUT +relevantVariable: dcid:dc/svpg/sdg/DI_ILL_OUT.001 +name: "Total value of outward illicit financial flows by Type of flow" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDPDODDLD2CRCGZ1 +relevantVariable: dcid:dc/svpg/sdg/DP_DOD_DLD2_CR_CG_Z1.001 +name: "Gross public sector debt, Central Government, as a proportion of GDP" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDTDODDECTGNZS +relevantVariable: dcid:dc/svpg/sdg/DT_DOD_DECT_GN_ZS.001 +name: "External debt stocks as a proportion of GNI" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGDTTDSDECT +relevantVariable: dcid:dc/svpg/sdg/DT_TDS_DECT.001 +name: "Debt service as a proportion of exports of goods and services" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGEGACSELEC +relevantVariable: dcid:dc/svpg/sdg/EG_ACS_ELEC.001, dcid:dc/svpg/sdg/EG_ACS_ELEC.002 +name: "Proportion of population with access to electricity" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGEGEGYCLEAN +relevantVariable: dcid:dc/svpg/sdg/EG_EGY_CLEAN.001, dcid:dc/svpg/sdg/EG_EGY_CLEAN.002 +name: "Proportion of population with primary reliance on clean fuels and technology" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGEGEGYPRIM +relevantVariable: dcid:dc/svpg/sdg/EG_EGY_PRIM.001 +name: "Energy intensity level of primary energy" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGEGEGYRNEW +relevantVariable: dcid:dc/svpg/sdg/EG_EGY_RNEW.001, dcid:dc/svpg/sdg/EG_EGY_RNEW.002 +name: "Installed renewable electricity-generating capacity" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGEGFECRNEW +relevantVariable: dcid:dc/svpg/sdg/EG_FEC_RNEW.001 +name: "Share of renewable energy in the total final energy consumption" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGEGIFFRANDN +relevantVariable: dcid:dc/svpg/sdg/EG_IFF_RANDN.001, dcid:dc/svpg/sdg/EG_IFF_RANDN.002 +name: "International financial flows to developing countries in support of clean energy research and development and renewable energy production, including in hybrid systems" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGEGTBAH2CO +relevantVariable: dcid:dc/svpg/sdg/EG_TBA_H2CO.001 +name: "Proportion of transboundary basins (river and lake basins and aquifers) with an operational arrangement for water cooperation" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGEGTBAH2COAQ +relevantVariable: dcid:dc/svpg/sdg/EG_TBA_H2COAQ.001 +name: "Proportion of transboundary aquifers with an operational arrangement for water cooperation" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGEGTBAH2CORL +relevantVariable: dcid:dc/svpg/sdg/EG_TBA_H2CORL.001 +name: "Proportion of transboundary river and lake basins with an operational arrangement for water cooperation" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENACSURBOPENSP +relevantVariable: dcid:dc/svpg/sdg/EN_ACS_URB_OPENSP.001 +name: "Average share of urban population with convenient access to open public spaces" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENADAPCOM +relevantVariable: dcid:dc/svpg/sdg/EN_ADAP_COM.001 +name: "Number of countries with adaptation communications by Report" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENADAPCOMDV +relevantVariable: dcid:dc/svpg/sdg/EN_ADAP_COM_DV.001 +name: "Number of least developed countries and small island developing States with adaptation communications by Report" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENATMCO2 +relevantVariable: dcid:dc/svpg/sdg/EN_ATM_CO2.001, dcid:dc/svpg/sdg/EN_ATM_CO2.002 +name: "Carbon dioxide emissions from fuel combustion" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENATMCO2GDP +relevantVariable: dcid:dc/svpg/sdg/EN_ATM_CO2GDP.001 +name: "Carbon dioxide emissions per unit of GDP at purchaning power parity rates" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENATMCO2MVA +relevantVariable: dcid:dc/svpg/sdg/EN_ATM_CO2MVA.001 +name: "Carbon dioxide emissions from manufacturing industries per unit of manufacturing value added by Major division of ISIC Rev. 4" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENATMGHGTAIP +relevantVariable: dcid:dc/svpg/sdg/EN_ATM_GHGT_AIP.001 +name: "Total greenhouse gas emissions (excluding land use, land-use changes and forestry) for Annex I Parties to the United Nations Framework Convention on Climate Change" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENATMGHGTNAIP +relevantVariable: dcid:dc/svpg/sdg/EN_ATM_GHGT_NAIP.001 +name: "Total greenhouse gas emissions (excluding land use, land-use changes and forestry) for non-Annex I Parties to the United Nations Framework Convention on Climate Change" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENATMPM25 +relevantVariable: dcid:dc/svpg/sdg/EN_ATM_PM25.001, dcid:dc/svpg/sdg/EN_ATM_PM25.002 +name: "Annual mean levels of fine particulate matter (population-weighted)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENBIUREPAIP +relevantVariable: dcid:dc/svpg/sdg/EN_BIUREP_AIP.001 +name: "Countries with biennial reports, Annex I Parties to the United Nations Framework Convention on Climate Change by Report" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENBIUREPNAIP +relevantVariable: dcid:dc/svpg/sdg/EN_BIUREP_NAIP.001 +name: "Countries with biennial update reports, non-Annex I Parties to the United Nations Framework Convention on Climate Change by Report" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENBIUREPNAIPDV +relevantVariable: dcid:dc/svpg/sdg/EN_BIUREP_NAIP_DV.001 +name: "Least developed countries and small island developing States with biennial update reports, non-Annex I Parties to the United Nations Framework Convention on Climate Change by Report" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENEWTCOLLPCAP +relevantVariable: dcid:dc/svpg/sdg/EN_EWT_COLLPCAP.001 +name: "Electronic waste collected per capita" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENEWTCOLLR +relevantVariable: dcid:dc/svpg/sdg/EN_EWT_COLLR.001 +name: "Proportion of electronic waste that is collected" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENEWTCOLLV +relevantVariable: dcid:dc/svpg/sdg/EN_EWT_COLLV.001 +name: "Total electronic waste collected" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENEWTGENPCAP +relevantVariable: dcid:dc/svpg/sdg/EN_EWT_GENPCAP.001 +name: "Electronic waste generated per capita" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENEWTGENV +relevantVariable: dcid:dc/svpg/sdg/EN_EWT_GENV.001 +name: "Total electronic waste generated" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENEWTRCYPCAP +relevantVariable: dcid:dc/svpg/sdg/EN_EWT_RCYPCAP.001 +name: "Electronic waste recycled per capita" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENEWTRCYR +relevantVariable: dcid:dc/svpg/sdg/EN_EWT_RCYR.001 +name: "Proportion of electronic waste that is recycled" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENEWTRCYV +relevantVariable: dcid:dc/svpg/sdg/EN_EWT_RCYV.001 +name: "Total electronic waste recycled" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENH2OGRAMBQ +relevantVariable: dcid:dc/svpg/sdg/EN_H2O_GRAMBQ.001 +name: "Proportion of groundwater bodies with good ambient water quality" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENH2OOPAMBQ +relevantVariable: dcid:dc/svpg/sdg/EN_H2O_OPAMBQ.001 +name: "Proportion of open water bodies with good ambient water quality" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENH2ORVAMBQ +relevantVariable: dcid:dc/svpg/sdg/EN_H2O_RVAMBQ.001 +name: "Proportion of river water bodies with good ambient water quality" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENH2OWBAMBQ +relevantVariable: dcid:dc/svpg/sdg/EN_H2O_WBAMBQ.001 +name: "Proportion of bodies of water with good ambient water quality" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENHAZEXP +relevantVariable: dcid:dc/svpg/sdg/EN_HAZ_EXP.001 +name: "Hazardous waste exported" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENHAZGENGDP +relevantVariable: dcid:dc/svpg/sdg/EN_HAZ_GENGDP.001 +name: "Hazardous waste generated per unit of GDP" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENHAZGENV +relevantVariable: dcid:dc/svpg/sdg/EN_HAZ_GENV.001 +name: "Hazardous waste generated" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENHAZIMP +relevantVariable: dcid:dc/svpg/sdg/EN_HAZ_IMP.001 +name: "Hazardous waste imported" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENHAZPCAP +relevantVariable: dcid:dc/svpg/sdg/EN_HAZ_PCAP.001 +name: "Hazardous waste generated, per capita" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENHAZTREATV +relevantVariable: dcid:dc/svpg/sdg/EN_HAZ_TREATV.001 +name: "Hazardous waste treated by Type of waste treatment" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENHAZTRTDISR +relevantVariable: dcid:dc/svpg/sdg/EN_HAZ_TRTDISR.001 +name: "Proportion of hazardous waste that is treated or disposed" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENHAZTRTDISV +relevantVariable: dcid:dc/svpg/sdg/EN_HAZ_TRTDISV.001 +name: "Hazardous waste treated or disposed" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENLKRVPWAC +relevantVariable: dcid:dc/svpg/sdg/EN_LKRV_PWAC.001 +name: "Change in permanent water area of lakes and rivers" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENLKRVPWAN +relevantVariable: dcid:dc/svpg/sdg/EN_LKRV_PWAN.001 +name: "Permanent water area of lakes and rivers" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENLKRVPWAP +relevantVariable: dcid:dc/svpg/sdg/EN_LKRV_PWAP.001 +name: "Permanent water area of lakes and rivers as a proportion of total land area" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENLKRVSWAC +relevantVariable: dcid:dc/svpg/sdg/EN_LKRV_SWAC.001 +name: "Change in seasonal water area of lakes and rivers" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENLKRVSWAN +relevantVariable: dcid:dc/svpg/sdg/EN_LKRV_SWAN.001 +name: "Seasonal water area of lakes and rivers" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENLKRVSWAP +relevantVariable: dcid:dc/svpg/sdg/EN_LKRV_SWAP.001 +name: "Seasonal water area of lakes and rivers as a proportion of total land area" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENLKWQLTRB +relevantVariable: dcid:dc/svpg/sdg/EN_LKW_QLTRB.001 +name: "Lake water quality: turbidity by Deviation level" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENLKWQLTRST +relevantVariable: dcid:dc/svpg/sdg/EN_LKW_QLTRST.001 +name: "Lake water quality: trophic state by Deviation level" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENLNDCNSPOP +relevantVariable: dcid:dc/svpg/sdg/EN_LND_CNSPOP.001 +name: "Ratio of land consumption rate to population growth rate" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENLNDINDQTHSNG +relevantVariable: dcid:dc/svpg/sdg/EN_LND_INDQTHSNG.001, dcid:dc/svpg/sdg/EN_LND_INDQTHSNG.002 +name: "Proportion of urban population living in inadequate housing" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENLNDSLUM +relevantVariable: dcid:dc/svpg/sdg/EN_LND_SLUM.001 +name: "Proportion of urban population living in slums by Type of location" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENMARBEALITSQ +relevantVariable: dcid:dc/svpg/sdg/EN_MAR_BEALITSQ.001 +name: "Beach litter per square kilometer" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENMARBEALITBP +relevantVariable: dcid:dc/svpg/sdg/EN_MAR_BEALIT_BP.001 +name: "Proportion of beach litter originating from national land-based sources that ends in the beach" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENMARBEALITBV +relevantVariable: dcid:dc/svpg/sdg/EN_MAR_BEALIT_BV.001, dcid:dc/svpg/sdg/EN_MAR_BEALIT_BV.002 +name: "Total beach litter originating from national land-based sources that ends in the beach" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENMARBEALITEXP +relevantVariable: dcid:dc/svpg/sdg/EN_MAR_BEALIT_EXP.001 +name: "Total beach litter originating from national land-based sources that is exported" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENMARBEALITOP +relevantVariable: dcid:dc/svpg/sdg/EN_MAR_BEALIT_OP.001 +name: "Proportion of beach litter originating from national land-based sources that ends in the ocean" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENMARBEALITOV +relevantVariable: dcid:dc/svpg/sdg/EN_MAR_BEALIT_OV.001 +name: "Total beach litter originating from national land-based sources that ends in the ocean" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENMARCHLANM +relevantVariable: dcid:dc/svpg/sdg/EN_MAR_CHLANM.001 +name: "Chlorophyll-a anomaly, remote sensing by Chlorophyll-a Concentration Frequency" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENMARCHLDEV +relevantVariable: dcid:dc/svpg/sdg/EN_MAR_CHLDEV.001 +name: "Chlorophyll-a deviations, remote sensing" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENMARPLASDD +relevantVariable: dcid:dc/svpg/sdg/EN_MAR_PLASDD.001 +name: "Floating plastic debris density" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENMATDOMCMPC +relevantVariable: dcid:dc/svpg/sdg/EN_MAT_DOMCMPC.001, dcid:dc/svpg/sdg/EN_MAT_DOMCMPC.002 +name: "Domestic material consumption per capita" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENMATDOMCMPG +relevantVariable: dcid:dc/svpg/sdg/EN_MAT_DOMCMPG.001, dcid:dc/svpg/sdg/EN_MAT_DOMCMPG.002 +name: "Domestic material consumption per unit of GDP" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENMATDOMCMPT +relevantVariable: dcid:dc/svpg/sdg/EN_MAT_DOMCMPT.001, dcid:dc/svpg/sdg/EN_MAT_DOMCMPT.002 +name: "Domestic material consumption" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENMATFTPRPC +relevantVariable: dcid:dc/svpg/sdg/EN_MAT_FTPRPC.001 +name: "Material footprint per capita" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENMATFTPRPG +relevantVariable: dcid:dc/svpg/sdg/EN_MAT_FTPRPG.001 +name: "Material footprint per unit of GDP" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENMATFTPRTN +relevantVariable: dcid:dc/svpg/sdg/EN_MAT_FTPRTN.001 +name: "Material footprint" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENMWTCOLLV +relevantVariable: dcid:dc/svpg/sdg/EN_MWT_COLLV.001 +name: "Municipal waste collected" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENMWTEXP +relevantVariable: dcid:dc/svpg/sdg/EN_MWT_EXP.001 +name: "Municipal waste exported" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENMWTGENV +relevantVariable: dcid:dc/svpg/sdg/EN_MWT_GENV.001 +name: "Municipal waste generated" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENMWTIMP +relevantVariable: dcid:dc/svpg/sdg/EN_MWT_IMP.001 +name: "Municipal waste imported" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENMWTRCYR +relevantVariable: dcid:dc/svpg/sdg/EN_MWT_RCYR.001 +name: "Proportion of municipal waste recycled" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENMWTRCYV +relevantVariable: dcid:dc/svpg/sdg/EN_MWT_RCYV.001 +name: "Municipal waste recycled" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENMWTTREATR +relevantVariable: dcid:dc/svpg/sdg/EN_MWT_TREATR.001 +name: "Proportion of municipal waste treated by Type of waste treatment" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENMWTTREATV +relevantVariable: dcid:dc/svpg/sdg/EN_MWT_TREATV.001 +name: "Municipal waste treated by type of treatment by Type of waste treatment" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENNAAPLAN +relevantVariable: dcid:dc/svpg/sdg/EN_NAA_PLAN.001 +name: "Countries with national adaptation plans" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENNAAPLANDV +relevantVariable: dcid:dc/svpg/sdg/EN_NAA_PLAN_DV.001 +name: "Least developed countries and small island developing States with national adaptation plans" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENNACOMAIP +relevantVariable: dcid:dc/svpg/sdg/EN_NACOM_AIP.001 +name: "Countries with national communications, Annex I Parties to the United Nations Framework Convention on Climate Change by Report" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENNACOMNAIP +relevantVariable: dcid:dc/svpg/sdg/EN_NACOM_NAIP.001 +name: "Countries with national communications, non-Annex I Parties by Report" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENNACOMNAIPDV +relevantVariable: dcid:dc/svpg/sdg/EN_NACOM_NAIP_DV.001 +name: "Least developed countries and small island developing States with national communications, non-Annex I Parties to the United Nations Framework Convention on Climate Change by Report" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENNADCONTR +relevantVariable: dcid:dc/svpg/sdg/EN_NAD_CONTR.001 +name: "Countries with nationally determined contributions by Report" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENNADCONTRDV +relevantVariable: dcid:dc/svpg/sdg/EN_NAD_CONTR_DV.001 +name: "Least developed countries and small island developing States with nationally determined contributions by Report" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENREFWASCOL +relevantVariable: dcid:dc/svpg/sdg/EN_REF_WASCOL.001 +name: "Municipal Solid Waste collection coverage" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENRSRVMNWAC +relevantVariable: dcid:dc/svpg/sdg/EN_RSRV_MNWAC.001 +name: "Change in minimum reservoir water area" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENRSRVMNWAN +relevantVariable: dcid:dc/svpg/sdg/EN_RSRV_MNWAN.001 +name: "Minimum reservoir water area" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENRSRVMNWAP +relevantVariable: dcid:dc/svpg/sdg/EN_RSRV_MNWAP.001 +name: "Minimum reservoir water area as a proportion of total land area" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENRSRVMXWAN +relevantVariable: dcid:dc/svpg/sdg/EN_RSRV_MXWAN.001 +name: "Maxiumum reservoir water area" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENRSRVMXWAP +relevantVariable: dcid:dc/svpg/sdg/EN_RSRV_MXWAP.001 +name: "Maximum reservoir water area as a proportion of total land area" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENSCPECSYBA +relevantVariable: dcid:dc/svpg/sdg/EN_SCP_ECSYBA.001, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.002, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.003, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.004, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.005, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.006, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.007, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.008, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.009, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.010, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.011, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.012, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.013, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.014, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.015, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.016, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.017, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.018, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.019, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.020, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.021, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.022, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.023, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.024, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.025, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.026, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.027, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.028, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.029, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.030, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.031, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.032, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.033, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.034, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.035, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.036, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.037, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.038, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.039, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.040, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.041, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.042, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.043, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.044, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.045, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.046, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.047, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.048, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.049, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.050, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.051, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.052, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.053, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.054, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.055, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.056, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.057, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.058, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.059, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.060, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.061, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.062, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.063, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.064, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.065, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.066, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.067, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.068, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.069, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.070, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.071, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.072, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.073, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.074, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.075, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.076, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.077, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.078, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.079, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.080, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.081, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.082, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.083, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.084, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.085, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.086, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.087, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.088, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.089, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.090, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.091, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.092, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.093, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.094, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.095, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.096, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.097, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.098, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.099, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.100, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.101, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.102, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.103, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.104, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.105, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.106, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.107, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.108, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.109, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.110, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.111, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.112, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.113, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.114, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.115, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.116, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.117, dcid:dc/svpg/sdg/EN_SCP_ECSYBA.118 +name: "Countries using ecosystem-based approaches to managing marine areas" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENSCPFRMN +relevantVariable: dcid:dc/svpg/sdg/EN_SCP_FRMN.001, dcid:dc/svpg/sdg/EN_SCP_FRMN.002 +name: "Number of companies publishing sustainability reports with disclosure by dimension" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENSCPFSHGDP +relevantVariable: dcid:dc/svpg/sdg/EN_SCP_FSHGDP.001 +name: "Sustainable fisheries as a proportion of GDP" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENTWTGENV +relevantVariable: dcid:dc/svpg/sdg/EN_TWT_GENV.001, dcid:dc/svpg/sdg/EN_TWT_GENV.002 +name: "Total waste generation" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENURBOPENSP +relevantVariable: dcid:dc/svpg/sdg/EN_URB_OPENSP.001 +name: "Average share of the built-up area of cities that is open space for public use for all" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENWBEHMWTL +relevantVariable: dcid:dc/svpg/sdg/EN_WBE_HMWTL.001 +name: "Extent of human made wetlands" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENWBEINWTL +relevantVariable: dcid:dc/svpg/sdg/EN_WBE_INWTL.001 +name: "Extent of inland wetlands" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENWBEMANGC +relevantVariable: dcid:dc/svpg/sdg/EN_WBE_MANGC.001 +name: "Mangrove total area change" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENWBEMANGN +relevantVariable: dcid:dc/svpg/sdg/EN_WBE_MANGN.001 +name: "Mangrove area" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENWBENDQTGRW +relevantVariable: dcid:dc/svpg/sdg/EN_WBE_NDQTGRW.001 +name: "Quantity of nationally derived groundwater" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENWBENDQTRVR +relevantVariable: dcid:dc/svpg/sdg/EN_WBE_NDQTRVR.001 +name: "Quantity of nationally derived water fromrivers" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENWBEWTLN +relevantVariable: dcid:dc/svpg/sdg/EN_WBE_WTLN.001 +name: "Wetlands area" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENWBEWTLP +relevantVariable: dcid:dc/svpg/sdg/EN_WBE_WTLP.001 +name: "Wetlands area as a proportion of total land area" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENWWTGEN +relevantVariable: dcid:dc/svpg/sdg/EN_WWT_GEN.001, dcid:dc/svpg/sdg/EN_WWT_GEN.002, dcid:dc/svpg/sdg/EN_WWT_GEN.003, dcid:dc/svpg/sdg/EN_WWT_GEN.004 +name: "Total wastewater generated" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENWWTTREAT +relevantVariable: dcid:dc/svpg/sdg/EN_WWT_TREAT.001 +name: "Total wastewater treated" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENWWTTREATR +relevantVariable: dcid:dc/svpg/sdg/EN_WWT_TREATR.001 +name: "Proportion of wastewater treated" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENWWTTREATRSF +relevantVariable: dcid:dc/svpg/sdg/EN_WWT_TREATR_SF.001 +name: "Proportion of wastewater safely treated" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENWWTTREATSF +relevantVariable: dcid:dc/svpg/sdg/EN_WWT_TREAT_SF.001 +name: "Total wastewater safely treated" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGENWWTWWDS +relevantVariable: dcid:dc/svpg/sdg/EN_WWT_WWDS.001 +name: "Proportion of safely treated domestic wastewater flows" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERBDYABT2NP +relevantVariable: dcid:dc/svpg/sdg/ER_BDY_ABT2NP.001, dcid:dc/svpg/sdg/ER_BDY_ABT2NP.002 +name: "Countries that established national targets in accordance with Aichi Biodiversity Target 2 of the Strategic Plan for Biodiversity 2011-2020 in their National Biodiversity Strategy and Action Plans" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERBDYSEEA +relevantVariable: dcid:dc/svpg/sdg/ER_BDY_SEEA.001, dcid:dc/svpg/sdg/ER_BDY_SEEA.002 +name: "Countries with integrated biodiversity values into national accounting and reporting systems, defined as implementation of the System of Environmental-Economic Accounting" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERCBDABSCLRHS +relevantVariable: dcid:dc/svpg/sdg/ER_CBD_ABSCLRHS.001 +name: "Countries that have legislative, administrative and policy framework or measures reported to the Access and Benefit-Sharing Clearing-House" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERCBDNAGOYA +relevantVariable: dcid:dc/svpg/sdg/ER_CBD_NAGOYA.001 +name: "Countries that are parties to the Nagoya Protocol" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERCBDORSPGRFA +relevantVariable: dcid:dc/svpg/sdg/ER_CBD_ORSPGRFA.001 +name: "Countries that have legislative, administrative and policy framework or measures reported through the Online Reporting System on Compliance of the International Treaty on Plant Genetic Resources for Food and Agriculture (PGRFA)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERCBDPTYPGRFA +relevantVariable: dcid:dc/svpg/sdg/ER_CBD_PTYPGRFA.001 +name: "Countries that are contracting Parties to the International Treaty on Plant Genetic Resources for Food and Agriculture (PGRFA)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERCBDSMTA +relevantVariable: dcid:dc/svpg/sdg/ER_CBD_SMTA.001 +name: "Total reported number of Standard Material Transfer Agreements (SMTAs) transferring plant genetic resources for food and agriculture to the country" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERFFSCMPTCD +relevantVariable: dcid:dc/svpg/sdg/ER_FFS_CMPT_CD.001 +name: "Fossil-fuel subsidies (consumption and production)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERFFSCMPTGDP +relevantVariable: dcid:dc/svpg/sdg/ER_FFS_CMPT_GDP.001 +name: "Fossil-fuel subsidies (consumption and production) as a proportion of total GDP" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERFFSCMPTPCCD +relevantVariable: dcid:dc/svpg/sdg/ER_FFS_CMPT_PC_CD.001 +name: "Fossil-fuel subsidies (consumption and production) per capita" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERGRFANIMKPT +relevantVariable: dcid:dc/svpg/sdg/ER_GRF_ANIMKPT.001 +name: "Number of local breeds kept in the country" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERGRFANIMKPTTRB +relevantVariable: dcid:dc/svpg/sdg/ER_GRF_ANIMKPT_TRB.001 +name: "Number of transboundary breeds (including extinct ones)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERGRFANIMRCNTN +relevantVariable: dcid:dc/svpg/sdg/ER_GRF_ANIMRCNTN.001 +name: "Number of local breeds for which sufficient genetic resources are stored for reconstitution" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERGRFANIMRCNTNTRB +relevantVariable: dcid:dc/svpg/sdg/ER_GRF_ANIMRCNTN_TRB.001 +name: "Number of transboundary breeds for which sufficient genetic resources are stored for reconstitution" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERGRFPLNTSTOR +relevantVariable: dcid:dc/svpg/sdg/ER_GRF_PLNTSTOR.001 +name: "Plant genetic resources accessions stored ex situ" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERH2OFWTL +relevantVariable: dcid:dc/svpg/sdg/ER_H2O_FWTL.001 +name: "Proportion of fish stocks within biologically sustainable levels (not overexploited)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERH2OIWRMD +relevantVariable: dcid:dc/svpg/sdg/ER_H2O_IWRMD.001 +name: "Degree of implementation of integrated water resources management" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERH2OIWRMDEE +relevantVariable: dcid:dc/svpg/sdg/ER_H2O_IWRMD_EE.001 +name: "Degree of implementation of integrated water resources management: enabling environment" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERH2OIWRMDFI +relevantVariable: dcid:dc/svpg/sdg/ER_H2O_IWRMD_FI.001 +name: "Degree of implementation of integrated water resources management: financing" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERH2OIWRMDIP +relevantVariable: dcid:dc/svpg/sdg/ER_H2O_IWRMD_IP.001 +name: "Degree of implementation of integrated water resources management: institutions and participation" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERH2OIWRMDMI +relevantVariable: dcid:dc/svpg/sdg/ER_H2O_IWRMD_MI.001 +name: "Degree of implementation of integrated water resources management: management instruments" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERH2OIWRMP +relevantVariable: dcid:dc/svpg/sdg/ER_H2O_IWRMP.001 +name: "Proportion of countries by category of implementation of integrated water resources management (IWRM) by Level of implementation" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERH2OPARTIC +relevantVariable: dcid:dc/svpg/sdg/ER_H2O_PARTIC.001 +name: "Proportion of countries with high level of users/communities participating in planning programs in rural drinking-water supply by Type of location" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERH2OPRDU +relevantVariable: dcid:dc/svpg/sdg/ER_H2O_PRDU.001 +name: "Countries with procedures in law or policy for participation by service users/communities in planning program in rural drinking-water supply by Type of location" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERH2OPROCED +relevantVariable: dcid:dc/svpg/sdg/ER_H2O_PROCED.001 +name: "Proportion of countries with clearly defined procedures in law or policy for participation by service users/communities in planning program in rural drinking-water supply by Type of location" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERH2ORURP +relevantVariable: dcid:dc/svpg/sdg/ER_H2O_RURP.001 +name: "Countries with users/communities participating in planning programs in rural drinking-water supply, by level of participation by Type of location" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERH2OSTRESS +relevantVariable: dcid:dc/svpg/sdg/ER_H2O_STRESS.001, dcid:dc/svpg/sdg/ER_H2O_STRESS.002 +name: "Level of water stress: freshwater withdrawal as a proportion of available freshwater resources" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERH2OWUEYST +relevantVariable: dcid:dc/svpg/sdg/ER_H2O_WUEYST.001, dcid:dc/svpg/sdg/ER_H2O_WUEYST.002 +name: "Water use efficiency" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERIASGLOFUN +relevantVariable: dcid:dc/svpg/sdg/ER_IAS_GLOFUN.001 +name: "Recipient countries of global funding with access to any funding from global financial mechanisms for projects related to invasive alien species  management" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERIASGLOFUNP +relevantVariable: dcid:dc/svpg/sdg/ER_IAS_GLOFUNP.001 +name: "Proportion of recipient countries of global funding with access to any funding from global financial mechanisms for projects related to invasive alien species  management" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERIASLEGIS +relevantVariable: dcid:dc/svpg/sdg/ER_IAS_LEGIS.001 +name: "Countriees with a legislation, regulation, or act related to the prevention of introduction and management of Invasive Alien Species" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERIASNATBUD +relevantVariable: dcid:dc/svpg/sdg/ER_IAS_NATBUD.001 +name: "Countries with an allocation from the national budget to manage the threat of invasive alien species" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERIASNATBUDP +relevantVariable: dcid:dc/svpg/sdg/ER_IAS_NATBUDP.001 +name: "Proportion of countries with allocation from the national budget to manage the threat of invasive alien species" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERIASNBSAP +relevantVariable: dcid:dc/svpg/sdg/ER_IAS_NBSAP.001 +name: "Countries with alignment of National Biodiversity Strategy and Action Plan (NBSAP) targets to target 9 of the Aichi Biodiversity set out in the Strategic Plan for Biodiversity 2011-2020" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERIASNBSAPP +relevantVariable: dcid:dc/svpg/sdg/ER_IAS_NBSAPP.001 +name: "Proportion of countries with alignment of National Biodiversity Strategy and Action Plan (NBSAP) targets to target 9 of the Aichi Biodiversity target 9 set out in the Strategic Plan for Biodiversity 2011-2020" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERMRNMPA +relevantVariable: dcid:dc/svpg/sdg/ER_MRN_MPA.001 +name: "Average proportion of Marine Key Biodiversity Areas (KBAs) covered by protected areas" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERMTNDGRDA +relevantVariable: dcid:dc/svpg/sdg/ER_MTN_DGRDA.001, dcid:dc/svpg/sdg/ER_MTN_DGRDA.002 +name: "Area of degraded mountain land" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERMTNDGRDP +relevantVariable: dcid:dc/svpg/sdg/ER_MTN_DGRDP.001, dcid:dc/svpg/sdg/ER_MTN_DGRDP.002 +name: "Proportion of degraded mountain land" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERMTNGRNCOV +relevantVariable: dcid:dc/svpg/sdg/ER_MTN_GRNCOV.001, dcid:dc/svpg/sdg/ER_MTN_GRNCOV.002, dcid:dc/svpg/sdg/ER_MTN_GRNCOV.003, dcid:dc/svpg/sdg/ER_MTN_GRNCOV.004, dcid:dc/svpg/sdg/ER_MTN_GRNCOV.005, dcid:dc/svpg/sdg/ER_MTN_GRNCOV.006 +name: "Area of mountain green cover by Type of land cover" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERMTNGRNCVI +relevantVariable: dcid:dc/svpg/sdg/ER_MTN_GRNCVI.001, dcid:dc/svpg/sdg/ER_MTN_GRNCVI.002, dcid:dc/svpg/sdg/ER_MTN_GRNCVI.003, dcid:dc/svpg/sdg/ER_MTN_GRNCVI.004, dcid:dc/svpg/sdg/ER_MTN_GRNCVI.005, dcid:dc/svpg/sdg/ER_MTN_GRNCVI.006 +name: "Mountain Green Cover Index by Type of land cover" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERMTNTOTL +relevantVariable: dcid:dc/svpg/sdg/ER_MTN_TOTL.001, dcid:dc/svpg/sdg/ER_MTN_TOTL.002 +name: "Mountain area" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERNOEXLBREDN +relevantVariable: dcid:dc/svpg/sdg/ER_NOEX_LBREDN.001 +name: "Number of local breeds (not extinct)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERPTDFRHWTR +relevantVariable: dcid:dc/svpg/sdg/ER_PTD_FRHWTR.001 +name: "Average proportion of Freshwater Key Biodiversity Areas (KBAs) covered by protected areas" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERPTDMTN +relevantVariable: dcid:dc/svpg/sdg/ER_PTD_MTN.001 +name: "Average proportion of Mountain Key Biodiversity Areas (KBAs) covered by protected areas" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERPTDTERR +relevantVariable: dcid:dc/svpg/sdg/ER_PTD_TERR.001 +name: "Average proportion of Terrestrial Key Biodiversity Areas (KBAs) covered by protected areas" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERRDEOSEX +relevantVariable: dcid:dc/svpg/sdg/ER_RDE_OSEX.001 +name: "National ocean science expenditure as a share of total research and development funding" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERREGSSFRAR +relevantVariable: dcid:dc/svpg/sdg/ER_REG_SSFRAR.001 +name: "Degree of application of a legal/regulatory/policy/institutional framework which recognizes and protects access rights for small-scale fisheries" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERREGUNFCIM +relevantVariable: dcid:dc/svpg/sdg/ER_REG_UNFCIM.001 +name: "Degree of implementation of international instruments aiming to combat illegal, unreported and unregulated fishing" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERRSKLBREDS +relevantVariable: dcid:dc/svpg/sdg/ER_RSK_LBREDS.001 +name: "Proportion of local breeds classified as being at risk of extinction as a share of local breeds with known level of extinction risk" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERRSKLST +relevantVariable: dcid:dc/svpg/sdg/ER_RSK_LST.001 +name: "Red List Index" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERUNCLOSIMPLE +relevantVariable: dcid:dc/svpg/sdg/ER_UNCLOS_IMPLE.001 +name: "Score for the implementation of UNCLOS and its two implementing agreements" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERUNCLOSRATACC +relevantVariable: dcid:dc/svpg/sdg/ER_UNCLOS_RATACC.001 +name: "Score for the ratification of and accession to UNCLOS and its two implementing agreements" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERUNKLBREDN +relevantVariable: dcid:dc/svpg/sdg/ER_UNK_LBREDN.001 +name: "Number of local breeds with unknown risk status" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERWATPART +relevantVariable: dcid:dc/svpg/sdg/ER_WAT_PART.001 +name: "Countries with users/communities participating in planning programs in water resources planning and management" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERWATPARTIC +relevantVariable: dcid:dc/svpg/sdg/ER_WAT_PARTIC.001 +name: "Proportion of countries with high level of users/communities participating in planning programs in water resources planning and management" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERWATPRDU +relevantVariable: dcid:dc/svpg/sdg/ER_WAT_PRDU.001 +name: "Countries with procedures in law or policy for participation by service users/communities in planning program in water resources planning and management" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERWATPROCED +relevantVariable: dcid:dc/svpg/sdg/ER_WAT_PROCED.001 +name: "Proportion of countries with clearly defined procedures in law or policy for participation by service users/communities in planning program in water resources planning and management" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGERWLDTRPOACH +relevantVariable: dcid:dc/svpg/sdg/ER_WLD_TRPOACH.001 +name: "Proportion of traded wildlife that was poached or illicitly trafficked by Plants, animals and derived products " +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGFBATMTOTL +relevantVariable: dcid:dc/svpg/sdg/FB_ATM_TOTL.001 +name: "Number of automated teller machines (ATMs) per 100, 000 adults (15 years old and over)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGFBBNKACCSS +relevantVariable: dcid:dc/svpg/sdg/FB_BNK_ACCSS.001, dcid:dc/svpg/sdg/FB_BNK_ACCSS.002, dcid:dc/svpg/sdg/FB_BNK_ACCSS.003, dcid:dc/svpg/sdg/FB_BNK_ACCSS.004, dcid:dc/svpg/sdg/FB_BNK_ACCSS.005 +name: "Proportion of adults (15 years and older) with an account at a financial institution or mobile-money-service provider by Age group" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGFBBNKACCSSILF +relevantVariable: dcid:dc/svpg/sdg/FB_BNK_ACCSS_ILF.001 +name: "Proportion of adults (15 years and older) active in labor force with an account at a financial institution or mobile-money-service provider by Age group" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGFBBNKACCSSOLF +relevantVariable: dcid:dc/svpg/sdg/FB_BNK_ACCSS_OLF.001 +name: "Proportion of adults (15 years and older) out of labor force with an account at a financial institution or mobile-money-service provider" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGFBBNKCAPAZS +relevantVariable: dcid:dc/svpg/sdg/FB_BNK_CAPA_ZS.001 +name: "Bank capital to assets ratio" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGFBCBKBRCH +relevantVariable: dcid:dc/svpg/sdg/FB_CBK_BRCH.001 +name: "Number of commercial bank branches per 100, 000 adults (15 years old and over)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGFCACCSSID +relevantVariable: dcid:dc/svpg/sdg/FC_ACC_SSID.001 +name: "Proportion of small-scale manufacturing industries with a loan or line of credit" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGFIFSIFSANL +relevantVariable: dcid:dc/svpg/sdg/FI_FSI_FSANL.001 +name: "Non-performing loans to total gross loans" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGFIFSIFSERA +relevantVariable: dcid:dc/svpg/sdg/FI_FSI_FSERA.001 +name: "Rate of return on assets" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGFIFSIFSKA +relevantVariable: dcid:dc/svpg/sdg/FI_FSI_FSKA.001 +name: "Ratio of regulatory capital to assets" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGFIFSIFSKNL +relevantVariable: dcid:dc/svpg/sdg/FI_FSI_FSKNL.001 +name: "Ratio of non-performing loans (net of provisions) to capital" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGFIFSIFSKRTC +relevantVariable: dcid:dc/svpg/sdg/FI_FSI_FSKRTC.001 +name: "Ratio of regulatory tier-1 capital to risk-weighted assets" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGFIFSIFSLS +relevantVariable: dcid:dc/svpg/sdg/FI_FSI_FSLS.001 +name: "Ratio of liquid assets to short term liabilities" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGFIFSIFSSNO +relevantVariable: dcid:dc/svpg/sdg/FI_FSI_FSSNO.001 +name: "Ratio of net open position in foreign exchange to capital" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGFIRESTOTLMO +relevantVariable: dcid:dc/svpg/sdg/FI_RES_TOTL_MO.001 +name: "Total reserves in months of imports" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGFMLBLBMNYIRZS +relevantVariable: dcid:dc/svpg/sdg/FM_LBL_BMNY_IR_ZS.001 +name: "Ratio of broad money to total reserves" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGFMLBLBMNYZG +relevantVariable: dcid:dc/svpg/sdg/FM_LBL_BMNY_ZG.001 +name: "Annual growth of broad money" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGFPCPITOTLZG +relevantVariable: dcid:dc/svpg/sdg/FP_CPI_TOTL_ZG.001 +name: "Annual inflation (consumer prices)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGGBPOPSCIERD +relevantVariable: dcid:dc/svpg/sdg/GB_POP_SCIERD.001 +name: "Number of full-time-equivalent researchers per million inhabitants" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGGBXPDCULNATPB +relevantVariable: dcid:dc/svpg/sdg/GB_XPD_CULNAT_PB.001, dcid:dc/svpg/sdg/GB_XPD_CULNAT_PB.002 +name: "Total public expenditure per capita on cultural and natural heritage at purchansing-power parity rates" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGGBXPDCULNATPBPV +relevantVariable: dcid:dc/svpg/sdg/GB_XPD_CULNAT_PBPV.001 +name: "Total public and private expenditure per capita on cultural and natural heritage at purchasing-power parity rates" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGGBXPDCULNATPV +relevantVariable: dcid:dc/svpg/sdg/GB_XPD_CULNAT_PV.001 +name: "Total private expenditure per capita spent on cultural and natural heritage at purchasing-power parity rates" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGGBXPDCULPBPV +relevantVariable: dcid:dc/svpg/sdg/GB_XPD_CUL_PBPV.001 +name: "Total public and private expenditure per capita on cultural heritage at purchasing-power parity rates" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGGBXPDNATPBPV +relevantVariable: dcid:dc/svpg/sdg/GB_XPD_NAT_PBPV.001 +name: "Total public and private expenditure per capita on natural heritage at purchasing-power parity rates" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGGBXPDRSDV +relevantVariable: dcid:dc/svpg/sdg/GB_XPD_RSDV.001 +name: "Research and development expenditure as a proportion of GDP" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGGCBALCASHGDZS +relevantVariable: dcid:dc/svpg/sdg/GC_BAL_CASH_GD_ZS.001 +name: "Cash surplus/deficit as a proportion of GDP" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGGCGOBTAXD +relevantVariable: dcid:dc/svpg/sdg/GC_GOB_TAXD.001 +name: "Proportion of domestic budget funded by domestic taxes" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGGCTAXTOTLGDZS +relevantVariable: dcid:dc/svpg/sdg/GC_TAX_TOTL_GD_ZS.001 +name: "Tax revenue as a proportion of GDP" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGGFCOMPPPI +relevantVariable: dcid:dc/svpg/sdg/GF_COM_PPPI.001 +name: "Monetary amount committed to public-private partnerships for infrastructure in nominal terms" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGGFCOMPPPIKD +relevantVariable: dcid:dc/svpg/sdg/GF_COM_PPPI_KD.001 +name: "Monetary amount committed to public-private partnerships for infrastructure in real terms" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGGFFRNFDI +relevantVariable: dcid:dc/svpg/sdg/GF_FRN_FDI.001 +name: "Foreign direct investment (FDI) inflows" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGGFXPDGBPC +relevantVariable: dcid:dc/svpg/sdg/GF_XPD_GBPC.001 +name: "Primary government expenditures as a proportion of original approved budget" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGGRG14GDP +relevantVariable: dcid:dc/svpg/sdg/GR_G14_GDP.001 +name: "Total bugetary revenue of the central government as a proportion of GDP" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGGRG14XDC +relevantVariable: dcid:dc/svpg/sdg/GR_G14_XDC.001 +name: "Total government revenue, in local currency" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGICFRMBRIB +relevantVariable: dcid:dc/svpg/sdg/IC_FRM_BRIB.001 +name: "Incidence of bribery (proportion of firms experiencing at least one bribe payment request)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGICGENMGTL +relevantVariable: dcid:dc/svpg/sdg/IC_GEN_MGTL.001 +name: "Proportion of women in managerial positions - previous definition (15 years old and over)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGICGENMGTL19ICLS +relevantVariable: dcid:dc/svpg/sdg/IC_GEN_MGTL_19ICLS.001 +name: "Proportion of women in managerial positions - current definition (15 years old and over)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGICGENMGTN +relevantVariable: dcid:dc/svpg/sdg/IC_GEN_MGTN.001 +name: "Proportion of women in senior and middle management positions - previous definition (15 years old and over)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGICGENMGTN19ICLS +relevantVariable: dcid:dc/svpg/sdg/IC_GEN_MGTN_19ICLS.001 +name: "Proportion of women in senior and middle management positions - current definition (15 years old and over)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGIQSPIPIL4 +relevantVariable: dcid:dc/svpg/sdg/IQ_SPI_PIL4.001 +name: "Performance index of data sources (Pillar 4 of Statistical Performance Indicators)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGIQSPIPIL5 +relevantVariable: dcid:dc/svpg/sdg/IQ_SPI_PIL5.001 +name: "Performance index of data Infrastructure (Pillar 5 of Statistical Performance Indicators)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGISRDPFRGVOL +relevantVariable: dcid:dc/svpg/sdg/IS_RDP_FRGVOL.001 +name: "Freight volume by Mode of transport" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGISRDPLULFRG +relevantVariable: dcid:dc/svpg/sdg/IS_RDP_LULFRG.001 +name: "Freight loaded and unloaded, maritime transport" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGISRDPPFVOL +relevantVariable: dcid:dc/svpg/sdg/IS_RDP_PFVOL.001 +name: "Passenger volume by Mode of transport" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGISRDPPORFVOL +relevantVariable: dcid:dc/svpg/sdg/IS_RDP_PORFVOL.001 +name: "Container port traffic, maritime transport" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGITMOB2GNTWK +relevantVariable: dcid:dc/svpg/sdg/IT_MOB_2GNTWK.001 +name: "Proportion of population covered by at least a 2G mobile network" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGITMOB3GNTWK +relevantVariable: dcid:dc/svpg/sdg/IT_MOB_3GNTWK.001 +name: "Proportion of population covered by at least a 3G mobile network" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGITMOB4GNTWK +relevantVariable: dcid:dc/svpg/sdg/IT_MOB_4GNTWK.001 +name: "Proportion of population covered by at least a 4G mobile network" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGITMOBOWN +relevantVariable: dcid:dc/svpg/sdg/IT_MOB_OWN.001, dcid:dc/svpg/sdg/IT_MOB_OWN.002 +name: "Proportion of individuals who own a mobile telephone" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGITNETBBND +relevantVariable: dcid:dc/svpg/sdg/IT_NET_BBND.001, dcid:dc/svpg/sdg/IT_NET_BBND.002 +name: "Fixed broadband subscriptions per 100 inhabitants" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGITNETBBNDN +relevantVariable: dcid:dc/svpg/sdg/IT_NET_BBNDN.001, dcid:dc/svpg/sdg/IT_NET_BBNDN.002 +name: "Number of fixed broadband subscriptions" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGITUSEii99 +relevantVariable: dcid:dc/svpg/sdg/IT_USE_ii99.001, dcid:dc/svpg/sdg/IT_USE_ii99.002 +name: "Proportion of individuals using the Internet" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGIUCORBRIB +relevantVariable: dcid:dc/svpg/sdg/IU_COR_BRIB.001, dcid:dc/svpg/sdg/IU_COR_BRIB.002 +name: "Prevalence rate of bribery" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGIUDMKICRS +relevantVariable: dcid:dc/svpg/sdg/IU_DMK_ICRS.001, dcid:dc/svpg/sdg/IU_DMK_ICRS.002, dcid:dc/svpg/sdg/IU_DMK_ICRS.003, dcid:dc/svpg/sdg/IU_DMK_ICRS.004, dcid:dc/svpg/sdg/IU_DMK_ICRS.005, dcid:dc/svpg/sdg/IU_DMK_ICRS.006, dcid:dc/svpg/sdg/IU_DMK_ICRS.007, dcid:dc/svpg/sdg/IU_DMK_ICRS.008 +name: "Proportion of population who believe decision-making is inclusive and responsive" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGIUDMKINCL +relevantVariable: dcid:dc/svpg/sdg/IU_DMK_INCL.001, dcid:dc/svpg/sdg/IU_DMK_INCL.002, dcid:dc/svpg/sdg/IU_DMK_INCL.003, dcid:dc/svpg/sdg/IU_DMK_INCL.004, dcid:dc/svpg/sdg/IU_DMK_INCL.005, dcid:dc/svpg/sdg/IU_DMK_INCL.006, dcid:dc/svpg/sdg/IU_DMK_INCL.007, dcid:dc/svpg/sdg/IU_DMK_INCL.008 +name: "Proportion of population who believe decision-making is inclusive" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGIUDMKRESP +relevantVariable: dcid:dc/svpg/sdg/IU_DMK_RESP.001, dcid:dc/svpg/sdg/IU_DMK_RESP.002, dcid:dc/svpg/sdg/IU_DMK_RESP.003, dcid:dc/svpg/sdg/IU_DMK_RESP.004, dcid:dc/svpg/sdg/IU_DMK_RESP.005, dcid:dc/svpg/sdg/IU_DMK_RESP.006, dcid:dc/svpg/sdg/IU_DMK_RESP.007, dcid:dc/svpg/sdg/IU_DMK_RESP.008, dcid:dc/svpg/sdg/IU_DMK_RESP.009 +name: "Proportion of population who believe decision-making is responsive" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGNECONGOVTKDZG +relevantVariable: dcid:dc/svpg/sdg/NE_CON_GOVT_KD_ZG.001 +name: "Annual growth of final consumption expenditure of the general government" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGNECONPRVTKDZG +relevantVariable: dcid:dc/svpg/sdg/NE_CON_PRVT_KD_ZG.001 +name: "Annual growth of final consumption expenditure of households and non-profit institutions serving households (NPISHs)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGNEEXPGNFSKDZG +relevantVariable: dcid:dc/svpg/sdg/NE_EXP_GNFS_KD_ZG.001 +name: "Annual growth of exports of goods and services" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGNEGDITOTLKDZG +relevantVariable: dcid:dc/svpg/sdg/NE_GDI_TOTL_KD_ZG.001 +name: "Annual growth of the gross capital formation" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGNEIMPGNFSKDZG +relevantVariable: dcid:dc/svpg/sdg/NE_IMP_GNFS_KD_ZG.001 +name: "Annual growth of imports of goods and services" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGNVINDSSIS +relevantVariable: dcid:dc/svpg/sdg/NV_IND_SSIS.001 +name: "Proportion of small-scale manufacturing industries in total manufacturing value added" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGNVINDTECH +relevantVariable: dcid:dc/svpg/sdg/NV_IND_TECH.001 +name: "Proportion of medium and high-tech manufacturing value added in total value added" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGNYGDPMKTPKDZG +relevantVariable: dcid:dc/svpg/sdg/NY_GDP_MKTP_KD_ZG.001 +name: "Annual GDP growth" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGNYGDPPCAP +relevantVariable: dcid:dc/svpg/sdg/NY_GDP_PCAP.001 +name: "Annual growth rate of real GDP per capita" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGPANUSATLS +relevantVariable: dcid:dc/svpg/sdg/PA_NUS_ATLS.001 +name: "Alternative conversion factor used by the Development Economics Group (DEC)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGPDAGRLSFP +relevantVariable: dcid:dc/svpg/sdg/PD_AGR_LSFP.001, dcid:dc/svpg/sdg/PD_AGR_LSFP.002 +name: "Productivity of large-scale food producers (agricultural output per labour day at purchasing-power parity rates)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGPDAGRSSFP +relevantVariable: dcid:dc/svpg/sdg/PD_AGR_SSFP.001, dcid:dc/svpg/sdg/PD_AGR_SSFP.002 +name: "Productivity of small-scale food producers (agricultural output per labour day at purchasing-power parity rates)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSDCPAUPRDP +relevantVariable: dcid:dc/svpg/sdg/SD_CPA_UPRDP.001 +name: "Countries that have national urban policies or regional development plans that respond to population dynamics, ensure balanced territorial development, and increase local fiscal space" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSDMDPANDI +relevantVariable: dcid:dc/svpg/sdg/SD_MDP_ANDI.001, dcid:dc/svpg/sdg/SD_MDP_ANDI.002 +name: "Average proportion of deprivations experienced by multidimensionally poor people" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSDMDPANDIHH +relevantVariable: dcid:dc/svpg/sdg/SD_MDP_ANDIHH.001, dcid:dc/svpg/sdg/SD_MDP_ANDIHH.002 +name: "Average share of weighted deprivations experienced by total households (intensity)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSDMDPCSMP +relevantVariable: dcid:dc/svpg/sdg/SD_MDP_CSMP.001, dcid:dc/svpg/sdg/SD_MDP_CSMP.002 +name: "Proportion of children living in child-specific multidimensional poverty (under 18 years old)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSDMDPMUHHC +relevantVariable: dcid:dc/svpg/sdg/SD_MDP_MUHHC.001, dcid:dc/svpg/sdg/SD_MDP_MUHHC.002 +name: "Proportion of households living in multidimensional poverty" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSDXPDESED +relevantVariable: dcid:dc/svpg/sdg/SD_XPD_ESED.001 +name: "Proportion of total government spending on essential services, education" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSDXPDMNPO +relevantVariable: dcid:dc/svpg/sdg/SD_XPD_MNPO.001 +name: "Proportion of government spending in health, direct social transfers and education which benefit the monetary poor" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSEACCHNDWSH +relevantVariable: dcid:dc/svpg/sdg/SE_ACC_HNDWSH.001 +name: "Proportion of schools with basic handwashing facilities by Education level" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSEACSCMPTR +relevantVariable: dcid:dc/svpg/sdg/SE_ACS_CMPTR.001, dcid:dc/svpg/sdg/SE_ACS_CMPTR.002 +name: "Proportion of schools with access to computers for pedagogical purposes by Education level" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSEACSELECT +relevantVariable: dcid:dc/svpg/sdg/SE_ACS_ELECT.001 +name: "Proportion of schools with access to electricity by Education level" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSEACSH2O +relevantVariable: dcid:dc/svpg/sdg/SE_ACS_H2O.001 +name: "Proportion of schools with access to basic drinking water by Education level" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSEACSINTNT +relevantVariable: dcid:dc/svpg/sdg/SE_ACS_INTNT.001, dcid:dc/svpg/sdg/SE_ACS_INTNT.002 +name: "Proportion of schools with access to the internet for pedagogical purposes by Education level" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSEACSSANIT +relevantVariable: dcid:dc/svpg/sdg/SE_ACS_SANIT.001 +name: "Proportion of schools with access to single-sex basic sanitation by Education level" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSEADTACTS +relevantVariable: dcid:dc/svpg/sdg/SE_ADT_ACTS.001, dcid:dc/svpg/sdg/SE_ADT_ACTS.002, dcid:dc/svpg/sdg/SE_ADT_ACTS.003, dcid:dc/svpg/sdg/SE_ADT_ACTS.004, dcid:dc/svpg/sdg/SE_ADT_ACTS.005, dcid:dc/svpg/sdg/SE_ADT_ACTS.006, dcid:dc/svpg/sdg/SE_ADT_ACTS.007, dcid:dc/svpg/sdg/SE_ADT_ACTS.008, dcid:dc/svpg/sdg/SE_ADT_ACTS.009, dcid:dc/svpg/sdg/SE_ADT_ACTS.010, dcid:dc/svpg/sdg/SE_ADT_ACTS.011, dcid:dc/svpg/sdg/SE_ADT_ACTS.012, dcid:dc/svpg/sdg/SE_ADT_ACTS.013, dcid:dc/svpg/sdg/SE_ADT_ACTS.014, dcid:dc/svpg/sdg/SE_ADT_ACTS.015, dcid:dc/svpg/sdg/SE_ADT_ACTS.016, dcid:dc/svpg/sdg/SE_ADT_ACTS.017, dcid:dc/svpg/sdg/SE_ADT_ACTS.018, dcid:dc/svpg/sdg/SE_ADT_ACTS.019, dcid:dc/svpg/sdg/SE_ADT_ACTS.020, dcid:dc/svpg/sdg/SE_ADT_ACTS.021, dcid:dc/svpg/sdg/SE_ADT_ACTS.022, dcid:dc/svpg/sdg/SE_ADT_ACTS.023, dcid:dc/svpg/sdg/SE_ADT_ACTS.024, dcid:dc/svpg/sdg/SE_ADT_ACTS.025, dcid:dc/svpg/sdg/SE_ADT_ACTS.026, dcid:dc/svpg/sdg/SE_ADT_ACTS.027, dcid:dc/svpg/sdg/SE_ADT_ACTS.028, dcid:dc/svpg/sdg/SE_ADT_ACTS.029, dcid:dc/svpg/sdg/SE_ADT_ACTS.030, dcid:dc/svpg/sdg/SE_ADT_ACTS.031, dcid:dc/svpg/sdg/SE_ADT_ACTS.032, dcid:dc/svpg/sdg/SE_ADT_ACTS.033, dcid:dc/svpg/sdg/SE_ADT_ACTS.034, dcid:dc/svpg/sdg/SE_ADT_ACTS.035, dcid:dc/svpg/sdg/SE_ADT_ACTS.036, dcid:dc/svpg/sdg/SE_ADT_ACTS.037, dcid:dc/svpg/sdg/SE_ADT_ACTS.038, dcid:dc/svpg/sdg/SE_ADT_ACTS.039, dcid:dc/svpg/sdg/SE_ADT_ACTS.040, dcid:dc/svpg/sdg/SE_ADT_ACTS.041, dcid:dc/svpg/sdg/SE_ADT_ACTS.042, dcid:dc/svpg/sdg/SE_ADT_ACTS.043, dcid:dc/svpg/sdg/SE_ADT_ACTS.044, dcid:dc/svpg/sdg/SE_ADT_ACTS.045, dcid:dc/svpg/sdg/SE_ADT_ACTS.046, dcid:dc/svpg/sdg/SE_ADT_ACTS.047, dcid:dc/svpg/sdg/SE_ADT_ACTS.048, dcid:dc/svpg/sdg/SE_ADT_ACTS.049, dcid:dc/svpg/sdg/SE_ADT_ACTS.050, dcid:dc/svpg/sdg/SE_ADT_ACTS.051, dcid:dc/svpg/sdg/SE_ADT_ACTS.052, dcid:dc/svpg/sdg/SE_ADT_ACTS.053, dcid:dc/svpg/sdg/SE_ADT_ACTS.054, dcid:dc/svpg/sdg/SE_ADT_ACTS.055, dcid:dc/svpg/sdg/SE_ADT_ACTS.056, dcid:dc/svpg/sdg/SE_ADT_ACTS.057, dcid:dc/svpg/sdg/SE_ADT_ACTS.058, dcid:dc/svpg/sdg/SE_ADT_ACTS.059, dcid:dc/svpg/sdg/SE_ADT_ACTS.060, dcid:dc/svpg/sdg/SE_ADT_ACTS.061, dcid:dc/svpg/sdg/SE_ADT_ACTS.062, dcid:dc/svpg/sdg/SE_ADT_ACTS.063, dcid:dc/svpg/sdg/SE_ADT_ACTS.064, dcid:dc/svpg/sdg/SE_ADT_ACTS.065, dcid:dc/svpg/sdg/SE_ADT_ACTS.066, dcid:dc/svpg/sdg/SE_ADT_ACTS.067, dcid:dc/svpg/sdg/SE_ADT_ACTS.068, dcid:dc/svpg/sdg/SE_ADT_ACTS.069, dcid:dc/svpg/sdg/SE_ADT_ACTS.070, dcid:dc/svpg/sdg/SE_ADT_ACTS.071, dcid:dc/svpg/sdg/SE_ADT_ACTS.072, dcid:dc/svpg/sdg/SE_ADT_ACTS.073, dcid:dc/svpg/sdg/SE_ADT_ACTS.074, dcid:dc/svpg/sdg/SE_ADT_ACTS.075, dcid:dc/svpg/sdg/SE_ADT_ACTS.076, dcid:dc/svpg/sdg/SE_ADT_ACTS.077, dcid:dc/svpg/sdg/SE_ADT_ACTS.078, dcid:dc/svpg/sdg/SE_ADT_ACTS.079, dcid:dc/svpg/sdg/SE_ADT_ACTS.080, dcid:dc/svpg/sdg/SE_ADT_ACTS.081, dcid:dc/svpg/sdg/SE_ADT_ACTS.082, dcid:dc/svpg/sdg/SE_ADT_ACTS.083, dcid:dc/svpg/sdg/SE_ADT_ACTS.084, dcid:dc/svpg/sdg/SE_ADT_ACTS.085, dcid:dc/svpg/sdg/SE_ADT_ACTS.086, dcid:dc/svpg/sdg/SE_ADT_ACTS.087, dcid:dc/svpg/sdg/SE_ADT_ACTS.088, dcid:dc/svpg/sdg/SE_ADT_ACTS.089, dcid:dc/svpg/sdg/SE_ADT_ACTS.090, dcid:dc/svpg/sdg/SE_ADT_ACTS.091, dcid:dc/svpg/sdg/SE_ADT_ACTS.092, dcid:dc/svpg/sdg/SE_ADT_ACTS.093, dcid:dc/svpg/sdg/SE_ADT_ACTS.094, dcid:dc/svpg/sdg/SE_ADT_ACTS.095, dcid:dc/svpg/sdg/SE_ADT_ACTS.096, dcid:dc/svpg/sdg/SE_ADT_ACTS.097, dcid:dc/svpg/sdg/SE_ADT_ACTS.098, dcid:dc/svpg/sdg/SE_ADT_ACTS.099, dcid:dc/svpg/sdg/SE_ADT_ACTS.100, dcid:dc/svpg/sdg/SE_ADT_ACTS.101, dcid:dc/svpg/sdg/SE_ADT_ACTS.102, dcid:dc/svpg/sdg/SE_ADT_ACTS.103, dcid:dc/svpg/sdg/SE_ADT_ACTS.104, dcid:dc/svpg/sdg/SE_ADT_ACTS.105, dcid:dc/svpg/sdg/SE_ADT_ACTS.106, dcid:dc/svpg/sdg/SE_ADT_ACTS.107, dcid:dc/svpg/sdg/SE_ADT_ACTS.108, dcid:dc/svpg/sdg/SE_ADT_ACTS.109, dcid:dc/svpg/sdg/SE_ADT_ACTS.110, dcid:dc/svpg/sdg/SE_ADT_ACTS.111, dcid:dc/svpg/sdg/SE_ADT_ACTS.112, dcid:dc/svpg/sdg/SE_ADT_ACTS.113, dcid:dc/svpg/sdg/SE_ADT_ACTS.114, dcid:dc/svpg/sdg/SE_ADT_ACTS.115, dcid:dc/svpg/sdg/SE_ADT_ACTS.116, dcid:dc/svpg/sdg/SE_ADT_ACTS.117, dcid:dc/svpg/sdg/SE_ADT_ACTS.118, dcid:dc/svpg/sdg/SE_ADT_ACTS.119, dcid:dc/svpg/sdg/SE_ADT_ACTS.120, dcid:dc/svpg/sdg/SE_ADT_ACTS.121, dcid:dc/svpg/sdg/SE_ADT_ACTS.122, dcid:dc/svpg/sdg/SE_ADT_ACTS.123, dcid:dc/svpg/sdg/SE_ADT_ACTS.124, dcid:dc/svpg/sdg/SE_ADT_ACTS.125, dcid:dc/svpg/sdg/SE_ADT_ACTS.126, dcid:dc/svpg/sdg/SE_ADT_ACTS.127, dcid:dc/svpg/sdg/SE_ADT_ACTS.128, dcid:dc/svpg/sdg/SE_ADT_ACTS.129, dcid:dc/svpg/sdg/SE_ADT_ACTS.130, dcid:dc/svpg/sdg/SE_ADT_ACTS.131, dcid:dc/svpg/sdg/SE_ADT_ACTS.132, dcid:dc/svpg/sdg/SE_ADT_ACTS.133, dcid:dc/svpg/sdg/SE_ADT_ACTS.134, dcid:dc/svpg/sdg/SE_ADT_ACTS.135, dcid:dc/svpg/sdg/SE_ADT_ACTS.136, dcid:dc/svpg/sdg/SE_ADT_ACTS.137, dcid:dc/svpg/sdg/SE_ADT_ACTS.138, dcid:dc/svpg/sdg/SE_ADT_ACTS.139, dcid:dc/svpg/sdg/SE_ADT_ACTS.140, dcid:dc/svpg/sdg/SE_ADT_ACTS.141, dcid:dc/svpg/sdg/SE_ADT_ACTS.142, dcid:dc/svpg/sdg/SE_ADT_ACTS.143, dcid:dc/svpg/sdg/SE_ADT_ACTS.144, dcid:dc/svpg/sdg/SE_ADT_ACTS.145, dcid:dc/svpg/sdg/SE_ADT_ACTS.146, dcid:dc/svpg/sdg/SE_ADT_ACTS.147, dcid:dc/svpg/sdg/SE_ADT_ACTS.148, dcid:dc/svpg/sdg/SE_ADT_ACTS.149, dcid:dc/svpg/sdg/SE_ADT_ACTS.150, dcid:dc/svpg/sdg/SE_ADT_ACTS.151, dcid:dc/svpg/sdg/SE_ADT_ACTS.152, dcid:dc/svpg/sdg/SE_ADT_ACTS.153, dcid:dc/svpg/sdg/SE_ADT_ACTS.154, dcid:dc/svpg/sdg/SE_ADT_ACTS.155, dcid:dc/svpg/sdg/SE_ADT_ACTS.156, dcid:dc/svpg/sdg/SE_ADT_ACTS.157, dcid:dc/svpg/sdg/SE_ADT_ACTS.158, dcid:dc/svpg/sdg/SE_ADT_ACTS.159, dcid:dc/svpg/sdg/SE_ADT_ACTS.160, dcid:dc/svpg/sdg/SE_ADT_ACTS.161, dcid:dc/svpg/sdg/SE_ADT_ACTS.162, dcid:dc/svpg/sdg/SE_ADT_ACTS.163, dcid:dc/svpg/sdg/SE_ADT_ACTS.164, dcid:dc/svpg/sdg/SE_ADT_ACTS.165, dcid:dc/svpg/sdg/SE_ADT_ACTS.166, dcid:dc/svpg/sdg/SE_ADT_ACTS.167, dcid:dc/svpg/sdg/SE_ADT_ACTS.168, dcid:dc/svpg/sdg/SE_ADT_ACTS.169, dcid:dc/svpg/sdg/SE_ADT_ACTS.170, dcid:dc/svpg/sdg/SE_ADT_ACTS.171, dcid:dc/svpg/sdg/SE_ADT_ACTS.172, dcid:dc/svpg/sdg/SE_ADT_ACTS.173, dcid:dc/svpg/sdg/SE_ADT_ACTS.174, dcid:dc/svpg/sdg/SE_ADT_ACTS.175, dcid:dc/svpg/sdg/SE_ADT_ACTS.176, dcid:dc/svpg/sdg/SE_ADT_ACTS.177, dcid:dc/svpg/sdg/SE_ADT_ACTS.178, dcid:dc/svpg/sdg/SE_ADT_ACTS.179, dcid:dc/svpg/sdg/SE_ADT_ACTS.180, dcid:dc/svpg/sdg/SE_ADT_ACTS.181, dcid:dc/svpg/sdg/SE_ADT_ACTS.182, dcid:dc/svpg/sdg/SE_ADT_ACTS.183, dcid:dc/svpg/sdg/SE_ADT_ACTS.184, dcid:dc/svpg/sdg/SE_ADT_ACTS.185, dcid:dc/svpg/sdg/SE_ADT_ACTS.186 +name: "Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old) by Type of skill" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSEADTEDUCTRN +relevantVariable: dcid:dc/svpg/sdg/SE_ADT_EDUCTRN.001, dcid:dc/svpg/sdg/SE_ADT_EDUCTRN.002, dcid:dc/svpg/sdg/SE_ADT_EDUCTRN.003, dcid:dc/svpg/sdg/SE_ADT_EDUCTRN.004, dcid:dc/svpg/sdg/SE_ADT_EDUCTRN.005 +name: "Participation rate in formal and non-formal education and training by Age group" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSEADTFUNS +relevantVariable: dcid:dc/svpg/sdg/SE_ADT_FUNS.001, dcid:dc/svpg/sdg/SE_ADT_FUNS.002, dcid:dc/svpg/sdg/SE_ADT_FUNS.003 +name: "Proportion of population achieving at least a fixed level of proficiency in functional skills (16 to 65 years old) by Type of skill" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSEAGPCPRA +relevantVariable: dcid:dc/svpg/sdg/SE_AGP_CPRA.001, dcid:dc/svpg/sdg/SE_AGP_CPRA.002, dcid:dc/svpg/sdg/SE_AGP_CPRA.003, dcid:dc/svpg/sdg/SE_AGP_CPRA.004, dcid:dc/svpg/sdg/SE_AGP_CPRA.005, dcid:dc/svpg/sdg/SE_AGP_CPRA.006, dcid:dc/svpg/sdg/SE_AGP_CPRA.007, dcid:dc/svpg/sdg/SE_AGP_CPRA.008, dcid:dc/svpg/sdg/SE_AGP_CPRA.009, dcid:dc/svpg/sdg/SE_AGP_CPRA.010, dcid:dc/svpg/sdg/SE_AGP_CPRA.011, dcid:dc/svpg/sdg/SE_AGP_CPRA.012, dcid:dc/svpg/sdg/SE_AGP_CPRA.013, dcid:dc/svpg/sdg/SE_AGP_CPRA.014, dcid:dc/svpg/sdg/SE_AGP_CPRA.015, dcid:dc/svpg/sdg/SE_AGP_CPRA.016, dcid:dc/svpg/sdg/SE_AGP_CPRA.017, dcid:dc/svpg/sdg/SE_AGP_CPRA.018 +name: "Adjusted gender parity index for completion rate by Education level" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSEALPCPLR +relevantVariable: dcid:dc/svpg/sdg/SE_ALP_CPLR.001, dcid:dc/svpg/sdg/SE_ALP_CPLR.002, dcid:dc/svpg/sdg/SE_ALP_CPLR.003, dcid:dc/svpg/sdg/SE_ALP_CPLR.004, dcid:dc/svpg/sdg/SE_ALP_CPLR.005, dcid:dc/svpg/sdg/SE_ALP_CPLR.006, dcid:dc/svpg/sdg/SE_ALP_CPLR.007, dcid:dc/svpg/sdg/SE_ALP_CPLR.008, dcid:dc/svpg/sdg/SE_ALP_CPLR.009, dcid:dc/svpg/sdg/SE_ALP_CPLR.010, dcid:dc/svpg/sdg/SE_ALP_CPLR.011, dcid:dc/svpg/sdg/SE_ALP_CPLR.012, dcid:dc/svpg/sdg/SE_ALP_CPLR.013, dcid:dc/svpg/sdg/SE_ALP_CPLR.014, dcid:dc/svpg/sdg/SE_ALP_CPLR.015, dcid:dc/svpg/sdg/SE_ALP_CPLR.016, dcid:dc/svpg/sdg/SE_ALP_CPLR.017, dcid:dc/svpg/sdg/SE_ALP_CPLR.018 +name: "Adjusted location parity index for completion rate by Education level" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSEAWPCPRA +relevantVariable: dcid:dc/svpg/sdg/SE_AWP_CPRA.001, dcid:dc/svpg/sdg/SE_AWP_CPRA.002, dcid:dc/svpg/sdg/SE_AWP_CPRA.003, dcid:dc/svpg/sdg/SE_AWP_CPRA.004, dcid:dc/svpg/sdg/SE_AWP_CPRA.005, dcid:dc/svpg/sdg/SE_AWP_CPRA.006, dcid:dc/svpg/sdg/SE_AWP_CPRA.007, dcid:dc/svpg/sdg/SE_AWP_CPRA.008, dcid:dc/svpg/sdg/SE_AWP_CPRA.009 +name: "Adjusted wealth parity index for completion rate by Education level" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSEDEVONTRK +relevantVariable: dcid:dc/svpg/sdg/SE_DEV_ONTRK.001, dcid:dc/svpg/sdg/SE_DEV_ONTRK.002, dcid:dc/svpg/sdg/SE_DEV_ONTRK.003, dcid:dc/svpg/sdg/SE_DEV_ONTRK.004 +name: "Proportion of children aged 24−59 months who are developmentally on track in at least three of the following domains: literacy-numeracy, physical development, social-emotional development, and learning by Age group" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSEGCEDESDCUR +relevantVariable: dcid:dc/svpg/sdg/SE_GCEDESD_CUR.001 +name: "Extent to which global citizenship education and education for sustainable development are mainstreamed in curricula" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSEGCEDESDNEP +relevantVariable: dcid:dc/svpg/sdg/SE_GCEDESD_NEP.001 +name: "Extent to which global citizenship education and education for sustainable development are mainstreamed in national education policies" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSEGCEDESDSAS +relevantVariable: dcid:dc/svpg/sdg/SE_GCEDESD_SAS.001 +name: "Extent to which global citizenship education and education for sustainable development are mainstreamed in student assessment" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSEGCEDESDTED +relevantVariable: dcid:dc/svpg/sdg/SE_GCEDESD_TED.001 +name: "Extent to which global citizenship education and education for sustainable development are mainstreamed in teacher education" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSEGPIICTS +relevantVariable: dcid:dc/svpg/sdg/SE_GPI_ICTS.001, dcid:dc/svpg/sdg/SE_GPI_ICTS.002 +name: "Gender parity index for youth/adults with information and communications technology (ICT) skills by Type of skill" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSEGPIPART +relevantVariable: dcid:dc/svpg/sdg/SE_GPI_PART.001 +name: "Adjusted gender parity index for participation rate in formal and non-formal education and training by Age group" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSEGPIPTNPRE +relevantVariable: dcid:dc/svpg/sdg/SE_GPI_PTNPRE.001 +name: "Adjusted gender parity index for participation rate in organized learning (one year before the official primary entry age)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSEGPITCAQ +relevantVariable: dcid:dc/svpg/sdg/SE_GPI_TCAQ.001, dcid:dc/svpg/sdg/SE_GPI_TCAQ.002 +name: "Adjusted gender parity index for the proportion of teachers with the minimum required qualifications by Education level" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSEIMPFPOF +relevantVariable: dcid:dc/svpg/sdg/SE_IMP_FPOF.001 +name: "Adjusted immigration status parity index for achieving at least a fixed level of proficiency in functional skills (16 to 65 years old) by Type of skill" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSEINFDSBL +relevantVariable: dcid:dc/svpg/sdg/SE_INF_DSBL.001 +name: "Proportion of schools with access to adapted infrastructure and materials for students with disabilities by Education level" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSELGPACHI +relevantVariable: dcid:dc/svpg/sdg/SE_LGP_ACHI.001, dcid:dc/svpg/sdg/SE_LGP_ACHI.002 +name: "Adjusted language test parity index for achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in mathematics) by Education level" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSENAPACHI +relevantVariable: dcid:dc/svpg/sdg/SE_NAP_ACHI.001, dcid:dc/svpg/sdg/SE_NAP_ACHI.002 +name: "Adjusted immigration status parity index for achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in mathematics) by Education level" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSEPREPARTN +relevantVariable: dcid:dc/svpg/sdg/SE_PRE_PARTN.001, dcid:dc/svpg/sdg/SE_PRE_PARTN.002 +name: "Participation rate in organized learning (one year before the official primary entry age)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSETOTCPLR +relevantVariable: dcid:dc/svpg/sdg/SE_TOT_CPLR.001, dcid:dc/svpg/sdg/SE_TOT_CPLR.002, dcid:dc/svpg/sdg/SE_TOT_CPLR.003, dcid:dc/svpg/sdg/SE_TOT_CPLR.004, dcid:dc/svpg/sdg/SE_TOT_CPLR.005, dcid:dc/svpg/sdg/SE_TOT_CPLR.006, dcid:dc/svpg/sdg/SE_TOT_CPLR.007, dcid:dc/svpg/sdg/SE_TOT_CPLR.008, dcid:dc/svpg/sdg/SE_TOT_CPLR.009, dcid:dc/svpg/sdg/SE_TOT_CPLR.010, dcid:dc/svpg/sdg/SE_TOT_CPLR.011, dcid:dc/svpg/sdg/SE_TOT_CPLR.012, dcid:dc/svpg/sdg/SE_TOT_CPLR.013, dcid:dc/svpg/sdg/SE_TOT_CPLR.014, dcid:dc/svpg/sdg/SE_TOT_CPLR.015, dcid:dc/svpg/sdg/SE_TOT_CPLR.016, dcid:dc/svpg/sdg/SE_TOT_CPLR.017, dcid:dc/svpg/sdg/SE_TOT_CPLR.018, dcid:dc/svpg/sdg/SE_TOT_CPLR.019, dcid:dc/svpg/sdg/SE_TOT_CPLR.020, dcid:dc/svpg/sdg/SE_TOT_CPLR.021, dcid:dc/svpg/sdg/SE_TOT_CPLR.022, dcid:dc/svpg/sdg/SE_TOT_CPLR.023, dcid:dc/svpg/sdg/SE_TOT_CPLR.024, dcid:dc/svpg/sdg/SE_TOT_CPLR.025, dcid:dc/svpg/sdg/SE_TOT_CPLR.026, dcid:dc/svpg/sdg/SE_TOT_CPLR.027, dcid:dc/svpg/sdg/SE_TOT_CPLR.028, dcid:dc/svpg/sdg/SE_TOT_CPLR.029, dcid:dc/svpg/sdg/SE_TOT_CPLR.030, dcid:dc/svpg/sdg/SE_TOT_CPLR.031, dcid:dc/svpg/sdg/SE_TOT_CPLR.032, dcid:dc/svpg/sdg/SE_TOT_CPLR.033, dcid:dc/svpg/sdg/SE_TOT_CPLR.034, dcid:dc/svpg/sdg/SE_TOT_CPLR.035, dcid:dc/svpg/sdg/SE_TOT_CPLR.036, dcid:dc/svpg/sdg/SE_TOT_CPLR.037, dcid:dc/svpg/sdg/SE_TOT_CPLR.038, dcid:dc/svpg/sdg/SE_TOT_CPLR.039, dcid:dc/svpg/sdg/SE_TOT_CPLR.040, dcid:dc/svpg/sdg/SE_TOT_CPLR.041, dcid:dc/svpg/sdg/SE_TOT_CPLR.042, dcid:dc/svpg/sdg/SE_TOT_CPLR.043, dcid:dc/svpg/sdg/SE_TOT_CPLR.044, dcid:dc/svpg/sdg/SE_TOT_CPLR.045, dcid:dc/svpg/sdg/SE_TOT_CPLR.046, dcid:dc/svpg/sdg/SE_TOT_CPLR.047, dcid:dc/svpg/sdg/SE_TOT_CPLR.048, dcid:dc/svpg/sdg/SE_TOT_CPLR.049, dcid:dc/svpg/sdg/SE_TOT_CPLR.050, dcid:dc/svpg/sdg/SE_TOT_CPLR.051, dcid:dc/svpg/sdg/SE_TOT_CPLR.052, dcid:dc/svpg/sdg/SE_TOT_CPLR.053, dcid:dc/svpg/sdg/SE_TOT_CPLR.054 +name: "School completion rate by Education level" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSETOTGPI +relevantVariable: dcid:dc/svpg/sdg/SE_TOT_GPI.001, dcid:dc/svpg/sdg/SE_TOT_GPI.002 +name: "Adjusted gender parity index for achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in mathematics) by Education level" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSETOTGPIFS +relevantVariable: dcid:dc/svpg/sdg/SE_TOT_GPI_FS.001 +name: "Adjusted gender parity index for achieving at least a fixed level of proficiency in functional skills (16 to 65 years old) by Type of skill" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSETOTPRFL +relevantVariable: dcid:dc/svpg/sdg/SE_TOT_PRFL.001, dcid:dc/svpg/sdg/SE_TOT_PRFL.002, dcid:dc/svpg/sdg/SE_TOT_PRFL.003, dcid:dc/svpg/sdg/SE_TOT_PRFL.004, dcid:dc/svpg/sdg/SE_TOT_PRFL.005, dcid:dc/svpg/sdg/SE_TOT_PRFL.006 +name: "Proportion of children and young people achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in mathematics) by Education level" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSETOTRUPI +relevantVariable: dcid:dc/svpg/sdg/SE_TOT_RUPI.001, dcid:dc/svpg/sdg/SE_TOT_RUPI.002 +name: "Adjusted rural to urban parity index for achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in mathematics) by Education level" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSETOTSESPI +relevantVariable: dcid:dc/svpg/sdg/SE_TOT_SESPI.001, dcid:dc/svpg/sdg/SE_TOT_SESPI.002 +name: "Adjusted low to high socio-economic parity index for achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in mathematics) by Education level" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSETOTSESPIFS +relevantVariable: dcid:dc/svpg/sdg/SE_TOT_SESPI_FS.001 +name: "Adjusted low to high socio-economic parity status index for achieving at least a fixed level of proficiency in functional skills (16 to 65 years old) by Type of skill" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSETRAGRDL +relevantVariable: dcid:dc/svpg/sdg/SE_TRA_GRDL.001, dcid:dc/svpg/sdg/SE_TRA_GRDL.002, dcid:dc/svpg/sdg/SE_TRA_GRDL.003, dcid:dc/svpg/sdg/SE_TRA_GRDL.004, dcid:dc/svpg/sdg/SE_TRA_GRDL.005 +name: "Proportion of teachers with the minimum required qualifications (Pre-primary education) by Sex" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGCPAMIGRP +relevantVariable: dcid:dc/svpg/sdg/SG_CPA_MIGRP.001, dcid:dc/svpg/sdg/SG_CPA_MIGRP.002 +name: "Proportion of countries with migration policies to facilitate orderly, safe, regular and responsible migration and mobility of people" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGCPAMIGRS +relevantVariable: dcid:dc/svpg/sdg/SG_CPA_MIGRS.001, dcid:dc/svpg/sdg/SG_CPA_MIGRS.002 +name: "Countries with migration policies to facilitate orderly, safe, regular and responsible migration and mobility of people" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGCPAOFDI +relevantVariable: dcid:dc/svpg/sdg/SG_CPA_OFDI.001, dcid:dc/svpg/sdg/SG_CPA_OFDI.002 +name: "Number of countries with an outward investment promotion scheme which can benefit developing countries, including LDCs" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGCPASDEVP +relevantVariable: dcid:dc/svpg/sdg/SG_CPA_SDEVP.001 +name: "Mechanisms in place to enhance policy coherence for sustainable development" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGDMKJDC +relevantVariable: dcid:dc/svpg/sdg/SG_DMK_JDC.001, dcid:dc/svpg/sdg/SG_DMK_JDC.002, dcid:dc/svpg/sdg/SG_DMK_JDC.003, dcid:dc/svpg/sdg/SG_DMK_JDC.004, dcid:dc/svpg/sdg/SG_DMK_JDC.005, dcid:dc/svpg/sdg/SG_DMK_JDC.006, dcid:dc/svpg/sdg/SG_DMK_JDC.007, dcid:dc/svpg/sdg/SG_DMK_JDC.008, dcid:dc/svpg/sdg/SG_DMK_JDC.009, dcid:dc/svpg/sdg/SG_DMK_JDC.010, dcid:dc/svpg/sdg/SG_DMK_JDC.011 +name: "Proportion of positions held by persons under 45 years of age in the judiciary, compared to national distributions" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGDMKJDCCNS +relevantVariable: dcid:dc/svpg/sdg/SG_DMK_JDC_CNS.001, dcid:dc/svpg/sdg/SG_DMK_JDC_CNS.002, dcid:dc/svpg/sdg/SG_DMK_JDC_CNS.003, dcid:dc/svpg/sdg/SG_DMK_JDC_CNS.004 +name: "Proportions of positions held by persons under 45 years of age in the Constitutional Court" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGDMKJDCHGR +relevantVariable: dcid:dc/svpg/sdg/SG_DMK_JDC_HGR.001, dcid:dc/svpg/sdg/SG_DMK_JDC_HGR.002, dcid:dc/svpg/sdg/SG_DMK_JDC_HGR.003, dcid:dc/svpg/sdg/SG_DMK_JDC_HGR.004, dcid:dc/svpg/sdg/SG_DMK_JDC_HGR.005 +name: "Proportions of positions held by persons under 45 years of age in the Higher Courts" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGDMKJDCLWR +relevantVariable: dcid:dc/svpg/sdg/SG_DMK_JDC_LWR.001, dcid:dc/svpg/sdg/SG_DMK_JDC_LWR.002, dcid:dc/svpg/sdg/SG_DMK_JDC_LWR.003, dcid:dc/svpg/sdg/SG_DMK_JDC_LWR.004, dcid:dc/svpg/sdg/SG_DMK_JDC_LWR.005 +name: "Proportions of positions held by persons under 45 years of age in the Lower Courts" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGDMKPARLCCJC +relevantVariable: dcid:dc/svpg/sdg/SG_DMK_PARLCC_JC.001, dcid:dc/svpg/sdg/SG_DMK_PARLCC_JC.002, dcid:dc/svpg/sdg/SG_DMK_PARLCC_JC.003, dcid:dc/svpg/sdg/SG_DMK_PARLCC_JC.004, dcid:dc/svpg/sdg/SG_DMK_PARLCC_JC.005, dcid:dc/svpg/sdg/SG_DMK_PARLCC_JC.006 +name: "Number of chairs of permanent parliamentary committees held by women 46 years old and over: Joint Committees" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGDMKPARLCCLC +relevantVariable: dcid:dc/svpg/sdg/SG_DMK_PARLCC_LC.001, dcid:dc/svpg/sdg/SG_DMK_PARLCC_LC.002, dcid:dc/svpg/sdg/SG_DMK_PARLCC_LC.003, dcid:dc/svpg/sdg/SG_DMK_PARLCC_LC.004, dcid:dc/svpg/sdg/SG_DMK_PARLCC_LC.005, dcid:dc/svpg/sdg/SG_DMK_PARLCC_LC.006, dcid:dc/svpg/sdg/SG_DMK_PARLCC_LC.007, dcid:dc/svpg/sdg/SG_DMK_PARLCC_LC.008, dcid:dc/svpg/sdg/SG_DMK_PARLCC_LC.009 +name: "Number of chairs of permanent parliamentary committees held by women 46 years old and over: Lower Chamber or Unicameral Committees" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGDMKPARLCCUC +relevantVariable: dcid:dc/svpg/sdg/SG_DMK_PARLCC_UC.001, dcid:dc/svpg/sdg/SG_DMK_PARLCC_UC.002, dcid:dc/svpg/sdg/SG_DMK_PARLCC_UC.003, dcid:dc/svpg/sdg/SG_DMK_PARLCC_UC.004, dcid:dc/svpg/sdg/SG_DMK_PARLCC_UC.005, dcid:dc/svpg/sdg/SG_DMK_PARLCC_UC.006, dcid:dc/svpg/sdg/SG_DMK_PARLCC_UC.007, dcid:dc/svpg/sdg/SG_DMK_PARLCC_UC.008 +name: "Number of chairs of permanent parliamentary committees held by women years old and over: Upper Chamber Committees" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGDMKPARLMPLC +relevantVariable: dcid:dc/svpg/sdg/SG_DMK_PARLMP_LC.001 +name: "Female representation ratio in parliament (proportion of women in parliament divided by the proportion of women in the national population eligible by age): Lower chamber or unicameral" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGDMKPARLMPUC +relevantVariable: dcid:dc/svpg/sdg/SG_DMK_PARLMP_UC.001 +name: "Female representation ratio in parliament (proportion of women in parliament divided by the proportion of women in the national population eligible by age): Upper chamber" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGDMKPARLSPLC +relevantVariable: dcid:dc/svpg/sdg/SG_DMK_PARLSP_LC.001, dcid:dc/svpg/sdg/SG_DMK_PARLSP_LC.002, dcid:dc/svpg/sdg/SG_DMK_PARLSP_LC.004, dcid:dc/svpg/sdg/SG_DMK_PARLSP_LC.005 +name: "Number of persons 46 years and over who are speakers in parliement, by sex: Lower Chamber or Unicameral Committees" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGDMKPARLSPUC +relevantVariable: dcid:dc/svpg/sdg/SG_DMK_PARLSP_UC.001, dcid:dc/svpg/sdg/SG_DMK_PARLSP_UC.002, dcid:dc/svpg/sdg/SG_DMK_PARLSP_UC.004, dcid:dc/svpg/sdg/SG_DMK_PARLSP_UC.005 +name: "Number of persons 46 years old and over who are speakers in parliement, by sex: Upper Chamber Committees" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGDMKPARLYNLC +relevantVariable: dcid:dc/svpg/sdg/SG_DMK_PARLYN_LC.001 +name: "Number of youth in parliament (age 45 or below): Lower Chamber or Unicameral by Age group" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGDMKPARLYNUC +relevantVariable: dcid:dc/svpg/sdg/SG_DMK_PARLYN_UC.001 +name: "Number of youth in parliament (age 45 or below): Upper Chamber by Age group" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGDMKPARLYPLC +relevantVariable: dcid:dc/svpg/sdg/SG_DMK_PARLYP_LC.001 +name: "Proportion of youth in parliament (age 45 or below): Lower Chamber or Unicameral by Age group" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGDMKPARLYPUC +relevantVariable: dcid:dc/svpg/sdg/SG_DMK_PARLYP_UC.001 +name: "Proportion of youth in parliament (age 45 or below): Upper Chamber by Age group" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGDMKPARLYRLC +relevantVariable: dcid:dc/svpg/sdg/SG_DMK_PARLYR_LC.001 +name: "Youth representation ratio in parliament (proportion of members in parliament aged 45 or below divided by the share of individuals aged 45 or below in the national population eligible by age): Lower Chamber or Unicameral by Age group" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGDMKPARLYRUC +relevantVariable: dcid:dc/svpg/sdg/SG_DMK_PARLYR_UC.001 +name: "Youth representation ratio in parliament (proportion of members in parliament aged 45 or below divided by the share of individuals aged 45 or below in the national population eligible by age): Upper Chamber or Unicameral by Age group" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGDMKPSRVC +relevantVariable: dcid:dc/svpg/sdg/SG_DMK_PSRVC.001, dcid:dc/svpg/sdg/SG_DMK_PSRVC.005 +name: "Proportion of positions in the public service held by specific groups compared to national distributions" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGDSRLGRGSR +relevantVariable: dcid:dc/svpg/sdg/SG_DSR_LGRGSR.001 +name: "Score of adoption and implementation of national disaster-risk reduction strategies in line with the Sendai Framework" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGDSRSFDRR +relevantVariable: dcid:dc/svpg/sdg/SG_DSR_SFDRR.001 +name: "Number of countries that reported having a national disaster-risk reduction strategy which is aligned to the Sendai Framework" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGDSRSILN +relevantVariable: dcid:dc/svpg/sdg/SG_DSR_SILN.001 +name: "Number of local governments that adopt and implement local disaster-risk reduction strategies in line with national strategies" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGDSRSILS +relevantVariable: dcid:dc/svpg/sdg/SG_DSR_SILS.001 +name: "Proportion of local governments that adopt and implement local disaster-risk reduction strategies in line with national disaster-risk reduction strategies" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGGENEQPWN +relevantVariable: dcid:dc/svpg/sdg/SG_GEN_EQPWN.001 +name: "Proportion of countries with systems to track and make public allocations for gender equality and women's empowerment" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGGENEQPWNN +relevantVariable: dcid:dc/svpg/sdg/SG_GEN_EQPWNN.001 +name: "Countries with systems to track and make public allocations for gender equality and women's empowerment" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGGENLOCGELS +relevantVariable: dcid:dc/svpg/sdg/SG_GEN_LOCGELS.001 +name: "Proportion of elected seats in deliberative bodies of local government held by women by Sex" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGGENPARL +relevantVariable: dcid:dc/svpg/sdg/SG_GEN_PARL.001 +name: "Proportion of seats in national parliaments held by women by Sex" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGGENPARLN +relevantVariable: dcid:dc/svpg/sdg/SG_GEN_PARLN.001 +name: "Number of seats in national parliaments held by women by Sex" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGGENPARLNT +relevantVariable: dcid:dc/svpg/sdg/SG_GEN_PARLNT.001 +name: "Current number of seats in national parliaments" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGGOVLOGV +relevantVariable: dcid:dc/svpg/sdg/SG_GOV_LOGV.001 +name: "Number of local governments" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGHAZCMRBASEL +relevantVariable: dcid:dc/svpg/sdg/SG_HAZ_CMRBASEL.001 +name: "Parties meeting their commitments and obligations in transmitting information as required by Basel Convention on hazardous waste, and other chemicals" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGHAZCMRMNMT +relevantVariable: dcid:dc/svpg/sdg/SG_HAZ_CMRMNMT.001 +name: "Parties meeting their commitments and obligations in transmitting information as required by Minamata Convention on hazardous waste, and other chemicals" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGHAZCMRMNTRL +relevantVariable: dcid:dc/svpg/sdg/SG_HAZ_CMRMNTRL.001 +name: "Parties meeting their commitments and obligations in transmitting information as required by Montreal Protocol on hazardous waste, and other chemicals" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGHAZCMRROTDAM +relevantVariable: dcid:dc/svpg/sdg/SG_HAZ_CMRROTDAM.001 +name: "Parties meeting their commitments and obligations in transmitting information as required by Rotterdam Convention on hazardous waste, and other chemicals" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGHAZCMRSTHOLM +relevantVariable: dcid:dc/svpg/sdg/SG_HAZ_CMRSTHOLM.001 +name: "Parties meeting their commitments and obligations in transmitting information as required by Stockholm Convention on hazardous waste, and other chemicals" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGINFACCSS +relevantVariable: dcid:dc/svpg/sdg/SG_INF_ACCSS.001 +name: "Countries that adopt and implement constitutional, statutory and/or policy guarantees for public access to information" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGINTMBRDEV +relevantVariable: dcid:dc/svpg/sdg/SG_INT_MBRDEV.001 +name: "Proportion of members of developing countries in international organizations by International organization" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGINTVRTDEV +relevantVariable: dcid:dc/svpg/sdg/SG_INT_VRTDEV.001 +name: "Proportion of voting rights of developing countries in international organizations by International organization" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGLGLGENEQEMP +relevantVariable: dcid:dc/svpg/sdg/SG_LGL_GENEQEMP.001 +name: "Level of achievement regarding legal frameworks that promote, enforce and monitor gender equality with respect to employment and economic benefits (Area 3)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGLGLGENEQLFP +relevantVariable: dcid:dc/svpg/sdg/SG_LGL_GENEQLFP.001 +name: "Level of achievement regarding legal frameworks that promote, enforce and monitor gender equality with respect to overarching legal frameworks and public life (Area 1)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGLGLGENEQMAR +relevantVariable: dcid:dc/svpg/sdg/SG_LGL_GENEQMAR.001 +name: "Level of achievement regarding legal frameworks that promote, enforce and monitor gender equality with respect to marriage and family (Area 4)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGLGLGENEQVAW +relevantVariable: dcid:dc/svpg/sdg/SG_LGL_GENEQVAW.001 +name: "Level of achievement regarding legal frameworks that promote, enforce and monitor gender equality with respect to violence against women (Area 2)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGLGLLNDFEMOD +relevantVariable: dcid:dc/svpg/sdg/SG_LGL_LNDFEMOD.001 +name: "Degree to which the legal framework (including customary law) guarantees women’s equal rights to land ownership and/or control" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGNHRCMPLNC +relevantVariable: dcid:dc/svpg/sdg/SG_NHR_CMPLNC.001 +name: "Countries with National Human Rights Institutions in compliance with the Paris Principles" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGNHRIMPL +relevantVariable: dcid:dc/svpg/sdg/SG_NHR_IMPL.001 +name: "Proportion of countries with independent National Human Rights Institutions in compliance with the Paris Principles" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGNHRINTEXST +relevantVariable: dcid:dc/svpg/sdg/SG_NHR_INTEXST.001 +name: "Proportion of countries that applied for accreditation as independent National Human Rights Institutions in compliance with the Paris Principles" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGPLNMSTKSDGP +relevantVariable: dcid:dc/svpg/sdg/SG_PLN_MSTKSDG_P.001 +name: "Number of provider countries reporting progress in multi-stakeholder development effectiveness monitoring frameworks that support the achievement of the sustainable development goals" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGPLNMSTKSDGR +relevantVariable: dcid:dc/svpg/sdg/SG_PLN_MSTKSDG_R.001 +name: "Number of recipient countries reporting progress in multi-stakeholder development effectiveness monitoring frameworks that support the achievement of the sustainable development goals" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGPLNPRPOLRES +relevantVariable: dcid:dc/svpg/sdg/SG_PLN_PRPOLRES.001 +name: "Extent of use of country-owned results frameworks and planning tools by providers of development cooperation - data by provider" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGPLNPRVNDI +relevantVariable: dcid:dc/svpg/sdg/SG_PLN_PRVNDI.001 +name: "Proportion of project objectives of new development interventions drawn from country-led result frameworks - data by provider" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGPLNPRVRICTRY +relevantVariable: dcid:dc/svpg/sdg/SG_PLN_PRVRICTRY.001 +name: "Proportion of results indicators drawn from country-led results frameworks - data by provider" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGPLNPRVRIMON +relevantVariable: dcid:dc/svpg/sdg/SG_PLN_PRVRIMON.001 +name: "Proportion of results indicators which will be monitored using government sources and monitoring systems - data by provider" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGPLNRECNDI +relevantVariable: dcid:dc/svpg/sdg/SG_PLN_RECNDI.001 +name: "Proportion of project objectives in new development interventions drawn from country-led result frameworks - data by recipient" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGPLNRECRICTRY +relevantVariable: dcid:dc/svpg/sdg/SG_PLN_RECRICTRY.001 +name: "Proportion of results indicators drawn from country-led results frameworks - data by recipient" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGPLNRECRIMON +relevantVariable: dcid:dc/svpg/sdg/SG_PLN_RECRIMON.001 +name: "Proportion of results indicators which will be monitored using government sources and monitoring systems - data by recipient" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGPLNREPOLRES +relevantVariable: dcid:dc/svpg/sdg/SG_PLN_REPOLRES.001 +name: "Extent of use of country-owned results frameworks and planning tools by providers of development cooperation - data by recipient" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGREGBRTH +relevantVariable: dcid:dc/svpg/sdg/SG_REG_BRTH.001 +name: "Proportion of children under 5 years of age whose births have been registered with a civil authority by Age group" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGREGBRTH90 +relevantVariable: dcid:dc/svpg/sdg/SG_REG_BRTH90.001 +name: "Proportion of countries with birth registration data that are at least 90 percent complete" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGREGBRTH90N +relevantVariable: dcid:dc/svpg/sdg/SG_REG_BRTH90N.001 +name: "Countries with birth registration data that are at least 90 percent complete" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGREGCENSUS +relevantVariable: dcid:dc/svpg/sdg/SG_REG_CENSUS.001 +name: "Proportion of countries that have conducted at least one population and housing census in the last 10 years" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGREGCENSUSN +relevantVariable: dcid:dc/svpg/sdg/SG_REG_CENSUSN.001 +name: "Countries that have conducted at least one population and housing census in the last 10 years" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGREGDETH75 +relevantVariable: dcid:dc/svpg/sdg/SG_REG_DETH75.001 +name: "Proportion of countries with death registration data that are at least 75 percent complete" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGREGDETH75N +relevantVariable: dcid:dc/svpg/sdg/SG_REG_DETH75N.001 +name: "Countries with death registration data that are at least 75 percent complete" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGSCPCNTRY +relevantVariable: dcid:dc/svpg/sdg/SG_SCP_CNTRY.001 +name: "Countries with sustainable consumption and production (SCP) national action plans or SCP mainstreamed as a priority or target into national policies" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGSCPPOLINS +relevantVariable: dcid:dc/svpg/sdg/SG_SCP_POLINS.001 +name: "Countries with policy instrument for sustainable consumption and production by Policy instrument" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGSCPPROCN +relevantVariable: dcid:dc/svpg/sdg/SG_SCP_PROCN.001 +name: "Number of countries implementing sustainable public procurement policies and action plans by Level of implementation" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGSCPPROCNHS +relevantVariable: dcid:dc/svpg/sdg/SG_SCP_PROCN_HS.001, dcid:dc/svpg/sdg/SG_SCP_PROCN_HS.002, dcid:dc/svpg/sdg/SG_SCP_PROCN_HS.003, dcid:dc/svpg/sdg/SG_SCP_PROCN_HS.004, dcid:dc/svpg/sdg/SG_SCP_PROCN_HS.005, dcid:dc/svpg/sdg/SG_SCP_PROCN_HS.006, dcid:dc/svpg/sdg/SG_SCP_PROCN_HS.007, dcid:dc/svpg/sdg/SG_SCP_PROCN_HS.008, dcid:dc/svpg/sdg/SG_SCP_PROCN_HS.009, dcid:dc/svpg/sdg/SG_SCP_PROCN_HS.010, dcid:dc/svpg/sdg/SG_SCP_PROCN_HS.011, dcid:dc/svpg/sdg/SG_SCP_PROCN_HS.012, dcid:dc/svpg/sdg/SG_SCP_PROCN_HS.013, dcid:dc/svpg/sdg/SG_SCP_PROCN_HS.014, dcid:dc/svpg/sdg/SG_SCP_PROCN_HS.015, dcid:dc/svpg/sdg/SG_SCP_PROCN_HS.016, dcid:dc/svpg/sdg/SG_SCP_PROCN_HS.017, dcid:dc/svpg/sdg/SG_SCP_PROCN_HS.018, dcid:dc/svpg/sdg/SG_SCP_PROCN_HS.019, dcid:dc/svpg/sdg/SG_SCP_PROCN_HS.020, dcid:dc/svpg/sdg/SG_SCP_PROCN_HS.021, dcid:dc/svpg/sdg/SG_SCP_PROCN_HS.022, dcid:dc/svpg/sdg/SG_SCP_PROCN_HS.023, dcid:dc/svpg/sdg/SG_SCP_PROCN_HS.024, dcid:dc/svpg/sdg/SG_SCP_PROCN_HS.025, dcid:dc/svpg/sdg/SG_SCP_PROCN_HS.026, dcid:dc/svpg/sdg/SG_SCP_PROCN_HS.027, dcid:dc/svpg/sdg/SG_SCP_PROCN_HS.028, dcid:dc/svpg/sdg/SG_SCP_PROCN_HS.029, dcid:dc/svpg/sdg/SG_SCP_PROCN_HS.030 +name: "Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Artigas) by Level of implementation" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGSCPPROCNLS +relevantVariable: dcid:dc/svpg/sdg/SG_SCP_PROCN_LS.001, dcid:dc/svpg/sdg/SG_SCP_PROCN_LS.002, dcid:dc/svpg/sdg/SG_SCP_PROCN_LS.003, dcid:dc/svpg/sdg/SG_SCP_PROCN_LS.004, dcid:dc/svpg/sdg/SG_SCP_PROCN_LS.005, dcid:dc/svpg/sdg/SG_SCP_PROCN_LS.006, dcid:dc/svpg/sdg/SG_SCP_PROCN_LS.007, dcid:dc/svpg/sdg/SG_SCP_PROCN_LS.008, dcid:dc/svpg/sdg/SG_SCP_PROCN_LS.009 +name: "Number of countries implementing sustainable public procurement policies and action plans at lower subnational level by level of implementation (Ayuntamiento de Barcelona) by Level of implementation" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGSCPTOTLN +relevantVariable: dcid:dc/svpg/sdg/SG_SCP_TOTLN.001 +name: "Number of policies, instruments and mechanism in place for sustainable consumption and production" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGSTTCAPTY +relevantVariable: dcid:dc/svpg/sdg/SG_STT_CAPTY.001 +name: "Dollar value of all resources made available to strengthen statistical capacity in developing countries" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGSTTFPOS +relevantVariable: dcid:dc/svpg/sdg/SG_STT_FPOS.001 +name: "Countries with national statistical legislation that complies with the Fundamental Principles of Official Statistics" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGSTTNSDSFDDNR +relevantVariable: dcid:dc/svpg/sdg/SG_STT_NSDSFDDNR.001 +name: "Countries with national statistical plans with funding from donors" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGSTTNSDSFDGVT +relevantVariable: dcid:dc/svpg/sdg/SG_STT_NSDSFDGVT.001 +name: "Countries with national statistical plans with funding from government" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGSTTNSDSFDOTHR +relevantVariable: dcid:dc/svpg/sdg/SG_STT_NSDSFDOTHR.001 +name: "Countries with national statistical plans with funding from others" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGSTTNSDSFND +relevantVariable: dcid:dc/svpg/sdg/SG_STT_NSDSFND.001 +name: "Countries with national statistical plans that are fully funded" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGSTTNSDSIMPL +relevantVariable: dcid:dc/svpg/sdg/SG_STT_NSDSIMPL.001 +name: "Countries with national statistical plans that are under implementation" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGSTTODIN +relevantVariable: dcid:dc/svpg/sdg/SG_STT_ODIN.001 +name: "Open Data Inventory (ODIN) Coverage Index" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGXPDEDUC +relevantVariable: dcid:dc/svpg/sdg/SG_XPD_EDUC.001 +name: "Proportion of total government spending on essential services: education" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGXPDESSRV +relevantVariable: dcid:dc/svpg/sdg/SG_XPD_ESSRV.001 +name: "Proportion of total government spending on essential services" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGXPDHLTH +relevantVariable: dcid:dc/svpg/sdg/SG_XPD_HLTH.001 +name: "Proportion of total government spending on essential services: health" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSGXPDPROT +relevantVariable: dcid:dc/svpg/sdg/SG_XPD_PROT.001 +name: "Proportion of total government spending on essential services: social protection" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHAAPASMORT +relevantVariable: dcid:dc/svpg/sdg/SH_AAP_ASMORT.001 +name: "Age-standardized mortality rate attributed to ambient air pollution" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHACSDTP3 +relevantVariable: dcid:dc/svpg/sdg/SH_ACS_DTP3.001 +name: "Proportion of the target population who received 3 doses of diphtheria-tetanus-pertussis (DTP3) vaccine" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHACSHPV +relevantVariable: dcid:dc/svpg/sdg/SH_ACS_HPV.001 +name: "Proportion of the target population who received the final dose of human papillomavirus (HPV) vaccine" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHACSMCV2 +relevantVariable: dcid:dc/svpg/sdg/SH_ACS_MCV2.001 +name: "Proportion of the target population who received measles-containing-vaccine second-dose (MCV2)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHACSPCV3 +relevantVariable: dcid:dc/svpg/sdg/SH_ACS_PCV3.001 +name: "Proportion of the target population who received a 3rd dose of pneumococcal conjugate (PCV3) vaccine" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHACSUNHC +relevantVariable: dcid:dc/svpg/sdg/SH_ACS_UNHC.001 +name: "Universal health coverage (UHC) service coverage index" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHALCCONSPT +relevantVariable: dcid:dc/svpg/sdg/SH_ALC_CONSPT.001, dcid:dc/svpg/sdg/SH_ALC_CONSPT.002 +name: "Alcohol consumption per capita among individuals aged 15 years and older within a calendar year" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHBLDECOLI +relevantVariable: dcid:dc/svpg/sdg/SH_BLD_ECOLI.001 +name: "Percentage of bloodstream infection due to Escherichia coli resistant to 3rd-generation cephalosporin (e.g., ESBL- E. coli) among patients seeking care and whose blood sample is taken and tested" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHBLDMRSA +relevantVariable: dcid:dc/svpg/sdg/SH_BLD_MRSA.001 +name: "Percentage of bloodstream infection due to methicillin-resistant Staphylococcus aureus (MRSA) among patients seeking care and whose blood sample is taken and tested" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHDTHNCD +relevantVariable: dcid:dc/svpg/sdg/SH_DTH_NCD.001, dcid:dc/svpg/sdg/SH_DTH_NCD.002, dcid:dc/svpg/sdg/SH_DTH_NCD.003 +name: "Number of deaths attributed to non-communicable diseases by Disease" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHDTHNCOM +relevantVariable: dcid:dc/svpg/sdg/SH_DTH_NCOM.002 +name: "Mortality rate attributed to cardiovascular disease, cancer, diabetes or chronic respiratory disease (probability) (30 to 70 years old) by Sex" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHDYNIMRT +relevantVariable: dcid:dc/svpg/sdg/SH_DYN_IMRT.002 +name: "Infant mortality rate (under 1 year old) by Sex" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHDYNIMRTN +relevantVariable: dcid:dc/svpg/sdg/SH_DYN_IMRTN.002 +name: "Infant deaths (under 1 year old) by Sex" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHDYNMORT +relevantVariable: dcid:dc/svpg/sdg/SH_DYN_MORT.002 +name: "Under-five mortality rate (under 5 years old) by Sex" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHDYNMORTN +relevantVariable: dcid:dc/svpg/sdg/SH_DYN_MORTN.002 +name: "Under-five deaths (under 5 years old) by Sex" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHDYNNMRT +relevantVariable: dcid:dc/svpg/sdg/SH_DYN_NMRT.001 +name: "Neonatal mortality rate" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHDYNNMRTN +relevantVariable: dcid:dc/svpg/sdg/SH_DYN_NMRTN.001 +name: "Neonatal deaths" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHFPLINFM +relevantVariable: dcid:dc/svpg/sdg/SH_FPL_INFM.001 +name: "Proportion of women who make their own informed decisions regarding sexual relations, contraceptive use and reproductive health care (15 to 49 years old)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHFPLINFMCU +relevantVariable: dcid:dc/svpg/sdg/SH_FPL_INFMCU.001 +name: "Proportion of women who make their own informed decisions regarding contraceptive use (15 to 49 years old)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHFPLINFMRH +relevantVariable: dcid:dc/svpg/sdg/SH_FPL_INFMRH.001 +name: "Proportion of women who make their own informed decisions regarding reproductive health care (15 to 49 years old)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHFPLINFMSR +relevantVariable: dcid:dc/svpg/sdg/SH_FPL_INFMSR.001 +name: "Proportion of women who make their own informed decisions regarding sexual relations (15 to 49 years old)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHFPLMTMM +relevantVariable: dcid:dc/svpg/sdg/SH_FPL_MTMM.001 +name: "Proportion of women of reproductive age (aged 15-49 years) who have their need for family planning satisfied with modern methods" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHH2OSAFE +relevantVariable: dcid:dc/svpg/sdg/SH_H2O_SAFE.001, dcid:dc/svpg/sdg/SH_H2O_SAFE.002 +name: "Proportion of population using safely managed drinking water services" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHHAPASMORT +relevantVariable: dcid:dc/svpg/sdg/SH_HAP_ASMORT.001 +name: "Age-standardized mortality rate attributed to household air pollution" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHHAPHBSAG +relevantVariable: dcid:dc/svpg/sdg/SH_HAP_HBSAG.001 +name: "Prevalence of hepatitis B surface antigen (HBsAg) (under 5 years old)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHHIVINCD +relevantVariable: dcid:dc/svpg/sdg/SH_HIV_INCD.001, dcid:dc/svpg/sdg/SH_HIV_INCD.002, dcid:dc/svpg/sdg/SH_HIV_INCD.003, dcid:dc/svpg/sdg/SH_HIV_INCD.004, dcid:dc/svpg/sdg/SH_HIV_INCD.005, dcid:dc/svpg/sdg/SH_HIV_INCD.006 +name: "Number of new HIV infections per 1, 000 uninfected population" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHHLFEMED +relevantVariable: dcid:dc/svpg/sdg/SH_HLF_EMED.001 +name: "Proportion of health facilities that have a core set of relevant essential medicines available and affordable on a sustainable basis" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHIHRCAPS +relevantVariable: dcid:dc/svpg/sdg/SH_IHR_CAPS.001, dcid:dc/svpg/sdg/SH_IHR_CAPS.002, dcid:dc/svpg/sdg/SH_IHR_CAPS.003, dcid:dc/svpg/sdg/SH_IHR_CAPS.004 +name: "International Health Regulations (IHR) capacity" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHLGRACSRHE +relevantVariable: dcid:dc/svpg/sdg/SH_LGR_ACSRHE.001 +name: "Extent to which countries have 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" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHLGRACSRHEC1 +relevantVariable: dcid:dc/svpg/sdg/SH_LGR_ACSRHEC1.001 +name: "Extent to which countries have 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 (maternity care component)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHLGRACSRHEC10 +relevantVariable: dcid:dc/svpg/sdg/SH_LGR_ACSRHEC10.001 +name: "Extent to which countries have 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 (HIV testing and counsellilng component)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHLGRACSRHEC11 +relevantVariable: dcid:dc/svpg/sdg/SH_LGR_ACSRHEC11.001 +name: "Extent to which countries have 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 (HIV treatment and care component)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHLGRACSRHEC12 +relevantVariable: dcid:dc/svpg/sdg/SH_LGR_ACSRHEC12.001 +name: "Extent to which countries have 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 (HIV Confidentiality component)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHLGRACSRHEC13 +relevantVariable: dcid:dc/svpg/sdg/SH_LGR_ACSRHEC13.001 +name: "Extent to which countries have 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 (HPV Vaccine component)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHLGRACSRHEC2 +relevantVariable: dcid:dc/svpg/sdg/SH_LGR_ACSRHEC2.001 +name: "Extent to which countries have 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 (life-saving commodities component)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHLGRACSRHEC3 +relevantVariable: dcid:dc/svpg/sdg/SH_LGR_ACSRHEC3.001 +name: "Extent to which countries have 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 (abortion component)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHLGRACSRHEC4 +relevantVariable: dcid:dc/svpg/sdg/SH_LGR_ACSRHEC4.001 +name: "Extent to which countries have 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 (post-abortion care component)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHLGRACSRHEC5 +relevantVariable: dcid:dc/svpg/sdg/SH_LGR_ACSRHEC5.001 +name: "Extent to which countries have 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 (contraceptive services component)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHLGRACSRHEC6 +relevantVariable: dcid:dc/svpg/sdg/SH_LGR_ACSRHEC6.001 +name: "Extent to which countries have 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 (consent for contraceptive services component)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHLGRACSRHEC7 +relevantVariable: dcid:dc/svpg/sdg/SH_LGR_ACSRHEC7.001 +name: "Extent to which countries have 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 (emergency contraception component)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHLGRACSRHEC8 +relevantVariable: dcid:dc/svpg/sdg/SH_LGR_ACSRHEC8.001 +name: "Extent to which countries have 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 (comprehensive sexuality education curriculum laws component)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHLGRACSRHEC9 +relevantVariable: dcid:dc/svpg/sdg/SH_LGR_ACSRHEC9.001 +name: "Extent to which countries have 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 (comprehensive sexuality education curriculum topics component)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHLGRACSRHES1 +relevantVariable: dcid:dc/svpg/sdg/SH_LGR_ACSRHES1.001 +name: "Extent to which countries have 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 (maternity care section)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHLGRACSRHES2 +relevantVariable: dcid:dc/svpg/sdg/SH_LGR_ACSRHES2.001 +name: "Extent to which countries have 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 (contraception and family planning section)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHLGRACSRHES3 +relevantVariable: dcid:dc/svpg/sdg/SH_LGR_ACSRHES3.001 +name: "Extent to which countries have 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 (comprehensive sexuality education and information section)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHLGRACSRHES4 +relevantVariable: dcid:dc/svpg/sdg/SH_LGR_ACSRHES4.001 +name: "Extent to which countries have 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 (HIV and HPV)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHMEDDEN +relevantVariable: dcid:dc/svpg/sdg/SH_MED_DEN.001 +name: "Health worker density by Professionals (ISCO08 - 2)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHMEDHWRKDIS +relevantVariable: dcid:dc/svpg/sdg/SH_MED_HWRKDIS.001, dcid:dc/svpg/sdg/SH_MED_HWRKDIS.002 +name: "Health worker distribution (Female) by Professionals (ISCO08 - 2)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHPRVSMOK +relevantVariable: dcid:dc/svpg/sdg/SH_PRV_SMOK.001, dcid:dc/svpg/sdg/SH_PRV_SMOK.002 +name: "Age-standardized prevalence of current tobacco use among persons aged 15 years and older" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHSANDEFECT +relevantVariable: dcid:dc/svpg/sdg/SH_SAN_DEFECT.001, dcid:dc/svpg/sdg/SH_SAN_DEFECT.002 +name: "Proportion of population practicing open defecation" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHSANHNDWSH +relevantVariable: dcid:dc/svpg/sdg/SH_SAN_HNDWSH.001, dcid:dc/svpg/sdg/SH_SAN_HNDWSH.002 +name: "Proportion of population with basic handwashing facilities on premises" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHSANSAFE +relevantVariable: dcid:dc/svpg/sdg/SH_SAN_SAFE.001, dcid:dc/svpg/sdg/SH_SAN_SAFE.002 +name: "Proportion of population using safely managed sanitation services" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHSTAANEM +relevantVariable: dcid:dc/svpg/sdg/SH_STA_ANEM.001 +name: "Proportion of women aged 15-49 years with anaemia" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHSTAANEMNPRG +relevantVariable: dcid:dc/svpg/sdg/SH_STA_ANEM_NPRG.001 +name: "Proportion of non-pregnant women aged 15-49 years with anaemia" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHSTAANEMPREG +relevantVariable: dcid:dc/svpg/sdg/SH_STA_ANEM_PREG.001 +name: "Proportion of women aged 15-49 years with anaemia, pregnant" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHSTAASAIRP +relevantVariable: dcid:dc/svpg/sdg/SH_STA_ASAIRP.001 +name: "Age-standardized mortality rate attributed to household and ambient air pollution" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHSTABRTC +relevantVariable: dcid:dc/svpg/sdg/SH_STA_BRTC.001 +name: "Proportion of births attended by skilled health personnel" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHSTAFGMS +relevantVariable: dcid:dc/svpg/sdg/SH_STA_FGMS.001 +name: "Proportion of girls and women aged 15-49 years who have undergone female genital mutilation by Age group" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHSTAMALR +relevantVariable: dcid:dc/svpg/sdg/SH_STA_MALR.001 +name: "Malaria incidence per 1, 000 population at risk" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHSTAMORT +relevantVariable: dcid:dc/svpg/sdg/SH_STA_MORT.001 +name: "Maternal mortality ratio" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHSTAPOISN +relevantVariable: dcid:dc/svpg/sdg/SH_STA_POISN.001, dcid:dc/svpg/sdg/SH_STA_POISN.002 +name: "Mortality rate attributed to unintentional poisonings" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHSTASCIDE +relevantVariable: dcid:dc/svpg/sdg/SH_STA_SCIDE.001, dcid:dc/svpg/sdg/SH_STA_SCIDE.002 +name: "Suicide mortality rate" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHSTASCIDEN +relevantVariable: dcid:dc/svpg/sdg/SH_STA_SCIDEN.001, dcid:dc/svpg/sdg/SH_STA_SCIDEN.002 +name: "Number of deaths attributed to suicide" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHSTASTNT +relevantVariable: dcid:dc/svpg/sdg/SH_STA_STNT.001 +name: "Proportion of children moderately or severely stunted" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHSTASTNTN +relevantVariable: dcid:dc/svpg/sdg/SH_STA_STNTN.001 +name: "Children moderately or severely stunted" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHSTATRAF +relevantVariable: dcid:dc/svpg/sdg/SH_STA_TRAF.001 +name: "Death rate due to road traffic injuries" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHSTATRAFN +relevantVariable: dcid:dc/svpg/sdg/SH_STA_TRAFN.001 +name: "Number of deaths rate due to road traffic injuries" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHSTAWASHARI +relevantVariable: dcid:dc/svpg/sdg/SH_STA_WASHARI.001 +name: "Mortality rate attributed to unsafe water, unsafe sanitation and lack of hygiene from diarrhoea, intestinal nematode infections, malnutrition and acute respiratory infections" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHSTAWAST +relevantVariable: dcid:dc/svpg/sdg/SH_STA_WAST.001 +name: "Proportion of children moderately or severely wasted" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHSTAWASTN +relevantVariable: dcid:dc/svpg/sdg/SH_STA_WASTN.001 +name: "Children moderately or severely wasted" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHSUDALCOL +relevantVariable: dcid:dc/svpg/sdg/SH_SUD_ALCOL.002 +name: "Alcohol use disorders, 12-month prevalence (15 years old and over) by Sex" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHSUDTREAT +relevantVariable: dcid:dc/svpg/sdg/SH_SUD_TREAT.001, dcid:dc/svpg/sdg/SH_SUD_TREAT.002, dcid:dc/svpg/sdg/SH_SUD_TREAT.003, dcid:dc/svpg/sdg/SH_SUD_TREAT.004, dcid:dc/svpg/sdg/SH_SUD_TREAT.005 +name: "Coverage of treatment interventions (pharmacological, psychosocial and rehabilitation and aftercare services) for substance use disorders by Type of substance" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHTBSINCD +relevantVariable: dcid:dc/svpg/sdg/SH_TBS_INCD.001 +name: "Tuberculosis incidence" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHTRPINTVN +relevantVariable: dcid:dc/svpg/sdg/SH_TRP_INTVN.001 +name: "Number of people requiring interventions against neglected tropical diseases" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHXPDEARN10 +relevantVariable: dcid:dc/svpg/sdg/SH_XPD_EARN10.001 +name: "Proportion of population with large household expenditures on health (greater than 10%) as a share of total household expenditure or income" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSHXPDEARN25 +relevantVariable: dcid:dc/svpg/sdg/SH_XPD_EARN25.001 +name: "Proportion of population with large household expenditures on health (greater than 25%) as a share of total household expenditure or income" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSIAGRLSFP +relevantVariable: dcid:dc/svpg/sdg/SI_AGR_LSFP.001, dcid:dc/svpg/sdg/SI_AGR_LSFP.002 +name: "Average income of large-scale food producers, at purchasing-power parity rates" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSIAGRSSFP +relevantVariable: dcid:dc/svpg/sdg/SI_AGR_SSFP.001, dcid:dc/svpg/sdg/SI_AGR_SSFP.002 +name: "Average income of small-scale food producers, at purchasing-power parity rates" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSICOVBENFTS +relevantVariable: dcid:dc/svpg/sdg/SI_COV_BENFTS.001, dcid:dc/svpg/sdg/SI_COV_BENFTS.002 +name: "ILO Proportion of population covered by at least one social protection benefit" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSICOVCHLD +relevantVariable: dcid:dc/svpg/sdg/SI_COV_CHLD.001, dcid:dc/svpg/sdg/SI_COV_CHLD.003 +name: "ILO Proportion of children/households receiving child/family cash benefit by Sex" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSICOVDISAB +relevantVariable: dcid:dc/svpg/sdg/SI_COV_DISAB.001, dcid:dc/svpg/sdg/SI_COV_DISAB.002 +name: "ILO Proportion of population with severe disabilities receiving disability cash benefit" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSICOVLMKT +relevantVariable: dcid:dc/svpg/sdg/SI_COV_LMKT.001, dcid:dc/svpg/sdg/SI_COV_LMKT.002 +name: "World Bank Proportion of population covered by labour market programs" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSICOVMATNL +relevantVariable: dcid:dc/svpg/sdg/SI_COV_MATNL.002 +name: "ILO Proportion of mothers with newborns receiving maternity cash benefit by Age group" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSICOVPENSN +relevantVariable: dcid:dc/svpg/sdg/SI_COV_PENSN.001, dcid:dc/svpg/sdg/SI_COV_PENSN.003, dcid:dc/svpg/sdg/SI_COV_PENSN.004 +name: "ILO Proportion of population above statutory pensionable age receiving a pension, by Age group" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSICOVPOOR +relevantVariable: dcid:dc/svpg/sdg/SI_COV_POOR.001, dcid:dc/svpg/sdg/SI_COV_POOR.002 +name: "ILO Proportion of poor population receiving social assistance cash benefit" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSICOVSOCAST +relevantVariable: dcid:dc/svpg/sdg/SI_COV_SOCAST.001, dcid:dc/svpg/sdg/SI_COV_SOCAST.002 +name: "World Bank Proportion of population covered by social assistance programs" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSICOVSOCINS +relevantVariable: dcid:dc/svpg/sdg/SI_COV_SOCINS.001, dcid:dc/svpg/sdg/SI_COV_SOCINS.002 +name: "World Bank Proportion of population covered by social insurance programs" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSICOVUEMP +relevantVariable: dcid:dc/svpg/sdg/SI_COV_UEMP.002, dcid:dc/svpg/sdg/SI_COV_UEMP.003, dcid:dc/svpg/sdg/SI_COV_UEMP.004 +name: "ILO Proportion of unemployed persons receiving unemployment cash benefit by Age group" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSICOVVULN +relevantVariable: dcid:dc/svpg/sdg/SI_COV_VULN.002 +name: "ILO Proportion of vulnerable population receiving social assistance cash benefit by Sex" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSICOVWKINJRY +relevantVariable: dcid:dc/svpg/sdg/SI_COV_WKINJRY.001, dcid:dc/svpg/sdg/SI_COV_WKINJRY.002 +name: "ILO Proportion of employed population covered in the event of work injury by Sex" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSIDSTFISP +relevantVariable: dcid:dc/svpg/sdg/SI_DST_FISP.001 +name: "Redistributive impact of fiscal policy, Gini index by Fiscal intervention stage" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSIHEITOTL +relevantVariable: dcid:dc/svpg/sdg/SI_HEI_TOTL.001, dcid:dc/svpg/sdg/SI_HEI_TOTL.002 +name: "Growth rates of household expenditure or income per capita" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSIPOV50MI +relevantVariable: dcid:dc/svpg/sdg/SI_POV_50MI.001 +name: "Proportion of people living below 50 percent of median income by Quantile" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSIPOVDAY1 +relevantVariable: dcid:dc/svpg/sdg/SI_POV_DAY1.001, dcid:dc/svpg/sdg/SI_POV_DAY1.002, dcid:dc/svpg/sdg/SI_POV_DAY1.003, dcid:dc/svpg/sdg/SI_POV_DAY1.004 +name: "Proportion of population below international poverty line" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSIPOVEMP1 +relevantVariable: dcid:dc/svpg/sdg/SI_POV_EMP1.001, dcid:dc/svpg/sdg/SI_POV_EMP1.002, dcid:dc/svpg/sdg/SI_POV_EMP1.003, dcid:dc/svpg/sdg/SI_POV_EMP1.004 +name: "Employed population below international poverty line by Age group" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSIPOVNAHC +relevantVariable: dcid:dc/svpg/sdg/SI_POV_NAHC.001, dcid:dc/svpg/sdg/SI_POV_NAHC.002 +name: "Proportion of population living below the national poverty line" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSIRMTCOST +relevantVariable: dcid:dc/svpg/sdg/SI_RMT_COST.001 +name: "Average remittance costs of sending $200 to a receiving country as a proportion of the amount remitted" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSIRMTCOSTBC +relevantVariable: dcid:dc/svpg/sdg/SI_RMT_COST_BC.001, dcid:dc/svpg/sdg/SI_RMT_COST_BC.002 +name: "Average remittance costs of sending $200 in a corridor as a proportion of the amount remitted" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSIRMTCOSTSC +relevantVariable: dcid:dc/svpg/sdg/SI_RMT_COST_SC.001, dcid:dc/svpg/sdg/SI_RMT_COST_SC.002 +name: "SmaRT average remittance costs of sending $200 in a corridor as a proportion of the amount remitted" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSIRMTCOSTSND +relevantVariable: dcid:dc/svpg/sdg/SI_RMT_COST_SND.001 +name: "Average remittance costs of sending $200 for a sending country as a proportion of the amount remitted" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSLCPAYEMP +relevantVariable: dcid:dc/svpg/sdg/SL_CPA_YEMP.001 +name: "Existence of a developed and operationalized national strategy for youth employment, as a distinct strategy or as part of a national employment strategy" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSLDOMTSPD +relevantVariable: dcid:dc/svpg/sdg/SL_DOM_TSPD.001, dcid:dc/svpg/sdg/SL_DOM_TSPD.002, dcid:dc/svpg/sdg/SL_DOM_TSPD.003, dcid:dc/svpg/sdg/SL_DOM_TSPD.004, dcid:dc/svpg/sdg/SL_DOM_TSPD.005, dcid:dc/svpg/sdg/SL_DOM_TSPD.006, dcid:dc/svpg/sdg/SL_DOM_TSPD.007, dcid:dc/svpg/sdg/SL_DOM_TSPD.008, dcid:dc/svpg/sdg/SL_DOM_TSPD.009, dcid:dc/svpg/sdg/SL_DOM_TSPD.010, dcid:dc/svpg/sdg/SL_DOM_TSPD.011, dcid:dc/svpg/sdg/SL_DOM_TSPD.012, dcid:dc/svpg/sdg/SL_DOM_TSPD.013, dcid:dc/svpg/sdg/SL_DOM_TSPD.014, dcid:dc/svpg/sdg/SL_DOM_TSPD.015, dcid:dc/svpg/sdg/SL_DOM_TSPD.016, dcid:dc/svpg/sdg/SL_DOM_TSPD.017, dcid:dc/svpg/sdg/SL_DOM_TSPD.018, dcid:dc/svpg/sdg/SL_DOM_TSPD.019, dcid:dc/svpg/sdg/SL_DOM_TSPD.020, dcid:dc/svpg/sdg/SL_DOM_TSPD.021, dcid:dc/svpg/sdg/SL_DOM_TSPD.022, dcid:dc/svpg/sdg/SL_DOM_TSPD.023, dcid:dc/svpg/sdg/SL_DOM_TSPD.024, dcid:dc/svpg/sdg/SL_DOM_TSPD.025, dcid:dc/svpg/sdg/SL_DOM_TSPD.026, dcid:dc/svpg/sdg/SL_DOM_TSPD.027, dcid:dc/svpg/sdg/SL_DOM_TSPD.028, dcid:dc/svpg/sdg/SL_DOM_TSPD.029, dcid:dc/svpg/sdg/SL_DOM_TSPD.030, dcid:dc/svpg/sdg/SL_DOM_TSPD.031, dcid:dc/svpg/sdg/SL_DOM_TSPD.032, dcid:dc/svpg/sdg/SL_DOM_TSPD.033, dcid:dc/svpg/sdg/SL_DOM_TSPD.034, dcid:dc/svpg/sdg/SL_DOM_TSPD.035, dcid:dc/svpg/sdg/SL_DOM_TSPD.036, dcid:dc/svpg/sdg/SL_DOM_TSPD.037, dcid:dc/svpg/sdg/SL_DOM_TSPD.038, dcid:dc/svpg/sdg/SL_DOM_TSPD.039, dcid:dc/svpg/sdg/SL_DOM_TSPD.040, dcid:dc/svpg/sdg/SL_DOM_TSPD.041, dcid:dc/svpg/sdg/SL_DOM_TSPD.042, dcid:dc/svpg/sdg/SL_DOM_TSPD.043, dcid:dc/svpg/sdg/SL_DOM_TSPD.044, dcid:dc/svpg/sdg/SL_DOM_TSPD.045, dcid:dc/svpg/sdg/SL_DOM_TSPD.046, dcid:dc/svpg/sdg/SL_DOM_TSPD.047, dcid:dc/svpg/sdg/SL_DOM_TSPD.048, dcid:dc/svpg/sdg/SL_DOM_TSPD.049, dcid:dc/svpg/sdg/SL_DOM_TSPD.050, dcid:dc/svpg/sdg/SL_DOM_TSPD.051, dcid:dc/svpg/sdg/SL_DOM_TSPD.052, dcid:dc/svpg/sdg/SL_DOM_TSPD.053, dcid:dc/svpg/sdg/SL_DOM_TSPD.054, dcid:dc/svpg/sdg/SL_DOM_TSPD.055, dcid:dc/svpg/sdg/SL_DOM_TSPD.056, dcid:dc/svpg/sdg/SL_DOM_TSPD.057, dcid:dc/svpg/sdg/SL_DOM_TSPD.058, dcid:dc/svpg/sdg/SL_DOM_TSPD.059, dcid:dc/svpg/sdg/SL_DOM_TSPD.060, dcid:dc/svpg/sdg/SL_DOM_TSPD.061 +name: "Proportion of time spent on unpaid domestic chores and care work (10 to 14 years old) by Sex" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSLDOMTSPDCW +relevantVariable: dcid:dc/svpg/sdg/SL_DOM_TSPDCW.001, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.002, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.003, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.004, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.005, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.006, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.007, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.008, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.009, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.010, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.011, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.012, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.013, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.014, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.015, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.016, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.017, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.018, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.019, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.020, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.021, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.022, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.023, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.024, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.025, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.026, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.027, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.028, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.029, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.030, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.031, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.032, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.033, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.034, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.035, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.036, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.037, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.038, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.039, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.040, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.041, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.042, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.043, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.044, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.045, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.046, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.047, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.048, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.049, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.050, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.051, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.052, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.053, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.054, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.055, dcid:dc/svpg/sdg/SL_DOM_TSPDCW.056 +name: "Proportion of time spent on unpaid care work (10 to 14 years old) by Sex" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSLDOMTSPDDC +relevantVariable: dcid:dc/svpg/sdg/SL_DOM_TSPDDC.001, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.002, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.003, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.004, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.005, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.006, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.007, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.008, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.009, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.010, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.011, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.012, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.013, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.014, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.015, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.016, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.017, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.018, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.019, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.020, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.021, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.022, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.023, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.024, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.025, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.026, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.027, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.028, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.029, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.030, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.031, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.032, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.033, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.034, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.035, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.036, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.037, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.038, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.039, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.040, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.041, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.042, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.043, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.044, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.045, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.046, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.047, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.048, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.049, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.050, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.051, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.052, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.053, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.054, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.055, dcid:dc/svpg/sdg/SL_DOM_TSPDDC.056 +name: "Proportion of time spent on unpaid domestic chores (10 to 14 years old) by Sex" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSLEMPEARN +relevantVariable: dcid:dc/svpg/sdg/SL_EMP_EARN.001, dcid:dc/svpg/sdg/SL_EMP_EARN.002, dcid:dc/svpg/sdg/SL_EMP_EARN.003, dcid:dc/svpg/sdg/SL_EMP_EARN.004, dcid:dc/svpg/sdg/SL_EMP_EARN.005, dcid:dc/svpg/sdg/SL_EMP_EARN.006, dcid:dc/svpg/sdg/SL_EMP_EARN.007, dcid:dc/svpg/sdg/SL_EMP_EARN.008 +name: "Average hourly earnings of employees in local currency by Age group" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSLEMPFTLINJUR +relevantVariable: dcid:dc/svpg/sdg/SL_EMP_FTLINJUR.001, dcid:dc/svpg/sdg/SL_EMP_FTLINJUR.002, dcid:dc/svpg/sdg/SL_EMP_FTLINJUR.003, dcid:dc/svpg/sdg/SL_EMP_FTLINJUR.004, dcid:dc/svpg/sdg/SL_EMP_FTLINJUR.005 +name: "Fatal occupational injuries among employees" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSLEMPGTOTL +relevantVariable: dcid:dc/svpg/sdg/SL_EMP_GTOTL.001 +name: "Labour share of GDP by Age group" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSLEMPINJUR +relevantVariable: dcid:dc/svpg/sdg/SL_EMP_INJUR.001, dcid:dc/svpg/sdg/SL_EMP_INJUR.002, dcid:dc/svpg/sdg/SL_EMP_INJUR.003, dcid:dc/svpg/sdg/SL_EMP_INJUR.004, dcid:dc/svpg/sdg/SL_EMP_INJUR.005 +name: "Non-fatal occupational injuries among employees" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSLEMPPCAP +relevantVariable: dcid:dc/svpg/sdg/SL_EMP_PCAP.001 +name: "Annual growth rate of real GDP per employed person (15 years old and over)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSLEMPRCOSTMO +relevantVariable: dcid:dc/svpg/sdg/SL_EMP_RCOST_MO.001, dcid:dc/svpg/sdg/SL_EMP_RCOST_MO.002, dcid:dc/svpg/sdg/SL_EMP_RCOST_MO.003 +name: "Migrant recruitment costs (number of months of earnings) by Sex" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSLISVIFEM +relevantVariable: dcid:dc/svpg/sdg/SL_ISV_IFEM.001, dcid:dc/svpg/sdg/SL_ISV_IFEM.002, dcid:dc/svpg/sdg/SL_ISV_IFEM.004, dcid:dc/svpg/sdg/SL_ISV_IFEM.005, dcid:dc/svpg/sdg/SL_ISV_IFEM.008 +name: "Proportion of informal employment, previous definition (15 years old and over)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSLISVIFEM19ICLS +relevantVariable: dcid:dc/svpg/sdg/SL_ISV_IFEM_19ICLS.001, dcid:dc/svpg/sdg/SL_ISV_IFEM_19ICLS.002, dcid:dc/svpg/sdg/SL_ISV_IFEM_19ICLS.004, dcid:dc/svpg/sdg/SL_ISV_IFEM_19ICLS.005, dcid:dc/svpg/sdg/SL_ISV_IFEM_19ICLS.007 +name: "Proportion of informal employment, current definition (15 years old and over)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSLLBRNTLCPL +relevantVariable: dcid:dc/svpg/sdg/SL_LBR_NTLCPL.001 +name: "Level of national compliance with labour rights (freedom of association and collective bargaining) based on International Labour Organization (ILO) textual sources and national legislation" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSLTLFCHLDEA +relevantVariable: dcid:dc/svpg/sdg/SL_TLF_CHLDEA.001, dcid:dc/svpg/sdg/SL_TLF_CHLDEA.002, dcid:dc/svpg/sdg/SL_TLF_CHLDEA.003, dcid:dc/svpg/sdg/SL_TLF_CHLDEA.004, dcid:dc/svpg/sdg/SL_TLF_CHLDEA.005, dcid:dc/svpg/sdg/SL_TLF_CHLDEA.006 +name: "Proportion of children engaged in economic activity by Age group" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSLTLFCHLDEC +relevantVariable: dcid:dc/svpg/sdg/SL_TLF_CHLDEC.001, dcid:dc/svpg/sdg/SL_TLF_CHLDEC.002, dcid:dc/svpg/sdg/SL_TLF_CHLDEC.003, dcid:dc/svpg/sdg/SL_TLF_CHLDEC.004, dcid:dc/svpg/sdg/SL_TLF_CHLDEC.005, dcid:dc/svpg/sdg/SL_TLF_CHLDEC.006 +name: "Proportion of children engaged in economic activity and household chores by Age group" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSLTLFMANF +relevantVariable: dcid:dc/svpg/sdg/SL_TLF_MANF.001 +name: "Manufacturing employment as a proportion of total employment - previous definition" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSLTLFMANF19ICLS +relevantVariable: dcid:dc/svpg/sdg/SL_TLF_MANF_19ICLS.001 +name: "Manufacturing employment as a proportion of total employment - current definition" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSLTLFNEET +relevantVariable: dcid:dc/svpg/sdg/SL_TLF_NEET.001, dcid:dc/svpg/sdg/SL_TLF_NEET.002 +name: "Proportion of youth not in education, employment or training - previous definition by Age group" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSLTLFNEET19ICLS +relevantVariable: dcid:dc/svpg/sdg/SL_TLF_NEET_19ICLS.001, dcid:dc/svpg/sdg/SL_TLF_NEET_19ICLS.002 +name: "Proportion of youth not in education, employment or training - current definition by Age group" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSLTLFUEM +relevantVariable: dcid:dc/svpg/sdg/SL_TLF_UEM.001, dcid:dc/svpg/sdg/SL_TLF_UEM.002, dcid:dc/svpg/sdg/SL_TLF_UEM.003, dcid:dc/svpg/sdg/SL_TLF_UEM.004 +name: "Unemployment rate by sex and age - previous definition by Age group" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSLTLFUEMDIS +relevantVariable: dcid:dc/svpg/sdg/SL_TLF_UEMDIS.001, dcid:dc/svpg/sdg/SL_TLF_UEMDIS.002, dcid:dc/svpg/sdg/SL_TLF_UEMDIS.003, dcid:dc/svpg/sdg/SL_TLF_UEMDIS.004, dcid:dc/svpg/sdg/SL_TLF_UEMDIS.005 +name: "Unemployment rate by sex and disability - previous definition (15 years old and over)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSLTLFUEMDIS19ICLS +relevantVariable: dcid:dc/svpg/sdg/SL_TLF_UEMDIS_19ICLS.001, dcid:dc/svpg/sdg/SL_TLF_UEMDIS_19ICLS.002, dcid:dc/svpg/sdg/SL_TLF_UEMDIS_19ICLS.003, dcid:dc/svpg/sdg/SL_TLF_UEMDIS_19ICLS.004, dcid:dc/svpg/sdg/SL_TLF_UEMDIS_19ICLS.005 +name: "Unemployment rate by sex and disability - current definition (15 years old and over)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSLTLFUEM19ICLS +relevantVariable: dcid:dc/svpg/sdg/SL_TLF_UEM_19ICLS.001, dcid:dc/svpg/sdg/SL_TLF_UEM_19ICLS.002, dcid:dc/svpg/sdg/SL_TLF_UEM_19ICLS.003, dcid:dc/svpg/sdg/SL_TLF_UEM_19ICLS.004 +name: "Unemployment rate by sex and age - current definition by Age group" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSMDTHMIGR +relevantVariable: dcid:dc/svpg/sdg/SM_DTH_MIGR.001 +name: "Total deaths and disappearances recorded during migration" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSMPOPREFGOR +relevantVariable: dcid:dc/svpg/sdg/SM_POP_REFG_OR.001 +name: "Number of refugees per 100, 000 population" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSNITKDEFC +relevantVariable: dcid:dc/svpg/sdg/SN_ITK_DEFC.001 +name: "Prevalence of undernourishment" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSNITKDEFCN +relevantVariable: dcid:dc/svpg/sdg/SN_ITK_DEFCN.001 +name: "Number of undernourished people" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSNSTAOVWGT +relevantVariable: dcid:dc/svpg/sdg/SN_STA_OVWGT.001 +name: "Proportion of children under 5 years old moderately or severely overweight" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSNSTAOVWGTN +relevantVariable: dcid:dc/svpg/sdg/SN_STA_OVWGTN.001 +name: "Children under 5 years old moderately or severely overweight" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSPACSBSRVH2O +relevantVariable: dcid:dc/svpg/sdg/SP_ACS_BSRVH2O.001, dcid:dc/svpg/sdg/SP_ACS_BSRVH2O.002 +name: "Proportion of population using basic drinking water services" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSPACSBSRVSAN +relevantVariable: dcid:dc/svpg/sdg/SP_ACS_BSRVSAN.001, dcid:dc/svpg/sdg/SP_ACS_BSRVSAN.002 +name: "Proportion of population using basic sanitation services" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSPDISPRESOL +relevantVariable: dcid:dc/svpg/sdg/SP_DISP_RESOL.001, dcid:dc/svpg/sdg/SP_DISP_RESOL.002, dcid:dc/svpg/sdg/SP_DISP_RESOL.003 +name: "Proportion of the population who have experienced a dispute in the past two years who accessed a formal or informal dispute resolution mechanism" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSPDYNADKL +relevantVariable: dcid:dc/svpg/sdg/SP_DYN_ADKL.001 +name: "Adolescent birth rate" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSPDYNMRBF15 +relevantVariable: dcid:dc/svpg/sdg/SP_DYN_MRBF15.001 +name: "Proportion of women aged 20-24 years who were married or in a union before age 15" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSPDYNMRBF18 +relevantVariable: dcid:dc/svpg/sdg/SP_DYN_MRBF18.001 +name: "Proportion of women aged 20-24 years who were married or in a union before age 18" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSPGNPWNOWNS +relevantVariable: dcid:dc/svpg/sdg/SP_GNP_WNOWNS.001 +name: "Share of women among owners or rights-bearers of agricultural land" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSPLGLLNDAGSEC +relevantVariable: dcid:dc/svpg/sdg/SP_LGL_LNDAGSEC.001, dcid:dc/svpg/sdg/SP_LGL_LNDAGSEC.002 +name: "Proportion of total agricultural population with ownership or secure rights over agricultural land" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSPLGLLNDDOC +relevantVariable: dcid:dc/svpg/sdg/SP_LGL_LNDDOC.002 +name: "Proportion of people with legally recognized documentation of their rights to land out of total adult population by Sex" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSPLGLLNDSEC +relevantVariable: dcid:dc/svpg/sdg/SP_LGL_LNDSEC.001 +name: "Proportion of people who perceive their rights to land as secure out of total adult population" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSPLGLLNDSTR +relevantVariable: dcid:dc/svpg/sdg/SP_LGL_LNDSTR.002 +name: "Proportion of people with secure tenure rights to land out of total adult population by Sex" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSPPSROSATISGOV +relevantVariable: dcid:dc/svpg/sdg/SP_PSR_OSATIS_GOV.001, dcid:dc/svpg/sdg/SP_PSR_OSATIS_GOV.002, dcid:dc/svpg/sdg/SP_PSR_OSATIS_GOV.003, dcid:dc/svpg/sdg/SP_PSR_OSATIS_GOV.004, dcid:dc/svpg/sdg/SP_PSR_OSATIS_GOV.005, dcid:dc/svpg/sdg/SP_PSR_OSATIS_GOV.006 +name: "Proportion of population who say that overall they are satisfied with the quality of government services" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSPPSROSATISHLTH +relevantVariable: dcid:dc/svpg/sdg/SP_PSR_OSATIS_HLTH.001, dcid:dc/svpg/sdg/SP_PSR_OSATIS_HLTH.002, dcid:dc/svpg/sdg/SP_PSR_OSATIS_HLTH.003, dcid:dc/svpg/sdg/SP_PSR_OSATIS_HLTH.004, dcid:dc/svpg/sdg/SP_PSR_OSATIS_HLTH.005, dcid:dc/svpg/sdg/SP_PSR_OSATIS_HLTH.006 +name: "Proportion of population who say that overall they are satisfied with the quality of healthcare services" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSPPSROSATISPRM +relevantVariable: dcid:dc/svpg/sdg/SP_PSR_OSATIS_PRM.001, dcid:dc/svpg/sdg/SP_PSR_OSATIS_PRM.002, dcid:dc/svpg/sdg/SP_PSR_OSATIS_PRM.003, dcid:dc/svpg/sdg/SP_PSR_OSATIS_PRM.004, dcid:dc/svpg/sdg/SP_PSR_OSATIS_PRM.005, dcid:dc/svpg/sdg/SP_PSR_OSATIS_PRM.006 +name: "Proportion of population who say that overall they are satisfied with the quality of primary education services" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSPPSROSATISSEC +relevantVariable: dcid:dc/svpg/sdg/SP_PSR_OSATIS_SEC.001, dcid:dc/svpg/sdg/SP_PSR_OSATIS_SEC.002, dcid:dc/svpg/sdg/SP_PSR_OSATIS_SEC.003, dcid:dc/svpg/sdg/SP_PSR_OSATIS_SEC.004, dcid:dc/svpg/sdg/SP_PSR_OSATIS_SEC.005, dcid:dc/svpg/sdg/SP_PSR_OSATIS_SEC.006 +name: "Proportion of population who say that overall they are satisfied with the quality of secondary education services" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSPPSRSATISGOV +relevantVariable: dcid:dc/svpg/sdg/SP_PSR_SATIS_GOV.001, dcid:dc/svpg/sdg/SP_PSR_SATIS_GOV.002, dcid:dc/svpg/sdg/SP_PSR_SATIS_GOV.003, dcid:dc/svpg/sdg/SP_PSR_SATIS_GOV.004, dcid:dc/svpg/sdg/SP_PSR_SATIS_GOV.005, dcid:dc/svpg/sdg/SP_PSR_SATIS_GOV.006, dcid:dc/svpg/sdg/SP_PSR_SATIS_GOV.007, dcid:dc/svpg/sdg/SP_PSR_SATIS_GOV.008, dcid:dc/svpg/sdg/SP_PSR_SATIS_GOV.009, dcid:dc/svpg/sdg/SP_PSR_SATIS_GOV.010, dcid:dc/svpg/sdg/SP_PSR_SATIS_GOV.011, dcid:dc/svpg/sdg/SP_PSR_SATIS_GOV.012, dcid:dc/svpg/sdg/SP_PSR_SATIS_GOV.013, dcid:dc/svpg/sdg/SP_PSR_SATIS_GOV.014, dcid:dc/svpg/sdg/SP_PSR_SATIS_GOV.015, dcid:dc/svpg/sdg/SP_PSR_SATIS_GOV.016 +name: "Proportion of population satisfied with their last experience of government services (25 to 34 years old) by Service attribute" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSPPSRSATISHLTH +relevantVariable: dcid:dc/svpg/sdg/SP_PSR_SATIS_HLTH.001, dcid:dc/svpg/sdg/SP_PSR_SATIS_HLTH.002, dcid:dc/svpg/sdg/SP_PSR_SATIS_HLTH.003, dcid:dc/svpg/sdg/SP_PSR_SATIS_HLTH.004, dcid:dc/svpg/sdg/SP_PSR_SATIS_HLTH.005, dcid:dc/svpg/sdg/SP_PSR_SATIS_HLTH.006, dcid:dc/svpg/sdg/SP_PSR_SATIS_HLTH.007, dcid:dc/svpg/sdg/SP_PSR_SATIS_HLTH.008, dcid:dc/svpg/sdg/SP_PSR_SATIS_HLTH.009, dcid:dc/svpg/sdg/SP_PSR_SATIS_HLTH.010, dcid:dc/svpg/sdg/SP_PSR_SATIS_HLTH.011, dcid:dc/svpg/sdg/SP_PSR_SATIS_HLTH.012, dcid:dc/svpg/sdg/SP_PSR_SATIS_HLTH.013, dcid:dc/svpg/sdg/SP_PSR_SATIS_HLTH.014, dcid:dc/svpg/sdg/SP_PSR_SATIS_HLTH.015, dcid:dc/svpg/sdg/SP_PSR_SATIS_HLTH.016, dcid:dc/svpg/sdg/SP_PSR_SATIS_HLTH.017, dcid:dc/svpg/sdg/SP_PSR_SATIS_HLTH.018, dcid:dc/svpg/sdg/SP_PSR_SATIS_HLTH.019, dcid:dc/svpg/sdg/SP_PSR_SATIS_HLTH.020, dcid:dc/svpg/sdg/SP_PSR_SATIS_HLTH.021, dcid:dc/svpg/sdg/SP_PSR_SATIS_HLTH.022, dcid:dc/svpg/sdg/SP_PSR_SATIS_HLTH.023 +name: "Proportion of population satisfied with their last experience of public healthcare services (25 to 34 years old) by Service attribute" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSPPSRSATISPRM +relevantVariable: dcid:dc/svpg/sdg/SP_PSR_SATIS_PRM.001, dcid:dc/svpg/sdg/SP_PSR_SATIS_PRM.002, dcid:dc/svpg/sdg/SP_PSR_SATIS_PRM.003, dcid:dc/svpg/sdg/SP_PSR_SATIS_PRM.004, dcid:dc/svpg/sdg/SP_PSR_SATIS_PRM.005, dcid:dc/svpg/sdg/SP_PSR_SATIS_PRM.006, dcid:dc/svpg/sdg/SP_PSR_SATIS_PRM.007, dcid:dc/svpg/sdg/SP_PSR_SATIS_PRM.008, dcid:dc/svpg/sdg/SP_PSR_SATIS_PRM.009, dcid:dc/svpg/sdg/SP_PSR_SATIS_PRM.010, dcid:dc/svpg/sdg/SP_PSR_SATIS_PRM.011, dcid:dc/svpg/sdg/SP_PSR_SATIS_PRM.012, dcid:dc/svpg/sdg/SP_PSR_SATIS_PRM.013, dcid:dc/svpg/sdg/SP_PSR_SATIS_PRM.014, dcid:dc/svpg/sdg/SP_PSR_SATIS_PRM.015 +name: "Proportion of population satisfied with their last experience of public primary education services (25 to 34 years old) by Service attribute" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSPPSRSATISSEC +relevantVariable: dcid:dc/svpg/sdg/SP_PSR_SATIS_SEC.001, dcid:dc/svpg/sdg/SP_PSR_SATIS_SEC.002, dcid:dc/svpg/sdg/SP_PSR_SATIS_SEC.003, dcid:dc/svpg/sdg/SP_PSR_SATIS_SEC.004, dcid:dc/svpg/sdg/SP_PSR_SATIS_SEC.005, dcid:dc/svpg/sdg/SP_PSR_SATIS_SEC.006, dcid:dc/svpg/sdg/SP_PSR_SATIS_SEC.007, dcid:dc/svpg/sdg/SP_PSR_SATIS_SEC.008, dcid:dc/svpg/sdg/SP_PSR_SATIS_SEC.009, dcid:dc/svpg/sdg/SP_PSR_SATIS_SEC.010, dcid:dc/svpg/sdg/SP_PSR_SATIS_SEC.011, dcid:dc/svpg/sdg/SP_PSR_SATIS_SEC.012, dcid:dc/svpg/sdg/SP_PSR_SATIS_SEC.013, dcid:dc/svpg/sdg/SP_PSR_SATIS_SEC.014 +name: "Proportion of population satisfied with their last experience of public secondary education services (25 to 34 years old) by Service attribute" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSPRODR2KM +relevantVariable: dcid:dc/svpg/sdg/SP_ROD_R2KM.001 +name: "Proportion of the rural population who live within 2 km of an all-season road" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSPTRNPUBL +relevantVariable: dcid:dc/svpg/sdg/SP_TRN_PUBL.001 +name: "Proportion of population that has convenient access to public transport" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSTEEVACCSEEA +relevantVariable: dcid:dc/svpg/sdg/ST_EEV_ACCSEEA.001 +name: "Implementation of standard accounting tools to monitor the economic and environmental aspects of tourism (SEEA tables)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSTEEVACCTSA +relevantVariable: dcid:dc/svpg/sdg/ST_EEV_ACCTSA.001 +name: "Implementation of standard accounting tools to monitor the economic and environmental aspects of tourism (Tourism Satellite Account tables)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSTEEVSTDACCT +relevantVariable: dcid:dc/svpg/sdg/ST_EEV_STDACCT.001 +name: "Implementation of standard accounting tools to monitor the economic and environmental aspects of tourism (number of tables)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGSTGDPZS +relevantVariable: dcid:dc/svpg/sdg/ST_GDP_ZS.001 +name: "Tourism direct GDP as a proportion of total GDP" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGTGVALTOTLGDZS +relevantVariable: dcid:dc/svpg/sdg/TG_VAL_TOTL_GD_ZS.001 +name: "Merchandise trade as a proportion of GDP" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGTMTAXDMFN +relevantVariable: dcid:dc/svpg/sdg/TM_TAX_DMFN.001, dcid:dc/svpg/sdg/TM_TAX_DMFN.002 +name: "Average tariff applied by developed countries, most-favored nation status" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGTMTAXDPRF +relevantVariable: dcid:dc/svpg/sdg/TM_TAX_DPRF.001, dcid:dc/svpg/sdg/TM_TAX_DPRF.002 +name: "Average tariff applied by developed countries, preferential status" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGTMTAXWMFN +relevantVariable: dcid:dc/svpg/sdg/TM_TAX_WMFN.001, dcid:dc/svpg/sdg/TM_TAX_WMFN.002 +name: "Worldwide weighted tariff-average, most-favoured-nation status" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGTMTAXWMPS +relevantVariable: dcid:dc/svpg/sdg/TM_TAX_WMPS.001, dcid:dc/svpg/sdg/TM_TAX_WMPS.002 +name: "Worldwide weighted tariff-average, preferential status" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGTMTRFZERO +relevantVariable: dcid:dc/svpg/sdg/TM_TRF_ZERO.001, dcid:dc/svpg/sdg/TM_TRF_ZERO.002 +name: "Proportion of tariff lines applied to imports with zero-tariff" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGTXEXPGBMRCH +relevantVariable: dcid:dc/svpg/sdg/TX_EXP_GBMRCH.001 +name: "Developing countries’ and least developed countries’ share of global merchandise exports" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGTXEXPGBSVR +relevantVariable: dcid:dc/svpg/sdg/TX_EXP_GBSVR.001 +name: "Developing countries’ and least developed countries’ share of global services exports" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGTXIMPGBMRCH +relevantVariable: dcid:dc/svpg/sdg/TX_IMP_GBMRCH.001 +name: "Developing countries’ and least developed countries’ share of global merchandise imports" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGTXIMPGBSVR +relevantVariable: dcid:dc/svpg/sdg/TX_IMP_GBSVR.001 +name: "Developing countries’ and least developed countries’ share of global services imports" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCARMSZTRACE +relevantVariable: dcid:dc/svpg/sdg/VC_ARM_SZTRACE.001 +name: "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" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCDSRAFFCT +relevantVariable: dcid:dc/svpg/sdg/VC_DSR_AFFCT.001 +name: "Number of people affected by disasters" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCDSRAGLH +relevantVariable: dcid:dc/svpg/sdg/VC_DSR_AGLH.001 +name: "Direct agriculture loss attributed to disasters" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCDSRBSDN +relevantVariable: dcid:dc/svpg/sdg/VC_DSR_BSDN.001 +name: "Number of disruptions to basic services attributed to disasters" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCDSRCDAN +relevantVariable: dcid:dc/svpg/sdg/VC_DSR_CDAN.001 +name: "Number of damaged critical infrastructure attributed to disasters" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCDSRCDYN +relevantVariable: dcid:dc/svpg/sdg/VC_DSR_CDYN.001 +name: "Number of other destroyed or damaged critical infrastructure units and facilities attributed to disasters" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCDSRCHLN +relevantVariable: dcid:dc/svpg/sdg/VC_DSR_CHLN.001 +name: "Direct economic loss to cultural heritage damaged or destroyed attributed to disasters" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCDSRCILN +relevantVariable: dcid:dc/svpg/sdg/VC_DSR_CILN.001 +name: "Direct economic loss resulting from damaged or destroyed critical infrastructure attributed to disasters" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCDSRDAFF +relevantVariable: dcid:dc/svpg/sdg/VC_DSR_DAFF.001 +name: "Number of directly affected persons attributed to disasters per 100, 000 population" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCDSRDDPA +relevantVariable: dcid:dc/svpg/sdg/VC_DSR_DDPA.001 +name: "Direct economic loss to other damaged or destroyed productive assets attributed to disasters" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCDSREFDN +relevantVariable: dcid:dc/svpg/sdg/VC_DSR_EFDN.001 +name: "Number of destroyed or damaged educational facilities attributed to disasters" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCDSRESDN +relevantVariable: dcid:dc/svpg/sdg/VC_DSR_ESDN.001 +name: "Number of disruptions to educational services attributed to disasters" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCDSRGDPLS +relevantVariable: dcid:dc/svpg/sdg/VC_DSR_GDPLS.001 +name: "Direct economic loss attributed to disasters" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCDSRHFDN +relevantVariable: dcid:dc/svpg/sdg/VC_DSR_HFDN.001 +name: "Number of destroyed or damaged health facilities attributed to disasters" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCDSRHOLH +relevantVariable: dcid:dc/svpg/sdg/VC_DSR_HOLH.001 +name: "Direct economic loss in the housing sector attributed to disasters" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCDSRHSDN +relevantVariable: dcid:dc/svpg/sdg/VC_DSR_HSDN.001 +name: "Number of disruptions to health services attributed to disasters" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCDSRIJILN +relevantVariable: dcid:dc/svpg/sdg/VC_DSR_IJILN.001 +name: "Number of injured or ill people attributed to disasters" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCDSRLSGP +relevantVariable: dcid:dc/svpg/sdg/VC_DSR_LSGP.001 +name: "Direct economic loss attributed to disasters relative to GDP" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCDSRMISS +relevantVariable: dcid:dc/svpg/sdg/VC_DSR_MISS.001 +name: "Number of missing persons due to disaster" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCDSRMMHN +relevantVariable: dcid:dc/svpg/sdg/VC_DSR_MMHN.001 +name: "Number of deaths and missing persons attributed to disasters" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCDSRMORT +relevantVariable: dcid:dc/svpg/sdg/VC_DSR_MORT.001 +name: "Number of deaths due to disaster" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCDSRMTMP +relevantVariable: dcid:dc/svpg/sdg/VC_DSR_MTMP.001 +name: "Number of deaths and missing persons attributed to disasters per 100, 000 population" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCDSROBDN +relevantVariable: dcid:dc/svpg/sdg/VC_DSR_OBDN.001 +name: "Number of disruptions to other basic services attributed to disasters" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCDSRPDAN +relevantVariable: dcid:dc/svpg/sdg/VC_DSR_PDAN.001 +name: "Number of people whose damaged dwellings were attributed to disasters" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCDSRPDLN +relevantVariable: dcid:dc/svpg/sdg/VC_DSR_PDLN.001 +name: "Number of people whose livelihoods were disrupted or destroyed, attributed to disasters" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCDSRPDYN +relevantVariable: dcid:dc/svpg/sdg/VC_DSR_PDYN.001 +name: "Number of people whose destroyed dwellings were attributed to disasters" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCDTHTOCVN +relevantVariable: dcid:dc/svpg/sdg/VC_DTH_TOCVN.001 +name: "Number of conflict-related deaths (civilians)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCDTHTONCVN +relevantVariable: dcid:dc/svpg/sdg/VC_DTH_TONCVN.001 +name: "Number of conflict-related deaths (non-civilians)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCDTHTOTN +relevantVariable: dcid:dc/svpg/sdg/VC_DTH_TOTN.001, dcid:dc/svpg/sdg/VC_DTH_TOTN.002, dcid:dc/svpg/sdg/VC_DTH_TOTN.003, dcid:dc/svpg/sdg/VC_DTH_TOTN.004 +name: "Number of total conflict-related deaths" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCDTHTOTPT +relevantVariable: dcid:dc/svpg/sdg/VC_DTH_TOTPT.001, dcid:dc/svpg/sdg/VC_DTH_TOTPT.002, dcid:dc/svpg/sdg/VC_DTH_TOTPT.003, dcid:dc/svpg/sdg/VC_DTH_TOTPT.004 +name: "Conflict-related total death rate" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCDTHTOTR +relevantVariable: dcid:dc/svpg/sdg/VC_DTH_TOTR.001 +name: "Number of total conflict-related deaths per 100, 000 population" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCDTHTOUNN +relevantVariable: dcid:dc/svpg/sdg/VC_DTH_TOUNN.001 +name: "Number of conflict-related deaths (unknown)" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCHTFDETV +relevantVariable: dcid:dc/svpg/sdg/VC_HTF_DETV.001, dcid:dc/svpg/sdg/VC_HTF_DETV.002, dcid:dc/svpg/sdg/VC_HTF_DETV.003, dcid:dc/svpg/sdg/VC_HTF_DETV.004, dcid:dc/svpg/sdg/VC_HTF_DETV.005, dcid:dc/svpg/sdg/VC_HTF_DETV.006 +name: "Detected victims of human trafficking" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCHTFDETVFL +relevantVariable: dcid:dc/svpg/sdg/VC_HTF_DETVFL.001, dcid:dc/svpg/sdg/VC_HTF_DETVFL.002, dcid:dc/svpg/sdg/VC_HTF_DETVFL.003, dcid:dc/svpg/sdg/VC_HTF_DETVFL.004, dcid:dc/svpg/sdg/VC_HTF_DETVFL.005 +name: "Detected victims of human trafficking for forced labour, servitude and slavery" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCHTFDETVFLR +relevantVariable: dcid:dc/svpg/sdg/VC_HTF_DETVFLR.001, dcid:dc/svpg/sdg/VC_HTF_DETVFLR.002, dcid:dc/svpg/sdg/VC_HTF_DETVFLR.003, dcid:dc/svpg/sdg/VC_HTF_DETVFLR.004 +name: "Detected victims of human trafficking for forced labour, servitude and slavery" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCHTFDETVOG +relevantVariable: dcid:dc/svpg/sdg/VC_HTF_DETVOG.001, dcid:dc/svpg/sdg/VC_HTF_DETVOG.003 +name: "Detected victims of human trafficking for removal of organ" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCHTFDETVOGR +relevantVariable: dcid:dc/svpg/sdg/VC_HTF_DETVOGR.001, dcid:dc/svpg/sdg/VC_HTF_DETVOGR.003 +name: "Detected victims of human trafficking for removal of organ" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCHTFDETVOP +relevantVariable: dcid:dc/svpg/sdg/VC_HTF_DETVOP.001, dcid:dc/svpg/sdg/VC_HTF_DETVOP.002, dcid:dc/svpg/sdg/VC_HTF_DETVOP.003, dcid:dc/svpg/sdg/VC_HTF_DETVOP.004, dcid:dc/svpg/sdg/VC_HTF_DETVOP.005 +name: "Detected victims of human trafficking for other purposes" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCHTFDETVOPR +relevantVariable: dcid:dc/svpg/sdg/VC_HTF_DETVOPR.001, dcid:dc/svpg/sdg/VC_HTF_DETVOPR.002, dcid:dc/svpg/sdg/VC_HTF_DETVOPR.003, dcid:dc/svpg/sdg/VC_HTF_DETVOPR.004 +name: "Detected victims of human trafficking for other purposes" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCHTFDETVR +relevantVariable: dcid:dc/svpg/sdg/VC_HTF_DETVR.001, dcid:dc/svpg/sdg/VC_HTF_DETVR.002, dcid:dc/svpg/sdg/VC_HTF_DETVR.003, dcid:dc/svpg/sdg/VC_HTF_DETVR.004, dcid:dc/svpg/sdg/VC_HTF_DETVR.005 +name: "Detected victims of human trafficking" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCHTFDETVSX +relevantVariable: dcid:dc/svpg/sdg/VC_HTF_DETVSX.001, dcid:dc/svpg/sdg/VC_HTF_DETVSX.002, dcid:dc/svpg/sdg/VC_HTF_DETVSX.003, dcid:dc/svpg/sdg/VC_HTF_DETVSX.004, dcid:dc/svpg/sdg/VC_HTF_DETVSX.005 +name: "Detected victims of human trafficking for sexual exploitation" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCHTFDETVSXR +relevantVariable: dcid:dc/svpg/sdg/VC_HTF_DETVSXR.001, dcid:dc/svpg/sdg/VC_HTF_DETVSXR.002, dcid:dc/svpg/sdg/VC_HTF_DETVSXR.003, dcid:dc/svpg/sdg/VC_HTF_DETVSXR.004 +name: "Detected victims of human trafficking for sexual exploitation" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCIHRPSRC +relevantVariable: dcid:dc/svpg/sdg/VC_IHR_PSRC.001, dcid:dc/svpg/sdg/VC_IHR_PSRC.002 +name: "Number of victims of intentional homicide per 100, 000 population" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCIHRPSRCN +relevantVariable: dcid:dc/svpg/sdg/VC_IHR_PSRCN.001, dcid:dc/svpg/sdg/VC_IHR_PSRCN.002 +name: "Number of victims of intentional homicide" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCPRRPHYV +relevantVariable: dcid:dc/svpg/sdg/VC_PRR_PHYV.001, dcid:dc/svpg/sdg/VC_PRR_PHYV.002 +name: "Police reporting rate for physical assault in the previous 12 months" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCPRRPHYVIO +relevantVariable: dcid:dc/svpg/sdg/VC_PRR_PHY_VIO.001, dcid:dc/svpg/sdg/VC_PRR_PHY_VIO.002 +name: "Police reporting rate for physical violence in the previous 12 months" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCPRRPSYCHV +relevantVariable: dcid:dc/svpg/sdg/VC_PRR_PSYCHV.001, dcid:dc/svpg/sdg/VC_PRR_PSYCHV.002 +name: "Police reporting rate for psychological violence in the previous 12 months" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCPRRROBB +relevantVariable: dcid:dc/svpg/sdg/VC_PRR_ROBB.001, dcid:dc/svpg/sdg/VC_PRR_ROBB.002 +name: "Police reporting rate for robbery in the previous 12 months" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCPRRSEXV +relevantVariable: dcid:dc/svpg/sdg/VC_PRR_SEXV.001, dcid:dc/svpg/sdg/VC_PRR_SEXV.002 +name: "Police reporting rate for sexual assault in the previous 12 months" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCPRRSEXVIO +relevantVariable: dcid:dc/svpg/sdg/VC_PRR_SEX_VIO.001, dcid:dc/svpg/sdg/VC_PRR_SEX_VIO.002 +name: "Police reporting rate for sexual violence in the previous 12 months" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCPRSUNSNT +relevantVariable: dcid:dc/svpg/sdg/VC_PRS_UNSNT.001, dcid:dc/svpg/sdg/VC_PRS_UNSNT.002 +name: "Unsentenced detainees as a proportion of overall prison population" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCSNSWALNDRK +relevantVariable: dcid:dc/svpg/sdg/VC_SNS_WALN_DRK.001, dcid:dc/svpg/sdg/VC_SNS_WALN_DRK.002 +name: "Proportion of population that feel safe walking alone around the area they live after dark" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCVAWMARR +relevantVariable: dcid:dc/svpg/sdg/VC_VAW_MARR.001 +name: "Proportion of ever-partnered women and girls subjected to physical and/or sexual violence by a current or former intimate partner in the previous 12 months by Age group" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCVAWMTUHRA +relevantVariable: dcid:dc/svpg/sdg/VC_VAW_MTUHRA.001, dcid:dc/svpg/sdg/VC_VAW_MTUHRA.002 +name: "Number of cases of killings of human rights defenders, journalists and trade unionists" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCVAWMTUHRAN +relevantVariable: dcid:dc/svpg/sdg/VC_VAW_MTUHRAN.001 +name: "Countries with at least one verified case of killings of human rights defenders, journalists, and trade unionists" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCVAWPHYPYV +relevantVariable: dcid:dc/svpg/sdg/VC_VAW_PHYPYV.001 +name: "Proportion of children aged 1-14 years who experienced physical punishment and/or psychological aggression by caregivers in last month by Age group" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCVAWSXVLN +relevantVariable: dcid:dc/svpg/sdg/VC_VAW_SXVLN.001, dcid:dc/svpg/sdg/VC_VAW_SXVLN.002 +name: "Proportion of population aged 18-29 years who experienced sexual violence by age\xa018 (18 to 29 years old) by Sex" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCVOCENFDIS +relevantVariable: dcid:dc/svpg/sdg/VC_VOC_ENFDIS.001, dcid:dc/svpg/sdg/VC_VOC_ENFDIS.002 +name: "Number of cases of enforced disappearance of human rights defenders, journalists and trade unionists" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCVOHSXPH +relevantVariable: dcid:dc/svpg/sdg/VC_VOH_SXPH.001, dcid:dc/svpg/sdg/VC_VOH_SXPH.002 +name: "Proportion of persons victim of non-sexual or sexual harassment, in the previous 12 months" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCVOVGDSD +relevantVariable: dcid:dc/svpg/sdg/VC_VOV_GDSD.001, dcid:dc/svpg/sdg/VC_VOV_GDSD.002, dcid:dc/svpg/sdg/VC_VOV_GDSD.003, dcid:dc/svpg/sdg/VC_VOV_GDSD.004, dcid:dc/svpg/sdg/VC_VOV_GDSD.005, dcid:dc/svpg/sdg/VC_VOV_GDSD.006, dcid:dc/svpg/sdg/VC_VOV_GDSD.007, dcid:dc/svpg/sdg/VC_VOV_GDSD.008, dcid:dc/svpg/sdg/VC_VOV_GDSD.009, dcid:dc/svpg/sdg/VC_VOV_GDSD.010, dcid:dc/svpg/sdg/VC_VOV_GDSD.011, dcid:dc/svpg/sdg/VC_VOV_GDSD.012, dcid:dc/svpg/sdg/VC_VOV_GDSD.013, dcid:dc/svpg/sdg/VC_VOV_GDSD.014, dcid:dc/svpg/sdg/VC_VOV_GDSD.015, dcid:dc/svpg/sdg/VC_VOV_GDSD.016, dcid:dc/svpg/sdg/VC_VOV_GDSD.017, dcid:dc/svpg/sdg/VC_VOV_GDSD.018, dcid:dc/svpg/sdg/VC_VOV_GDSD.019, dcid:dc/svpg/sdg/VC_VOV_GDSD.020, dcid:dc/svpg/sdg/VC_VOV_GDSD.021, dcid:dc/svpg/sdg/VC_VOV_GDSD.022, dcid:dc/svpg/sdg/VC_VOV_GDSD.023 +name: "Proportion of population reporting having felt discriminated against" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCVOVPHYL +relevantVariable: dcid:dc/svpg/sdg/VC_VOV_PHYL.001, dcid:dc/svpg/sdg/VC_VOV_PHYL.002 +name: "Proportion of population subjected to physical violence in the previous 12 months" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCVOVPHYASLT +relevantVariable: dcid:dc/svpg/sdg/VC_VOV_PHY_ASLT.001, dcid:dc/svpg/sdg/VC_VOV_PHY_ASLT.002 +name: "Proportion of population subjected to physical assault in the previous 12 months" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCVOVPSYCHL +relevantVariable: dcid:dc/svpg/sdg/VC_VOV_PSYCHL.001, dcid:dc/svpg/sdg/VC_VOV_PSYCHL.002 +name: "Proportion of population subjected to psychological violence in the previous 12 months" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCVOVROBB +relevantVariable: dcid:dc/svpg/sdg/VC_VOV_ROBB.001, dcid:dc/svpg/sdg/VC_VOV_ROBB.002 +name: "Proportion of population subjected to robbery in the previous 12 months" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCVOVSEXL +relevantVariable: dcid:dc/svpg/sdg/VC_VOV_SEXL.001, dcid:dc/svpg/sdg/VC_VOV_SEXL.002 +name: "Proportion of population subjected to sexual violence in the previous 12 months" +typeOf: dcid:Topic + +Node: dcid:dc/topic/SDGVCVOVSEXASLT +relevantVariable: dcid:dc/svpg/sdg/VC_VOV_SEX_ASLT.001, dcid:dc/svpg/sdg/VC_VOV_SEX_ASLT.002 +name: "Proportion of population subjected to sexual assault in the previous 12 months" +typeOf: dcid:Topic diff --git a/tools/sdg/topics/sheets_svs.csv b/tools/sdg/topics/sheets_svs.csv new file mode 100644 index 0000000000..287d48ff24 --- /dev/null +++ b/tools/sdg/topics/sheets_svs.csv @@ -0,0 +1,681 @@ +dcid,sentence +dc/topic/SDGAGFLSINDEX,Global food loss index +dc/topic/SDGAGFLSPCT,Food loss percentage +dc/topic/SDGAGFOODWST,Food waste +dc/topic/SDGAGFOODWSTPC,Food waste per capita +dc/topic/SDGAGFPACFPI,Indicator of Food Price Anomalies (IFPA) by Consumer Price Index of Food +dc/topic/SDGAGFPACOMM,Indicator of Food Price Anomalies (IFPA) by Product +dc/topic/SDGAGFPAHMFP,"Proportion of countries recording abnormally high or moderately high food prices, according to the Indicator of Food Price Anomalies" +dc/topic/SDGAGLNDAGRBIO,Proportion of agricultural land area that has achieved an acceptable or desirable level of use of agro-biodiversity supportive practices +dc/topic/SDGAGLNDAGRWAG,Proportion of agricultural land area that has achieved an acceptable or desirable level of wage rate in agriculture +dc/topic/SDGAGLNDDGRD,Proportion of land that is degraded over total land area +dc/topic/SDGAGLNDFERTMG,Proportion of agricultural land area that has achieved an acceptable or desirable level of management of fertilizers +dc/topic/SDGAGLNDFIES,Proportion of agricultural land area that has achieved an acceptable or desirable level of food security +dc/topic/SDGAGLNDFOVH,Proportion of agricultural land area that has achieved an acceptable or desirable level of farm output value per hectare +dc/topic/SDGAGLNDFRST,Forest area as a proportion of total land area +dc/topic/SDGAGLNDFRSTBIOPHA,Above-ground biomass in forest +dc/topic/SDGAGLNDFRSTCERT,Forest area certified under an independently verified certification scheme +dc/topic/SDGAGLNDFRSTCHG,Annual forest area change rate +dc/topic/SDGAGLNDFRSTMGT,Proportion of forest area with a long-term management plan +dc/topic/SDGAGLNDFRSTN,Forest area +dc/topic/SDGAGLNDFRSTPRCT,Proportion of forest area within legally established protected areas +dc/topic/SDGAGLNDH2OAVAIL,Proportion of agricultural land area that has achieved an acceptable or desirable level of variation in water availability +dc/topic/SDGAGLNDLNDSTR,Proportion of agricultural land area that has achieved an acceptable or desirable level of secure tenure rights to agricultural land +dc/topic/SDGAGLNDNFI,Proportion of agricultural land area that has achieved an acceptable or desirable level of net farm income +dc/topic/SDGAGLNDPSTCDSMG,Proportion of agricultural land area that has achieved an acceptable or desirable level of management of pesticides +dc/topic/SDGAGLNDRMM,Proportion of agricultural land area that has achieved an acceptable or desirable level of risk mitigation mechanisms +dc/topic/SDGAGLNDSDGRD,Proportion of agricultural land area that has achieved an acceptable or desirable level of soil degradation +dc/topic/SDGAGLNDSUST,Proportion of agricultural area under productive and sustainable agriculture +dc/topic/SDGAGLNDSUSTPRXCSS,"Progress toward productive and sustainable agriculture, current status score (proxy)" +dc/topic/SDGAGLNDSUSTPRXTS,"Progress toward productive and sustainable agriculture, trend score (proxy)" +dc/topic/SDGAGLNDTOTL,Land area +dc/topic/SDGAGPRDAGVAS,Agriculture value added share of GDP +dc/topic/SDGAGPRDFIESMS,Prevalence of moderate or severe food insecurity in the population +dc/topic/SDGAGPRDFIESMSN,Population in moderate or severe food insecurity +dc/topic/SDGAGPRDFIESS,Prevalence of severe food insecurity in the population +dc/topic/SDGAGPRDFIESSN,Population in severe food insecurity +dc/topic/SDGAGPRDORTIND,Agriculture orientation index for government expenditures +dc/topic/SDGAGPRDXSUBDY,Agricultural export subsidies +dc/topic/SDGAGXPDAGSGB,Agriculture share of Government Expenditure +dc/topic/SDGBNCABXOKAGDZS,Current account balance as a proportion of GDP +dc/topic/SDGBNKLTPTXLCD,"Portfolio investment, net (Balance of Payments)" +dc/topic/SDGBXKLTDINVWDGDZS,"Foreign direct investment, net inflows, as a proportion of GDP" +dc/topic/SDGBXTRFPWKR,Volume of remittances as a proportion of total GDP +dc/topic/SDGDCENVTECHEXP,Amount of tracked exported Environmentally Sound Technologies +dc/topic/SDGDCENVTECHIMP,Amount of tracked imported Environmentally Sound Technologies +dc/topic/SDGDCENVTECHINV,Total investment in Environment Sound Technologies +dc/topic/SDGDCENVTECHREXP,Amount of tracked re-exported Environmentally Sound Technologies +dc/topic/SDGDCENVTECHRIMP,Amount of tracked re-imported Environmentally Sound Technologies +dc/topic/SDGDCENVTECHTT,Total trade of tracked Environmentally Sound Technologies +dc/topic/SDGDCFINCLIMB,"Climate-specific financial support provided via bilateral, regional and other channels" +dc/topic/SDGDCFINCLIMM,Climate-specific financial support provided via multilateral channels +dc/topic/SDGDCFINCLIMT,Total climate-specific financial support provided +dc/topic/SDGDCFINGEN,Core/general contributions provided to multilateral institutions +dc/topic/SDGDCFINTOT,Total financial support provided +dc/topic/SDGDCFTATOTAL,Total official development assistance (gross disbursement) for technical cooperation +dc/topic/SDGDCODABDVDL,Total outbound official development assistance for biodiversity +dc/topic/SDGDCODABDVL,Total inbound official development assistance for biodiversity +dc/topic/SDGDCODALDCG,Net outbound official development assistance (ODA) to LDCs as a percentage of OECD-DAC donors' GNI +dc/topic/SDGDCODALDCS,Net inbound official development assistance (ODA) to LDCs from OECD-DAC countries +dc/topic/SDGDCODALLDC,Net outbound official development assistance (ODA) to landlocked developing countries from OECD-DAC countries +dc/topic/SDGDCODALLDCG,Net outbound official development assistance (ODA) to landlocked developing countries as a percentage of OECD-DAC donors' GNI +dc/topic/SDGDCODAPOVDLG,"Outbound official development assistance grants for poverty reduction, as percentage of GNI" +dc/topic/SDGDCODAPOVG,Official development assistance grants for poverty reduction (percentage of GNI) +dc/topic/SDGDCODAPOVLG,"Inbound official development assistance grants for poverty reduction, as a percentage of GNI" +dc/topic/SDGDCODASIDS,Net outbound official development assistance (ODA) to small island states (SIDS) from OECD-DAC countries +dc/topic/SDGDCODASIDSG,Net outbound official development assistance (ODA) to small island states (SIDS) as a percentage of OECD-DAC donors' GNI +dc/topic/SDGDCODATOTG,Net outbound official development assistance (ODA) as a percentage of OECD-DAC donors' GNI +dc/topic/SDGDCODATOTGGE,Outbound official development assistance (ODA) as a percentage of OECD-DAC donors' GNI on grant equivalent basis +dc/topic/SDGDCODATOTL,Net outbound official development assistance (ODA) from OECD-DAC countries +dc/topic/SDGDCODATOTLGE,Outbound official development assistance (ODA) from OECD-DAC countries on grant equivalent basis +dc/topic/SDGDCOSSDGRT,Gross receipts by developing countries of official sustainable development grants +dc/topic/SDGDCOSSDMPF,Gross receipts by developing countries of mobilised private finance (MPF) - on an experimental basis +dc/topic/SDGDCOSSDOFFCL,Gross receipts by developing countries of official concessional sustainable development loans +dc/topic/SDGDCOSSDOFFNL,Gross receipts by developing countries of official non-concessional sustainable development loans +dc/topic/SDGDCOSSDPRVGRT,Gross receipts by developing countries of private grants +dc/topic/SDGDCTOFAGRL,Total inbound official flows (disbursements) for agriculture +dc/topic/SDGDCTOFHLTHL,"Total inbound official development assistance to medical research and basic health sectors, gross disbursement" +dc/topic/SDGDCTOFHLTHNT,"Total inbound official development assistance to medical research and basic health sectors, net disbursement" +dc/topic/SDGDCTOFINFRAL,Total inbound official flows for infrastructure +dc/topic/SDGDCTOFSCHIPSL,Total inbound official flows for scholarships +dc/topic/SDGDCTOFTRDCMDL,Total outbound official flows (commitments) for Aid for Trade +dc/topic/SDGDCTOFTRDCML,Total inbound official flows (commitments) for Aid for Trade +dc/topic/SDGDCTOFTRDDBMDL,Total outbound official flows (disbursement) for Aid for Trade +dc/topic/SDGDCTOFTRDDBML,Total inbound official flows (disbursement) for Aid for Trade +dc/topic/SDGDCTOFWASHL,Total inbound official development assistance (gross disbursement) for water supply and sanitation +dc/topic/SDGDCTRFTFDV,Total inbound resource flows for development +dc/topic/SDGDCTRFTOTDL,Total outbound assistance for development +dc/topic/SDGDCTRFTOTL,Total inbound assistance for development +dc/topic/SDGDIILLIN,Total value of inward illicit financial flows by Type of flow +dc/topic/SDGDIILLOUT,Total value of outward illicit financial flows by Type of flow +dc/topic/SDGDPDODDLD2CRCGZ1,"Gross public sector debt, Central Government, as a proportion of GDP" +dc/topic/SDGDTDODDECTGNZS,External debt stocks as a proportion of GNI +dc/topic/SDGDTTDSDECT,Debt service as a proportion of exports of goods and services +dc/topic/SDGEGACSELEC,Proportion of population with access to electricity +dc/topic/SDGEGEGYCLEAN,Proportion of population with primary reliance on clean fuels and technology +dc/topic/SDGEGEGYPRIM,Energy intensity level of primary energy +dc/topic/SDGEGEGYRNEW,Installed renewable electricity-generating capacity +dc/topic/SDGEGFECRNEW,Share of renewable energy in the total final energy consumption +dc/topic/SDGEGIFFRANDN,"International financial flows to developing countries in support of clean energy research and development and renewable energy production, including in hybrid systems" +dc/topic/SDGEGTBAH2CO,Proportion of transboundary basins (river and lake basins and aquifers) with an operational arrangement for water cooperation +dc/topic/SDGEGTBAH2COAQ,Proportion of transboundary aquifers with an operational arrangement for water cooperation +dc/topic/SDGEGTBAH2CORL,Proportion of transboundary river and lake basins with an operational arrangement for water cooperation +dc/topic/SDGENACSURBOPENSP,Average share of urban population with convenient access to open public spaces +dc/topic/SDGENADAPCOM,Number of countries with adaptation communications by Report +dc/topic/SDGENADAPCOMDV,Number of least developed countries and small island developing States with adaptation communications by Report +dc/topic/SDGENATMCO2,Carbon dioxide emissions from fuel combustion +dc/topic/SDGENATMCO2GDP,Carbon dioxide emissions per unit of GDP at purchaning power parity rates +dc/topic/SDGENATMCO2MVA,Carbon dioxide emissions from manufacturing industries per unit of manufacturing value added by Major division of ISIC Rev. 4 +dc/topic/SDGENATMGHGTAIP,"Total greenhouse gas emissions (excluding land use, land-use changes and forestry) for Annex I Parties to the United Nations Framework Convention on Climate Change" +dc/topic/SDGENATMGHGTNAIP,"Total greenhouse gas emissions (excluding land use, land-use changes and forestry) for non-Annex I Parties to the United Nations Framework Convention on Climate Change" +dc/topic/SDGENATMPM25,Annual mean levels of fine particulate matter (population-weighted) +dc/topic/SDGENBIUREPAIP,"Countries with biennial reports, Annex I Parties to the United Nations Framework Convention on Climate Change by Report" +dc/topic/SDGENBIUREPNAIP,"Countries with biennial update reports, non-Annex I Parties to the United Nations Framework Convention on Climate Change by Report" +dc/topic/SDGENBIUREPNAIPDV,"Least developed countries and small island developing States with biennial update reports, non-Annex I Parties to the United Nations Framework Convention on Climate Change by Report" +dc/topic/SDGENEWTCOLLPCAP,Electronic waste collected per capita +dc/topic/SDGENEWTCOLLR,Proportion of electronic waste that is collected +dc/topic/SDGENEWTCOLLV,Total electronic waste collected +dc/topic/SDGENEWTGENPCAP,Electronic waste generated per capita +dc/topic/SDGENEWTGENV,Total electronic waste generated +dc/topic/SDGENEWTRCYPCAP,Electronic waste recycled per capita +dc/topic/SDGENEWTRCYR,Proportion of electronic waste that is recycled +dc/topic/SDGENEWTRCYV,Total electronic waste recycled +dc/topic/SDGENH2OGRAMBQ,Proportion of groundwater bodies with good ambient water quality +dc/topic/SDGENH2OOPAMBQ,Proportion of open water bodies with good ambient water quality +dc/topic/SDGENH2ORVAMBQ,Proportion of river water bodies with good ambient water quality +dc/topic/SDGENH2OWBAMBQ,Proportion of bodies of water with good ambient water quality +dc/topic/SDGENHAZEXP,Hazardous waste exported +dc/topic/SDGENHAZGENGDP,Hazardous waste generated per unit of GDP +dc/topic/SDGENHAZGENV,Hazardous waste generated +dc/topic/SDGENHAZIMP,Hazardous waste imported +dc/topic/SDGENHAZPCAP,"Hazardous waste generated, per capita" +dc/topic/SDGENHAZTREATV,Hazardous waste treated by Type of waste treatment +dc/topic/SDGENHAZTRTDISR,Proportion of hazardous waste that is treated or disposed +dc/topic/SDGENHAZTRTDISV,Hazardous waste treated or disposed +dc/topic/SDGENLKRVPWAC,Change in permanent water area of lakes and rivers +dc/topic/SDGENLKRVPWAN,Permanent water area of lakes and rivers +dc/topic/SDGENLKRVPWAP,Permanent water area of lakes and rivers as a proportion of total land area +dc/topic/SDGENLKRVSWAC,Change in seasonal water area of lakes and rivers +dc/topic/SDGENLKRVSWAN,Seasonal water area of lakes and rivers +dc/topic/SDGENLKRVSWAP,Seasonal water area of lakes and rivers as a proportion of total land area +dc/topic/SDGENLKWQLTRB,Lake water quality: turbidity by Deviation level +dc/topic/SDGENLKWQLTRST,Lake water quality: trophic state by Deviation level +dc/topic/SDGENLNDCNSPOP,Ratio of land consumption rate to population growth rate +dc/topic/SDGENLNDINDQTHSNG,Proportion of urban population living in inadequate housing +dc/topic/SDGENLNDSLUM,Proportion of urban population living in slums by Type of location +dc/topic/SDGENMARBEALITSQ,Beach litter per square kilometer +dc/topic/SDGENMARBEALITBP,Proportion of beach litter originating from national land-based sources that ends in the beach +dc/topic/SDGENMARBEALITBV,Total beach litter originating from national land-based sources that ends in the beach +dc/topic/SDGENMARBEALITEXP,Total beach litter originating from national land-based sources that is exported +dc/topic/SDGENMARBEALITOP,Proportion of beach litter originating from national land-based sources that ends in the ocean +dc/topic/SDGENMARBEALITOV,Total beach litter originating from national land-based sources that ends in the ocean +dc/topic/SDGENMARCHLANM,"Chlorophyll-a anomaly, remote sensing by Chlorophyll-a Concentration Frequency" +dc/topic/SDGENMARCHLDEV,"Chlorophyll-a deviations, remote sensing" +dc/topic/SDGENMARPLASDD,Floating plastic debris density +dc/topic/SDGENMATDOMCMPC,Domestic material consumption per capita +dc/topic/SDGENMATDOMCMPG,Domestic material consumption per unit of GDP +dc/topic/SDGENMATDOMCMPT,Domestic material consumption +dc/topic/SDGENMATFTPRPC,Material footprint per capita +dc/topic/SDGENMATFTPRPG,Material footprint per unit of GDP +dc/topic/SDGENMATFTPRTN,Material footprint +dc/topic/SDGENMWTCOLLV,Municipal waste collected +dc/topic/SDGENMWTEXP,Municipal waste exported +dc/topic/SDGENMWTGENV,Municipal waste generated +dc/topic/SDGENMWTIMP,Municipal waste imported +dc/topic/SDGENMWTRCYR,Proportion of municipal waste recycled +dc/topic/SDGENMWTRCYV,Municipal waste recycled +dc/topic/SDGENMWTTREATR,Proportion of municipal waste treated by Type of waste treatment +dc/topic/SDGENMWTTREATV,Municipal waste treated by type of treatment by Type of waste treatment +dc/topic/SDGENNAAPLAN,Countries with national adaptation plans +dc/topic/SDGENNAAPLANDV,Least developed countries and small island developing States with national adaptation plans +dc/topic/SDGENNACOMAIP,"Countries with national communications, Annex I Parties to the United Nations Framework Convention on Climate Change by Report" +dc/topic/SDGENNACOMNAIP,"Countries with national communications, non-Annex I Parties by Report" +dc/topic/SDGENNACOMNAIPDV,"Least developed countries and small island developing States with national communications, non-Annex I Parties to the United Nations Framework Convention on Climate Change by Report" +dc/topic/SDGENNADCONTR,Countries with nationally determined contributions by Report +dc/topic/SDGENNADCONTRDV,Least developed countries and small island developing States with nationally determined contributions by Report +dc/topic/SDGENREFWASCOL,Municipal Solid Waste collection coverage +dc/topic/SDGENRSRVMNWAC,Change in minimum reservoir water area +dc/topic/SDGENRSRVMNWAN,Minimum reservoir water area +dc/topic/SDGENRSRVMNWAP,Minimum reservoir water area as a proportion of total land area +dc/topic/SDGENRSRVMXWAN,Maxiumum reservoir water area +dc/topic/SDGENRSRVMXWAP,Maximum reservoir water area as a proportion of total land area +dc/topic/SDGENSCPECSYBA,Countries using ecosystem-based approaches to managing marine areas +dc/topic/SDGENSCPFRMN,Number of companies publishing sustainability reports with disclosure by dimension +dc/topic/SDGENSCPFSHGDP,Sustainable fisheries as a proportion of GDP +dc/topic/SDGENTWTGENV,Total waste generation +dc/topic/SDGENURBOPENSP,Average share of the built-up area of cities that is open space for public use for all +dc/topic/SDGENWBEHMWTL,Extent of human made wetlands +dc/topic/SDGENWBEINWTL,Extent of inland wetlands +dc/topic/SDGENWBEMANGC,Mangrove total area change +dc/topic/SDGENWBEMANGN,Mangrove area +dc/topic/SDGENWBENDQTGRW,Quantity of nationally derived groundwater +dc/topic/SDGENWBENDQTRVR,Quantity of nationally derived water fromrivers +dc/topic/SDGENWBEWTLN,Wetlands area +dc/topic/SDGENWBEWTLP,Wetlands area as a proportion of total land area +dc/topic/SDGENWWTGEN,Total wastewater generated +dc/topic/SDGENWWTTREAT,Total wastewater treated +dc/topic/SDGENWWTTREATR,Proportion of wastewater treated +dc/topic/SDGENWWTTREATRSF,Proportion of wastewater safely treated +dc/topic/SDGENWWTTREATSF,Total wastewater safely treated +dc/topic/SDGENWWTWWDS,Proportion of safely treated domestic wastewater flows +dc/topic/SDGERBDYABT2NP,Countries that established national targets in accordance with Aichi Biodiversity Target 2 of the Strategic Plan for Biodiversity 2011-2020 in their National Biodiversity Strategy and Action Plans +dc/topic/SDGERBDYSEEA,"Countries with integrated biodiversity values into national accounting and reporting systems, defined as implementation of the System of Environmental-Economic Accounting" +dc/topic/SDGERCBDABSCLRHS,"Countries that have legislative, administrative and policy framework or measures reported to the Access and Benefit-Sharing Clearing-House" +dc/topic/SDGERCBDNAGOYA,Countries that are parties to the Nagoya Protocol +dc/topic/SDGERCBDORSPGRFA,"Countries that have legislative, administrative and policy framework or measures reported through the Online Reporting System on Compliance of the International Treaty on Plant Genetic Resources for Food and Agriculture (PGRFA)" +dc/topic/SDGERCBDPTYPGRFA,Countries that are contracting Parties to the International Treaty on Plant Genetic Resources for Food and Agriculture (PGRFA) +dc/topic/SDGERCBDSMTA,Total reported number of Standard Material Transfer Agreements (SMTAs) transferring plant genetic resources for food and agriculture to the country +dc/topic/SDGERFFSCMPTCD,Fossil-fuel subsidies (consumption and production) +dc/topic/SDGERFFSCMPTGDP,Fossil-fuel subsidies (consumption and production) as a proportion of total GDP +dc/topic/SDGERFFSCMPTPCCD,Fossil-fuel subsidies (consumption and production) per capita +dc/topic/SDGERGRFANIMKPT,Number of local breeds kept in the country +dc/topic/SDGERGRFANIMKPTTRB,Number of transboundary breeds (including extinct ones) +dc/topic/SDGERGRFANIMRCNTN,Number of local breeds for which sufficient genetic resources are stored for reconstitution +dc/topic/SDGERGRFANIMRCNTNTRB,Number of transboundary breeds for which sufficient genetic resources are stored for reconstitution +dc/topic/SDGERGRFPLNTSTOR,Plant genetic resources accessions stored ex situ +dc/topic/SDGERH2OFWTL,Proportion of fish stocks within biologically sustainable levels (not overexploited) +dc/topic/SDGERH2OIWRMD,Degree of implementation of integrated water resources management +dc/topic/SDGERH2OIWRMDEE,Degree of implementation of integrated water resources management: enabling environment +dc/topic/SDGERH2OIWRMDFI,Degree of implementation of integrated water resources management: financing +dc/topic/SDGERH2OIWRMDIP,Degree of implementation of integrated water resources management: institutions and participation +dc/topic/SDGERH2OIWRMDMI,Degree of implementation of integrated water resources management: management instruments +dc/topic/SDGERH2OIWRMP,Proportion of countries by category of implementation of integrated water resources management (IWRM) by Level of implementation +dc/topic/SDGERH2OPARTIC,Proportion of countries with high level of users/communities participating in planning programs in rural drinking-water supply by Type of location +dc/topic/SDGERH2OPRDU,Countries with procedures in law or policy for participation by service users/communities in planning program in rural drinking-water supply by Type of location +dc/topic/SDGERH2OPROCED,Proportion of countries with clearly defined procedures in law or policy for participation by service users/communities in planning program in rural drinking-water supply by Type of location +dc/topic/SDGERH2ORURP,"Countries with users/communities participating in planning programs in rural drinking-water supply, by level of participation by Type of location" +dc/topic/SDGERH2OSTRESS,Level of water stress: freshwater withdrawal as a proportion of available freshwater resources +dc/topic/SDGERH2OWUEYST,Water use efficiency +dc/topic/SDGERIASGLOFUN,Recipient countries of global funding with access to any funding from global financial mechanisms for projects related to invasive alien species  management +dc/topic/SDGERIASGLOFUNP,Proportion of recipient countries of global funding with access to any funding from global financial mechanisms for projects related to invasive alien species  management +dc/topic/SDGERIASLEGIS,"Countriees with a legislation, regulation, or act related to the prevention of introduction and management of Invasive Alien Species" +dc/topic/SDGERIASNATBUD,Countries with an allocation from the national budget to manage the threat of invasive alien species +dc/topic/SDGERIASNATBUDP,Proportion of countries with allocation from the national budget to manage the threat of invasive alien species +dc/topic/SDGERIASNBSAP,Countries with alignment of National Biodiversity Strategy and Action Plan (NBSAP) targets to target 9 of the Aichi Biodiversity set out in the Strategic Plan for Biodiversity 2011-2020 +dc/topic/SDGERIASNBSAPP,Proportion of countries with alignment of National Biodiversity Strategy and Action Plan (NBSAP) targets to target 9 of the Aichi Biodiversity target 9 set out in the Strategic Plan for Biodiversity 2011-2020 +dc/topic/SDGERMRNMPA,Average proportion of Marine Key Biodiversity Areas (KBAs) covered by protected areas +dc/topic/SDGERMTNDGRDA,Area of degraded mountain land +dc/topic/SDGERMTNDGRDP,Proportion of degraded mountain land +dc/topic/SDGERMTNGRNCOV,Area of mountain green cover by Type of land cover +dc/topic/SDGERMTNGRNCVI,Mountain Green Cover Index by Type of land cover +dc/topic/SDGERMTNTOTL,Mountain area +dc/topic/SDGERNOEXLBREDN,Number of local breeds (not extinct) +dc/topic/SDGERPTDFRHWTR,Average proportion of Freshwater Key Biodiversity Areas (KBAs) covered by protected areas +dc/topic/SDGERPTDMTN,Average proportion of Mountain Key Biodiversity Areas (KBAs) covered by protected areas +dc/topic/SDGERPTDTERR,Average proportion of Terrestrial Key Biodiversity Areas (KBAs) covered by protected areas +dc/topic/SDGERRDEOSEX,National ocean science expenditure as a share of total research and development funding +dc/topic/SDGERREGSSFRAR,Degree of application of a legal/regulatory/policy/institutional framework which recognizes and protects access rights for small-scale fisheries +dc/topic/SDGERREGUNFCIM,"Degree of implementation of international instruments aiming to combat illegal, unreported and unregulated fishing" +dc/topic/SDGERRSKLBREDS,Proportion of local breeds classified as being at risk of extinction as a share of local breeds with known level of extinction risk +dc/topic/SDGERRSKLST,Red List Index +dc/topic/SDGERUNCLOSIMPLE,Score for the implementation of UNCLOS and its two implementing agreements +dc/topic/SDGERUNCLOSRATACC,Score for the ratification of and accession to UNCLOS and its two implementing agreements +dc/topic/SDGERUNKLBREDN,Number of local breeds with unknown risk status +dc/topic/SDGERWATPART,Countries with users/communities participating in planning programs in water resources planning and management +dc/topic/SDGERWATPARTIC,Proportion of countries with high level of users/communities participating in planning programs in water resources planning and management +dc/topic/SDGERWATPRDU,Countries with procedures in law or policy for participation by service users/communities in planning program in water resources planning and management +dc/topic/SDGERWATPROCED,Proportion of countries with clearly defined procedures in law or policy for participation by service users/communities in planning program in water resources planning and management +dc/topic/SDGERWLDTRPOACH,"Proportion of traded wildlife that was poached or illicitly trafficked by Plants, animals and derived products" +dc/topic/SDGFBATMTOTL,"Number of automated teller machines (ATMs) per 100, 000 adults (15 years old and over)" +dc/topic/SDGFBBNKACCSS,Proportion of adults (15 years and older) with an account at a financial institution or mobile-money-service provider by Age group +dc/topic/SDGFBBNKACCSSILF,Proportion of adults (15 years and older) active in labor force with an account at a financial institution or mobile-money-service provider by Age group +dc/topic/SDGFBBNKACCSSOLF,Proportion of adults (15 years and older) out of labor force with an account at a financial institution or mobile-money-service provider +dc/topic/SDGFBBNKCAPAZS,Bank capital to assets ratio +dc/topic/SDGFBCBKBRCH,"Number of commercial bank branches per 100, 000 adults (15 years old and over)" +dc/topic/SDGFCACCSSID,Proportion of small-scale manufacturing industries with a loan or line of credit +dc/topic/SDGFIFSIFSANL,Non-performing loans to total gross loans +dc/topic/SDGFIFSIFSERA,Rate of return on assets +dc/topic/SDGFIFSIFSKA,Ratio of regulatory capital to assets +dc/topic/SDGFIFSIFSKNL,Ratio of non-performing loans (net of provisions) to capital +dc/topic/SDGFIFSIFSKRTC,Ratio of regulatory tier-1 capital to risk-weighted assets +dc/topic/SDGFIFSIFSLS,Ratio of liquid assets to short term liabilities +dc/topic/SDGFIFSIFSSNO,Ratio of net open position in foreign exchange to capital +dc/topic/SDGFIRESTOTLMO,Total reserves in months of imports +dc/topic/SDGFMLBLBMNYIRZS,Ratio of broad money to total reserves +dc/topic/SDGFMLBLBMNYZG,Annual growth of broad money +dc/topic/SDGFPCPITOTLZG,Annual inflation (consumer prices) +dc/topic/SDGGBPOPSCIERD,Number of full-time-equivalent researchers per million inhabitants +dc/topic/SDGGBXPDCULNATPB,Total public expenditure per capita on cultural and natural heritage at purchansing-power parity rates +dc/topic/SDGGBXPDCULNATPBPV,Total public and private expenditure per capita on cultural and natural heritage at purchasing-power parity rates +dc/topic/SDGGBXPDCULNATPV,Total private expenditure per capita spent on cultural and natural heritage at purchasing-power parity rates +dc/topic/SDGGBXPDCULPBPV,Total public and private expenditure per capita on cultural heritage at purchasing-power parity rates +dc/topic/SDGGBXPDNATPBPV,Total public and private expenditure per capita on natural heritage at purchasing-power parity rates +dc/topic/SDGGBXPDRSDV,Research and development expenditure as a proportion of GDP +dc/topic/SDGGCBALCASHGDZS,Cash surplus/deficit as a proportion of GDP +dc/topic/SDGGCGOBTAXD,Proportion of domestic budget funded by domestic taxes +dc/topic/SDGGCTAXTOTLGDZS,Tax revenue as a proportion of GDP +dc/topic/SDGGFCOMPPPI,Monetary amount committed to public-private partnerships for infrastructure in nominal terms +dc/topic/SDGGFCOMPPPIKD,Monetary amount committed to public-private partnerships for infrastructure in real terms +dc/topic/SDGGFFRNFDI,Foreign direct investment (FDI) inflows +dc/topic/SDGGFXPDGBPC,Primary government expenditures as a proportion of original approved budget +dc/topic/SDGGRG14GDP,Total bugetary revenue of the central government as a proportion of GDP +dc/topic/SDGGRG14XDC,"Total government revenue, in local currency" +dc/topic/SDGICFRMBRIB,Incidence of bribery (proportion of firms experiencing at least one bribe payment request) +dc/topic/SDGICGENMGTL,Proportion of women in managerial positions - previous definition (15 years old and over) +dc/topic/SDGICGENMGTL19ICLS,Proportion of women in managerial positions - current definition (15 years old and over) +dc/topic/SDGICGENMGTN,Proportion of women in senior and middle management positions - previous definition (15 years old and over) +dc/topic/SDGICGENMGTN19ICLS,Proportion of women in senior and middle management positions - current definition (15 years old and over) +dc/topic/SDGIQSPIPIL4,Performance index of data sources (Pillar 4 of Statistical Performance Indicators) +dc/topic/SDGIQSPIPIL5,Performance index of data Infrastructure (Pillar 5 of Statistical Performance Indicators) +dc/topic/SDGISRDPFRGVOL,Freight volume by Mode of transport +dc/topic/SDGISRDPLULFRG,"Freight loaded and unloaded, maritime transport" +dc/topic/SDGISRDPPFVOL,Passenger volume by Mode of transport +dc/topic/SDGISRDPPORFVOL,"Container port traffic, maritime transport" +dc/topic/SDGITMOB2GNTWK,Proportion of population covered by at least a 2G mobile network +dc/topic/SDGITMOB3GNTWK,Proportion of population covered by at least a 3G mobile network +dc/topic/SDGITMOB4GNTWK,Proportion of population covered by at least a 4G mobile network +dc/topic/SDGITMOBOWN,Proportion of individuals who own a mobile telephone +dc/topic/SDGITNETBBND,Fixed broadband subscriptions per 100 inhabitants +dc/topic/SDGITNETBBNDN,Number of fixed broadband subscriptions +dc/topic/SDGITUSEii99,Proportion of individuals using the Internet +dc/topic/SDGIUCORBRIB,Prevalence rate of bribery +dc/topic/SDGIUDMKICRS,Proportion of population who believe decision-making is inclusive and responsive +dc/topic/SDGIUDMKINCL,Proportion of population who believe decision-making is inclusive +dc/topic/SDGIUDMKRESP,Proportion of population who believe decision-making is responsive +dc/topic/SDGNECONGOVTKDZG,Annual growth of final consumption expenditure of the general government +dc/topic/SDGNECONPRVTKDZG,Annual growth of final consumption expenditure of households and non-profit institutions serving households (NPISHs) +dc/topic/SDGNEEXPGNFSKDZG,Annual growth of exports of goods and services +dc/topic/SDGNEGDITOTLKDZG,Annual growth of the gross capital formation +dc/topic/SDGNEIMPGNFSKDZG,Annual growth of imports of goods and services +dc/topic/SDGNVINDSSIS,Proportion of small-scale manufacturing industries in total manufacturing value added +dc/topic/SDGNVINDTECH,Proportion of medium and high-tech manufacturing value added in total value added +dc/topic/SDGNYGDPMKTPKDZG,Annual GDP growth +dc/topic/SDGNYGDPPCAP,Annual growth rate of real GDP per capita +dc/topic/SDGPANUSATLS,Alternative conversion factor used by the Development Economics Group (DEC) +dc/topic/SDGPDAGRLSFP,Productivity of large-scale food producers (agricultural output per labour day at purchasing-power parity rates) +dc/topic/SDGPDAGRSSFP,Productivity of small-scale food producers (agricultural output per labour day at purchasing-power parity rates) +dc/topic/SDGSDCPAUPRDP,"Countries that have national urban policies or regional development plans that respond to population dynamics, ensure balanced territorial development, and increase local fiscal space" +dc/topic/SDGSDMDPANDI,Average proportion of deprivations experienced by multidimensionally poor people +dc/topic/SDGSDMDPANDIHH,Average share of weighted deprivations experienced by total households (intensity) +dc/topic/SDGSDMDPCSMP,Proportion of children living in child-specific multidimensional poverty (under 18 years old) +dc/topic/SDGSDMDPMUHHC,Proportion of households living in multidimensional poverty +dc/topic/SDGSDXPDESED,"Proportion of total government spending on essential services, education" +dc/topic/SDGSDXPDMNPO,"Proportion of government spending in health, direct social transfers and education which benefit the monetary poor" +dc/topic/SDGSEACCHNDWSH,Proportion of schools with basic handwashing facilities by Education level +dc/topic/SDGSEACSCMPTR,Proportion of schools with access to computers for pedagogical purposes by Education level +dc/topic/SDGSEACSELECT,Proportion of schools with access to electricity by Education level +dc/topic/SDGSEACSH2O,Proportion of schools with access to basic drinking water by Education level +dc/topic/SDGSEACSINTNT,Proportion of schools with access to the internet for pedagogical purposes by Education level +dc/topic/SDGSEACSSANIT,Proportion of schools with access to single-sex basic sanitation by Education level +dc/topic/SDGSEADTACTS,Proportion of youth and adults with information and communications technology (ICT) skills (15 to 24 years old) by Type of skill +dc/topic/SDGSEADTEDUCTRN,Participation rate in formal and non-formal education and training by Age group +dc/topic/SDGSEADTFUNS,Proportion of population achieving at least a fixed level of proficiency in functional skills (16 to 65 years old) by Type of skill +dc/topic/SDGSEAGPCPRA,Adjusted gender parity index for completion rate by Education level +dc/topic/SDGSEALPCPLR,Adjusted location parity index for completion rate by Education level +dc/topic/SDGSEAWPCPRA,Adjusted wealth parity index for completion rate by Education level +dc/topic/SDGSEDEVONTRK,"Proportion of children aged 24−59 months who are developmentally on track in at least three of the following domains: literacy-numeracy, physical development, social-emotional development, and learning by Age group" +dc/topic/SDGSEGCEDESDCUR,Extent to which global citizenship education and education for sustainable development are mainstreamed in curricula +dc/topic/SDGSEGCEDESDNEP,Extent to which global citizenship education and education for sustainable development are mainstreamed in national education policies +dc/topic/SDGSEGCEDESDSAS,Extent to which global citizenship education and education for sustainable development are mainstreamed in student assessment +dc/topic/SDGSEGCEDESDTED,Extent to which global citizenship education and education for sustainable development are mainstreamed in teacher education +dc/topic/SDGSEGPIICTS,Gender parity index for youth/adults with information and communications technology (ICT) skills by Type of skill +dc/topic/SDGSEGPIPART,Adjusted gender parity index for participation rate in formal and non-formal education and training by Age group +dc/topic/SDGSEGPIPTNPRE,Adjusted gender parity index for participation rate in organized learning (one year before the official primary entry age) +dc/topic/SDGSEGPITCAQ,Adjusted gender parity index for the proportion of teachers with the minimum required qualifications by Education level +dc/topic/SDGSEIMPFPOF,Adjusted immigration status parity index for achieving at least a fixed level of proficiency in functional skills (16 to 65 years old) by Type of skill +dc/topic/SDGSEINFDSBL,Proportion of schools with access to adapted infrastructure and materials for students with disabilities by Education level +dc/topic/SDGSELGPACHI,Adjusted language test parity index for achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in mathematics) by Education level +dc/topic/SDGSENAPACHI,Adjusted immigration status parity index for achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in mathematics) by Education level +dc/topic/SDGSEPREPARTN,Participation rate in organized learning (one year before the official primary entry age) +dc/topic/SDGSETOTCPLR,School completion rate by Education level +dc/topic/SDGSETOTGPI,Adjusted gender parity index for achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in mathematics) by Education level +dc/topic/SDGSETOTGPIFS,Adjusted gender parity index for achieving at least a fixed level of proficiency in functional skills (16 to 65 years old) by Type of skill +dc/topic/SDGSETOTPRFL,Proportion of children and young people achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in mathematics) by Education level +dc/topic/SDGSETOTRUPI,Adjusted rural to urban parity index for achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in mathematics) by Education level +dc/topic/SDGSETOTSESPI,Adjusted low to high socio-economic parity index for achieving a minimum proficiency level in reading and mathematics (Minimum proficiency in mathematics) by Education level +dc/topic/SDGSETOTSESPIFS,Adjusted low to high socio-economic parity status index for achieving at least a fixed level of proficiency in functional skills (16 to 65 years old) by Type of skill +dc/topic/SDGSETRAGRDL,Proportion of teachers with the minimum required qualifications (Pre-primary education) by Sex +dc/topic/SDGSGCPAMIGRP,"Proportion of countries with migration policies to facilitate orderly, safe, regular and responsible migration and mobility of people" +dc/topic/SDGSGCPAMIGRS,"Countries with migration policies to facilitate orderly, safe, regular and responsible migration and mobility of people" +dc/topic/SDGSGCPAOFDI,"Number of countries with an outward investment promotion scheme which can benefit developing countries, including LDCs" +dc/topic/SDGSGCPASDEVP,Mechanisms in place to enhance policy coherence for sustainable development +dc/topic/SDGSGDMKJDC,"Proportion of positions held by persons under 45 years of age in the judiciary, compared to national distributions" +dc/topic/SDGSGDMKJDCCNS,Proportions of positions held by persons under 45 years of age in the Constitutional Court +dc/topic/SDGSGDMKJDCHGR,Proportions of positions held by persons under 45 years of age in the Higher Courts +dc/topic/SDGSGDMKJDCLWR,Proportions of positions held by persons under 45 years of age in the Lower Courts +dc/topic/SDGSGDMKPARLCCJC,Number of chairs of permanent parliamentary committees held by women 46 years old and over: Joint Committees +dc/topic/SDGSGDMKPARLCCLC,Number of chairs of permanent parliamentary committees held by women 46 years old and over: Lower Chamber or Unicameral Committees +dc/topic/SDGSGDMKPARLCCUC,Number of chairs of permanent parliamentary committees held by women years old and over: Upper Chamber Committees +dc/topic/SDGSGDMKPARLMPLC,Female representation ratio in parliament (proportion of women in parliament divided by the proportion of women in the national population eligible by age): Lower chamber or unicameral +dc/topic/SDGSGDMKPARLMPUC,Female representation ratio in parliament (proportion of women in parliament divided by the proportion of women in the national population eligible by age): Upper chamber +dc/topic/SDGSGDMKPARLSPLC,"Number of persons 46 years and over who are speakers in parliement, by sex: Lower Chamber or Unicameral Committees" +dc/topic/SDGSGDMKPARLSPUC,"Number of persons 46 years old and over who are speakers in parliement, by sex: Upper Chamber Committees" +dc/topic/SDGSGDMKPARLYNLC,Number of youth in parliament (age 45 or below): Lower Chamber or Unicameral by Age group +dc/topic/SDGSGDMKPARLYNUC,Number of youth in parliament (age 45 or below): Upper Chamber by Age group +dc/topic/SDGSGDMKPARLYPLC,Proportion of youth in parliament (age 45 or below): Lower Chamber or Unicameral by Age group +dc/topic/SDGSGDMKPARLYPUC,Proportion of youth in parliament (age 45 or below): Upper Chamber by Age group +dc/topic/SDGSGDMKPARLYRLC,Youth representation ratio in parliament (proportion of members in parliament aged 45 or below divided by the share of individuals aged 45 or below in the national population eligible by age): Lower Chamber or Unicameral by Age group +dc/topic/SDGSGDMKPARLYRUC,Youth representation ratio in parliament (proportion of members in parliament aged 45 or below divided by the share of individuals aged 45 or below in the national population eligible by age): Upper Chamber or Unicameral by Age group +dc/topic/SDGSGDMKPSRVC,Proportion of positions in the public service held by specific groups compared to national distributions +dc/topic/SDGSGDSRLGRGSR,Score of adoption and implementation of national disaster-risk reduction strategies in line with the Sendai Framework +dc/topic/SDGSGDSRSFDRR,Number of countries that reported having a national disaster-risk reduction strategy which is aligned to the Sendai Framework +dc/topic/SDGSGDSRSILN,Number of local governments that adopt and implement local disaster-risk reduction strategies in line with national strategies +dc/topic/SDGSGDSRSILS,Proportion of local governments that adopt and implement local disaster-risk reduction strategies in line with national disaster-risk reduction strategies +dc/topic/SDGSGGENEQPWN,Proportion of countries with systems to track and make public allocations for gender equality and women's empowerment +dc/topic/SDGSGGENEQPWNN,Countries with systems to track and make public allocations for gender equality and women's empowerment +dc/topic/SDGSGGENLOCGELS,Proportion of elected seats in deliberative bodies of local government held by women by Sex +dc/topic/SDGSGGENPARL,Proportion of seats in national parliaments held by women by Sex +dc/topic/SDGSGGENPARLN,Number of seats in national parliaments held by women by Sex +dc/topic/SDGSGGENPARLNT,Current number of seats in national parliaments +dc/topic/SDGSGGOVLOGV,Number of local governments +dc/topic/SDGSGHAZCMRBASEL,"Parties meeting their commitments and obligations in transmitting information as required by Basel Convention on hazardous waste, and other chemicals" +dc/topic/SDGSGHAZCMRMNMT,"Parties meeting their commitments and obligations in transmitting information as required by Minamata Convention on hazardous waste, and other chemicals" +dc/topic/SDGSGHAZCMRMNTRL,"Parties meeting their commitments and obligations in transmitting information as required by Montreal Protocol on hazardous waste, and other chemicals" +dc/topic/SDGSGHAZCMRROTDAM,"Parties meeting their commitments and obligations in transmitting information as required by Rotterdam Convention on hazardous waste, and other chemicals" +dc/topic/SDGSGHAZCMRSTHOLM,"Parties meeting their commitments and obligations in transmitting information as required by Stockholm Convention on hazardous waste, and other chemicals" +dc/topic/SDGSGINFACCSS,"Countries that adopt and implement constitutional, statutory and/or policy guarantees for public access to information" +dc/topic/SDGSGINTMBRDEV,Proportion of members of developing countries in international organizations by International organization +dc/topic/SDGSGINTVRTDEV,Proportion of voting rights of developing countries in international organizations by International organization +dc/topic/SDGSGLGLGENEQEMP,"Level of achievement regarding legal frameworks that promote, enforce and monitor gender equality with respect to employment and economic benefits (Area 3)" +dc/topic/SDGSGLGLGENEQLFP,"Level of achievement regarding legal frameworks that promote, enforce and monitor gender equality with respect to overarching legal frameworks and public life (Area 1)" +dc/topic/SDGSGLGLGENEQMAR,"Level of achievement regarding legal frameworks that promote, enforce and monitor gender equality with respect to marriage and family (Area 4)" +dc/topic/SDGSGLGLGENEQVAW,"Level of achievement regarding legal frameworks that promote, enforce and monitor gender equality with respect to violence against women (Area 2)" +dc/topic/SDGSGLGLLNDFEMOD,Degree to which the legal framework (including customary law) guarantees women’s equal rights to land ownership and/or control +dc/topic/SDGSGNHRCMPLNC,Countries with National Human Rights Institutions in compliance with the Paris Principles +dc/topic/SDGSGNHRIMPL,Proportion of countries with independent National Human Rights Institutions in compliance with the Paris Principles +dc/topic/SDGSGNHRINTEXST,Proportion of countries that applied for accreditation as independent National Human Rights Institutions in compliance with the Paris Principles +dc/topic/SDGSGPLNMSTKSDGP,Number of provider countries reporting progress in multi-stakeholder development effectiveness monitoring frameworks that support the achievement of the sustainable development goals +dc/topic/SDGSGPLNMSTKSDGR,Number of recipient countries reporting progress in multi-stakeholder development effectiveness monitoring frameworks that support the achievement of the sustainable development goals +dc/topic/SDGSGPLNPRPOLRES,Extent of use of country-owned results frameworks and planning tools by providers of development cooperation - data by provider +dc/topic/SDGSGPLNPRVNDI,Proportion of project objectives of new development interventions drawn from country-led result frameworks - data by provider +dc/topic/SDGSGPLNPRVRICTRY,Proportion of results indicators drawn from country-led results frameworks - data by provider +dc/topic/SDGSGPLNPRVRIMON,Proportion of results indicators which will be monitored using government sources and monitoring systems - data by provider +dc/topic/SDGSGPLNRECNDI,Proportion of project objectives in new development interventions drawn from country-led result frameworks - data by recipient +dc/topic/SDGSGPLNRECRICTRY,Proportion of results indicators drawn from country-led results frameworks - data by recipient +dc/topic/SDGSGPLNRECRIMON,Proportion of results indicators which will be monitored using government sources and monitoring systems - data by recipient +dc/topic/SDGSGPLNREPOLRES,Extent of use of country-owned results frameworks and planning tools by providers of development cooperation - data by recipient +dc/topic/SDGSGREGBRTH,Proportion of children under 5 years of age whose births have been registered with a civil authority by Age group +dc/topic/SDGSGREGBRTH90,Proportion of countries with birth registration data that are at least 90 percent complete +dc/topic/SDGSGREGBRTH90N,Countries with birth registration data that are at least 90 percent complete +dc/topic/SDGSGREGCENSUS,Proportion of countries that have conducted at least one population and housing census in the last 10 years +dc/topic/SDGSGREGCENSUSN,Countries that have conducted at least one population and housing census in the last 10 years +dc/topic/SDGSGREGDETH75,Proportion of countries with death registration data that are at least 75 percent complete +dc/topic/SDGSGREGDETH75N,Countries with death registration data that are at least 75 percent complete +dc/topic/SDGSGSCPCNTRY,Countries with sustainable consumption and production (SCP) national action plans or SCP mainstreamed as a priority or target into national policies +dc/topic/SDGSGSCPPOLINS,Countries with policy instrument for sustainable consumption and production by Policy instrument +dc/topic/SDGSGSCPPROCN,Number of countries implementing sustainable public procurement policies and action plans by Level of implementation +dc/topic/SDGSGSCPPROCNHS,Number of countries implementing sustainable public procurement policies and action plans at higher subnational level by level of implementation (Artigas) by Level of implementation +dc/topic/SDGSGSCPPROCNLS,Number of countries implementing sustainable public procurement policies and action plans at lower subnational level by level of implementation (Ayuntamiento de Barcelona) by Level of implementation +dc/topic/SDGSGSCPTOTLN,"Number of policies, instruments and mechanism in place for sustainable consumption and production" +dc/topic/SDGSGSTTCAPTY,Dollar value of all resources made available to strengthen statistical capacity in developing countries +dc/topic/SDGSGSTTFPOS,Countries with national statistical legislation that complies with the Fundamental Principles of Official Statistics +dc/topic/SDGSGSTTNSDSFDDNR,Countries with national statistical plans with funding from donors +dc/topic/SDGSGSTTNSDSFDGVT,Countries with national statistical plans with funding from government +dc/topic/SDGSGSTTNSDSFDOTHR,Countries with national statistical plans with funding from others +dc/topic/SDGSGSTTNSDSFND,Countries with national statistical plans that are fully funded +dc/topic/SDGSGSTTNSDSIMPL,Countries with national statistical plans that are under implementation +dc/topic/SDGSGSTTODIN,Open Data Inventory (ODIN) Coverage Index +dc/topic/SDGSGXPDEDUC,Proportion of total government spending on essential services: education +dc/topic/SDGSGXPDESSRV,Proportion of total government spending on essential services +dc/topic/SDGSGXPDHLTH,Proportion of total government spending on essential services: health +dc/topic/SDGSGXPDPROT,Proportion of total government spending on essential services: social protection +dc/topic/SDGSHAAPASMORT,Age-standardized mortality rate attributed to ambient air pollution +dc/topic/SDGSHACSDTP3,Proportion of the target population who received 3 doses of diphtheria-tetanus-pertussis (DTP3) vaccine +dc/topic/SDGSHACSHPV,Proportion of the target population who received the final dose of human papillomavirus (HPV) vaccine +dc/topic/SDGSHACSMCV2,Proportion of the target population who received measles-containing-vaccine second-dose (MCV2) +dc/topic/SDGSHACSPCV3,Proportion of the target population who received a 3rd dose of pneumococcal conjugate (PCV3) vaccine +dc/topic/SDGSHACSUNHC,Universal health coverage (UHC) service coverage index +dc/topic/SDGSHALCCONSPT,Alcohol consumption per capita among individuals aged 15 years and older within a calendar year +dc/topic/SDGSHBLDECOLI,"Percentage of bloodstream infection due to Escherichia coli resistant to 3rd-generation cephalosporin (e.g., ESBL- E. coli) among patients seeking care and whose blood sample is taken and tested" +dc/topic/SDGSHBLDMRSA,Percentage of bloodstream infection due to methicillin-resistant Staphylococcus aureus (MRSA) among patients seeking care and whose blood sample is taken and tested +dc/topic/SDGSHDTHNCD,Number of deaths attributed to non-communicable diseases by Disease +dc/topic/SDGSHDTHNCOM,"Mortality rate attributed to cardiovascular disease, cancer, diabetes or chronic respiratory disease (probability) (30 to 70 years old) by Sex" +dc/topic/SDGSHDYNIMRT,Infant mortality rate (under 1 year old) by Sex +dc/topic/SDGSHDYNIMRTN,Infant deaths (under 1 year old) by Sex +dc/topic/SDGSHDYNMORT,Under-five mortality rate (under 5 years old) by Sex +dc/topic/SDGSHDYNMORTN,Under-five deaths (under 5 years old) by Sex +dc/topic/SDGSHDYNNMRT,Neonatal mortality rate +dc/topic/SDGSHDYNNMRTN,Neonatal deaths +dc/topic/SDGSHFPLINFM,"Proportion of women who make their own informed decisions regarding sexual relations, contraceptive use and reproductive health care (15 to 49 years old)" +dc/topic/SDGSHFPLINFMCU,Proportion of women who make their own informed decisions regarding contraceptive use (15 to 49 years old) +dc/topic/SDGSHFPLINFMRH,Proportion of women who make their own informed decisions regarding reproductive health care (15 to 49 years old) +dc/topic/SDGSHFPLINFMSR,Proportion of women who make their own informed decisions regarding sexual relations (15 to 49 years old) +dc/topic/SDGSHFPLMTMM,Proportion of women of reproductive age (aged 15-49 years) who have their need for family planning satisfied with modern methods +dc/topic/SDGSHH2OSAFE,Proportion of population using safely managed drinking water services +dc/topic/SDGSHHAPASMORT,Age-standardized mortality rate attributed to household air pollution +dc/topic/SDGSHHAPHBSAG,Prevalence of hepatitis B surface antigen (HBsAg) (under 5 years old) +dc/topic/SDGSHHIVINCD,"Number of new HIV infections per 1, 000 uninfected population" +dc/topic/SDGSHHLFEMED,Proportion of health facilities that have a core set of relevant essential medicines available and affordable on a sustainable basis +dc/topic/SDGSHIHRCAPS,International Health Regulations (IHR) capacity +dc/topic/SDGSHLGRACSRHE,"Extent to which countries have 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" +dc/topic/SDGSHLGRACSRHEC1,"Extent to which countries have 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 (maternity care component)" +dc/topic/SDGSHLGRACSRHEC10,"Extent to which countries have 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 (HIV testing and counsellilng component)" +dc/topic/SDGSHLGRACSRHEC11,"Extent to which countries have 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 (HIV treatment and care component)" +dc/topic/SDGSHLGRACSRHEC12,"Extent to which countries have 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 (HIV Confidentiality component)" +dc/topic/SDGSHLGRACSRHEC13,"Extent to which countries have 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 (HPV Vaccine component)" +dc/topic/SDGSHLGRACSRHEC2,"Extent to which countries have 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 (life-saving commodities component)" +dc/topic/SDGSHLGRACSRHEC3,"Extent to which countries have 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 (abortion component)" +dc/topic/SDGSHLGRACSRHEC4,"Extent to which countries have 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 (post-abortion care component)" +dc/topic/SDGSHLGRACSRHEC5,"Extent to which countries have 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 (contraceptive services component)" +dc/topic/SDGSHLGRACSRHEC6,"Extent to which countries have 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 (consent for contraceptive services component)" +dc/topic/SDGSHLGRACSRHEC7,"Extent to which countries have 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 (emergency contraception component)" +dc/topic/SDGSHLGRACSRHEC8,"Extent to which countries have 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 (comprehensive sexuality education curriculum laws component)" +dc/topic/SDGSHLGRACSRHEC9,"Extent to which countries have 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 (comprehensive sexuality education curriculum topics component)" +dc/topic/SDGSHLGRACSRHES1,"Extent to which countries have 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 (maternity care section)" +dc/topic/SDGSHLGRACSRHES2,"Extent to which countries have 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 (contraception and family planning section)" +dc/topic/SDGSHLGRACSRHES3,"Extent to which countries have 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 (comprehensive sexuality education and information section)" +dc/topic/SDGSHLGRACSRHES4,"Extent to which countries have 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 (HIV and HPV)" +dc/topic/SDGSHMEDDEN,Health worker density by Professionals (ISCO08 - 2) +dc/topic/SDGSHMEDHWRKDIS,Health worker distribution (Female) by Professionals (ISCO08 - 2) +dc/topic/SDGSHPRVSMOK,Age-standardized prevalence of current tobacco use among persons aged 15 years and older +dc/topic/SDGSHSANDEFECT,Proportion of population practicing open defecation +dc/topic/SDGSHSANHNDWSH,Proportion of population with basic handwashing facilities on premises +dc/topic/SDGSHSANSAFE,Proportion of population using safely managed sanitation services +dc/topic/SDGSHSTAANEM,Proportion of women aged 15-49 years with anaemia +dc/topic/SDGSHSTAANEMNPRG,Proportion of non-pregnant women aged 15-49 years with anaemia +dc/topic/SDGSHSTAANEMPREG,"Proportion of women aged 15-49 years with anaemia, pregnant" +dc/topic/SDGSHSTAASAIRP,Age-standardized mortality rate attributed to household and ambient air pollution +dc/topic/SDGSHSTABRTC,Proportion of births attended by skilled health personnel +dc/topic/SDGSHSTAFGMS,Proportion of girls and women aged 15-49 years who have undergone female genital mutilation by Age group +dc/topic/SDGSHSTAMALR,"Malaria incidence per 1, 000 population at risk" +dc/topic/SDGSHSTAMORT,Maternal mortality ratio +dc/topic/SDGSHSTAPOISN,Mortality rate attributed to unintentional poisonings +dc/topic/SDGSHSTASCIDE,Suicide mortality rate +dc/topic/SDGSHSTASCIDEN,Number of deaths attributed to suicide +dc/topic/SDGSHSTASTNT,Proportion of children moderately or severely stunted +dc/topic/SDGSHSTASTNTN,Children moderately or severely stunted +dc/topic/SDGSHSTATRAF,Death rate due to road traffic injuries +dc/topic/SDGSHSTATRAFN,Number of deaths rate due to road traffic injuries +dc/topic/SDGSHSTAWASHARI,"Mortality rate attributed to unsafe water, unsafe sanitation and lack of hygiene from diarrhoea, intestinal nematode infections, malnutrition and acute respiratory infections" +dc/topic/SDGSHSTAWAST,Proportion of children moderately or severely wasted +dc/topic/SDGSHSTAWASTN,Children moderately or severely wasted +dc/topic/SDGSHSUDALCOL,"Alcohol use disorders, 12-month prevalence (15 years old and over) by Sex" +dc/topic/SDGSHSUDTREAT,"Coverage of treatment interventions (pharmacological, psychosocial and rehabilitation and aftercare services) for substance use disorders by Type of substance" +dc/topic/SDGSHTBSINCD,Tuberculosis incidence +dc/topic/SDGSHTRPINTVN,Number of people requiring interventions against neglected tropical diseases +dc/topic/SDGSHXPDEARN10,Proportion of population with large household expenditures on health (greater than 10%) as a share of total household expenditure or income +dc/topic/SDGSHXPDEARN25,Proportion of population with large household expenditures on health (greater than 25%) as a share of total household expenditure or income +dc/topic/SDGSIAGRLSFP,"Average income of large-scale food producers, at purchasing-power parity rates" +dc/topic/SDGSIAGRSSFP,"Average income of small-scale food producers, at purchasing-power parity rates" +dc/topic/SDGSICOVBENFTS,ILO Proportion of population covered by at least one social protection benefit +dc/topic/SDGSICOVCHLD,ILO Proportion of children/households receiving child/family cash benefit by Sex +dc/topic/SDGSICOVDISAB,ILO Proportion of population with severe disabilities receiving disability cash benefit +dc/topic/SDGSICOVLMKT,World Bank Proportion of population covered by labour market programs +dc/topic/SDGSICOVMATNL,ILO Proportion of mothers with newborns receiving maternity cash benefit by Age group +dc/topic/SDGSICOVPENSN,"ILO Proportion of population above statutory pensionable age receiving a pension, by Age group" +dc/topic/SDGSICOVPOOR,ILO Proportion of poor population receiving social assistance cash benefit +dc/topic/SDGSICOVSOCAST,World Bank Proportion of population covered by social assistance programs +dc/topic/SDGSICOVSOCINS,World Bank Proportion of population covered by social insurance programs +dc/topic/SDGSICOVUEMP,ILO Proportion of unemployed persons receiving unemployment cash benefit by Age group +dc/topic/SDGSICOVVULN,ILO Proportion of vulnerable population receiving social assistance cash benefit by Sex +dc/topic/SDGSICOVWKINJRY,ILO Proportion of employed population covered in the event of work injury by Sex +dc/topic/SDGSIDSTFISP,"Redistributive impact of fiscal policy, Gini index by Fiscal intervention stage" +dc/topic/SDGSIHEITOTL,Growth rates of household expenditure or income per capita +dc/topic/SDGSIPOV50MI,Proportion of people living below 50 percent of median income by Quantile +dc/topic/SDGSIPOVDAY1,Proportion of population below international poverty line +dc/topic/SDGSIPOVEMP1,Employed population below international poverty line by Age group +dc/topic/SDGSIPOVNAHC,Proportion of population living below the national poverty line +dc/topic/SDGSIRMTCOST,Average remittance costs of sending $200 to a receiving country as a proportion of the amount remitted +dc/topic/SDGSIRMTCOSTBC,Average remittance costs of sending $200 in a corridor as a proportion of the amount remitted +dc/topic/SDGSIRMTCOSTSC,SmaRT average remittance costs of sending $200 in a corridor as a proportion of the amount remitted +dc/topic/SDGSIRMTCOSTSND,Average remittance costs of sending $200 for a sending country as a proportion of the amount remitted +dc/topic/SDGSLCPAYEMP,"Existence of a developed and operationalized national strategy for youth employment, as a distinct strategy or as part of a national employment strategy" +dc/topic/SDGSLDOMTSPD,Proportion of time spent on unpaid domestic chores and care work (10 to 14 years old) by Sex +dc/topic/SDGSLDOMTSPDCW,Proportion of time spent on unpaid care work (10 to 14 years old) by Sex +dc/topic/SDGSLDOMTSPDDC,Proportion of time spent on unpaid domestic chores (10 to 14 years old) by Sex +dc/topic/SDGSLEMPEARN,Average hourly earnings of employees in local currency by Age group +dc/topic/SDGSLEMPFTLINJUR,Fatal occupational injuries among employees +dc/topic/SDGSLEMPGTOTL,Labour share of GDP by Age group +dc/topic/SDGSLEMPINJUR,Non-fatal occupational injuries among employees +dc/topic/SDGSLEMPPCAP,Annual growth rate of real GDP per employed person (15 years old and over) +dc/topic/SDGSLEMPRCOSTMO,Migrant recruitment costs (number of months of earnings) by Sex +dc/topic/SDGSLISVIFEM,"Proportion of informal employment, previous definition (15 years old and over)" +dc/topic/SDGSLISVIFEM19ICLS,"Proportion of informal employment, current definition (15 years old and over)" +dc/topic/SDGSLLBRNTLCPL,Level of national compliance with labour rights (freedom of association and collective bargaining) based on International Labour Organization (ILO) textual sources and national legislation +dc/topic/SDGSLTLFCHLDEA,Proportion of children engaged in economic activity by Age group +dc/topic/SDGSLTLFCHLDEC,Proportion of children engaged in economic activity and household chores by Age group +dc/topic/SDGSLTLFMANF,Manufacturing employment as a proportion of total employment - previous definition +dc/topic/SDGSLTLFMANF19ICLS,Manufacturing employment as a proportion of total employment - current definition +dc/topic/SDGSLTLFNEET,"Proportion of youth not in education, employment or training - previous definition by Age group" +dc/topic/SDGSLTLFNEET19ICLS,"Proportion of youth not in education, employment or training - current definition by Age group" +dc/topic/SDGSLTLFUEM,Unemployment rate by sex and age - previous definition by Age group +dc/topic/SDGSLTLFUEMDIS,Unemployment rate by sex and disability - previous definition (15 years old and over) +dc/topic/SDGSLTLFUEMDIS19ICLS,Unemployment rate by sex and disability - current definition (15 years old and over) +dc/topic/SDGSLTLFUEM19ICLS,Unemployment rate by sex and age - current definition by Age group +dc/topic/SDGSMDTHMIGR,Total deaths and disappearances recorded during migration +dc/topic/SDGSMPOPREFGOR,"Number of refugees per 100, 000 population" +dc/topic/SDGSNITKDEFC,Prevalence of undernourishment +dc/topic/SDGSNITKDEFCN,Number of undernourished people +dc/topic/SDGSNSTAOVWGT,Proportion of children under 5 years old moderately or severely overweight +dc/topic/SDGSNSTAOVWGTN,Children under 5 years old moderately or severely overweight +dc/topic/SDGSPACSBSRVH2O,Proportion of population using basic drinking water services +dc/topic/SDGSPACSBSRVSAN,Proportion of population using basic sanitation services +dc/topic/SDGSPDISPRESOL,Proportion of the population who have experienced a dispute in the past two years who accessed a formal or informal dispute resolution mechanism +dc/topic/SDGSPDYNADKL,Adolescent birth rate +dc/topic/SDGSPDYNMRBF15,Proportion of women aged 20-24 years who were married or in a union before age 15 +dc/topic/SDGSPDYNMRBF18,Proportion of women aged 20-24 years who were married or in a union before age 18 +dc/topic/SDGSPGNPWNOWNS,Share of women among owners or rights-bearers of agricultural land +dc/topic/SDGSPLGLLNDAGSEC,Proportion of total agricultural population with ownership or secure rights over agricultural land +dc/topic/SDGSPLGLLNDDOC,Proportion of people with legally recognized documentation of their rights to land out of total adult population by Sex +dc/topic/SDGSPLGLLNDSEC,Proportion of people who perceive their rights to land as secure out of total adult population +dc/topic/SDGSPLGLLNDSTR,Proportion of people with secure tenure rights to land out of total adult population by Sex +dc/topic/SDGSPPSROSATISGOV,Proportion of population who say that overall they are satisfied with the quality of government services +dc/topic/SDGSPPSROSATISHLTH,Proportion of population who say that overall they are satisfied with the quality of healthcare services +dc/topic/SDGSPPSROSATISPRM,Proportion of population who say that overall they are satisfied with the quality of primary education services +dc/topic/SDGSPPSROSATISSEC,Proportion of population who say that overall they are satisfied with the quality of secondary education services +dc/topic/SDGSPPSRSATISGOV,Proportion of population satisfied with their last experience of government services (25 to 34 years old) by Service attribute +dc/topic/SDGSPPSRSATISHLTH,Proportion of population satisfied with their last experience of public healthcare services (25 to 34 years old) by Service attribute +dc/topic/SDGSPPSRSATISPRM,Proportion of population satisfied with their last experience of public primary education services (25 to 34 years old) by Service attribute +dc/topic/SDGSPPSRSATISSEC,Proportion of population satisfied with their last experience of public secondary education services (25 to 34 years old) by Service attribute +dc/topic/SDGSPRODR2KM,Proportion of the rural population who live within 2 km of an all-season road +dc/topic/SDGSPTRNPUBL,Proportion of population that has convenient access to public transport +dc/topic/SDGSTEEVACCSEEA,Implementation of standard accounting tools to monitor the economic and environmental aspects of tourism (SEEA tables) +dc/topic/SDGSTEEVACCTSA,Implementation of standard accounting tools to monitor the economic and environmental aspects of tourism (Tourism Satellite Account tables) +dc/topic/SDGSTEEVSTDACCT,Implementation of standard accounting tools to monitor the economic and environmental aspects of tourism (number of tables) +dc/topic/SDGSTGDPZS,Tourism direct GDP as a proportion of total GDP +dc/topic/SDGTGVALTOTLGDZS,Merchandise trade as a proportion of GDP +dc/topic/SDGTMTAXDMFN,"Average tariff applied by developed countries, most-favored nation status" +dc/topic/SDGTMTAXDPRF,"Average tariff applied by developed countries, preferential status" +dc/topic/SDGTMTAXWMFN,"Worldwide weighted tariff-average, most-favoured-nation status" +dc/topic/SDGTMTAXWMPS,"Worldwide weighted tariff-average, preferential status" +dc/topic/SDGTMTRFZERO,Proportion of tariff lines applied to imports with zero-tariff +dc/topic/SDGTXEXPGBMRCH,Developing countries’ and least developed countries’ share of global merchandise exports +dc/topic/SDGTXEXPGBSVR,Developing countries’ and least developed countries’ share of global services exports +dc/topic/SDGTXIMPGBMRCH,Developing countries’ and least developed countries’ share of global merchandise imports +dc/topic/SDGTXIMPGBSVR,Developing countries’ and least developed countries’ share of global services imports +dc/topic/SDGVCARMSZTRACE,"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" +dc/topic/SDGVCDSRAFFCT,Number of people affected by disasters +dc/topic/SDGVCDSRAGLH,Direct agriculture loss attributed to disasters +dc/topic/SDGVCDSRBSDN,Number of disruptions to basic services attributed to disasters +dc/topic/SDGVCDSRCDAN,Number of damaged critical infrastructure attributed to disasters +dc/topic/SDGVCDSRCDYN,Number of other destroyed or damaged critical infrastructure units and facilities attributed to disasters +dc/topic/SDGVCDSRCHLN,Direct economic loss to cultural heritage damaged or destroyed attributed to disasters +dc/topic/SDGVCDSRCILN,Direct economic loss resulting from damaged or destroyed critical infrastructure attributed to disasters +dc/topic/SDGVCDSRDAFF,"Number of directly affected persons attributed to disasters per 100, 000 population" +dc/topic/SDGVCDSRDDPA,Direct economic loss to other damaged or destroyed productive assets attributed to disasters +dc/topic/SDGVCDSREFDN,Number of destroyed or damaged educational facilities attributed to disasters +dc/topic/SDGVCDSRESDN,Number of disruptions to educational services attributed to disasters +dc/topic/SDGVCDSRGDPLS,Direct economic loss attributed to disasters +dc/topic/SDGVCDSRHFDN,Number of destroyed or damaged health facilities attributed to disasters +dc/topic/SDGVCDSRHOLH,Direct economic loss in the housing sector attributed to disasters +dc/topic/SDGVCDSRHSDN,Number of disruptions to health services attributed to disasters +dc/topic/SDGVCDSRIJILN,Number of injured or ill people attributed to disasters +dc/topic/SDGVCDSRLSGP,Direct economic loss attributed to disasters relative to GDP +dc/topic/SDGVCDSRMISS,Number of missing persons due to disaster +dc/topic/SDGVCDSRMMHN,Number of deaths and missing persons attributed to disasters +dc/topic/SDGVCDSRMORT,Number of deaths due to disaster +dc/topic/SDGVCDSRMTMP,"Number of deaths and missing persons attributed to disasters per 100, 000 population" +dc/topic/SDGVCDSROBDN,Number of disruptions to other basic services attributed to disasters +dc/topic/SDGVCDSRPDAN,Number of people whose damaged dwellings were attributed to disasters +dc/topic/SDGVCDSRPDLN,"Number of people whose livelihoods were disrupted or destroyed, attributed to disasters" +dc/topic/SDGVCDSRPDYN,Number of people whose destroyed dwellings were attributed to disasters +dc/topic/SDGVCDTHTOCVN,Number of conflict-related deaths (civilians) +dc/topic/SDGVCDTHTONCVN,Number of conflict-related deaths (non-civilians) +dc/topic/SDGVCDTHTOTN,Number of total conflict-related deaths +dc/topic/SDGVCDTHTOTPT,Conflict-related total death rate +dc/topic/SDGVCDTHTOTR,"Number of total conflict-related deaths per 100, 000 population" +dc/topic/SDGVCDTHTOUNN,Number of conflict-related deaths (unknown) +dc/topic/SDGVCHTFDETV,Detected victims of human trafficking +dc/topic/SDGVCHTFDETVFL,"Detected victims of human trafficking for forced labour, servitude and slavery" +dc/topic/SDGVCHTFDETVFLR,"Detected victims of human trafficking for forced labour, servitude and slavery" +dc/topic/SDGVCHTFDETVOG,Detected victims of human trafficking for removal of organ +dc/topic/SDGVCHTFDETVOGR,Detected victims of human trafficking for removal of organ +dc/topic/SDGVCHTFDETVOP,Detected victims of human trafficking for other purposes +dc/topic/SDGVCHTFDETVOPR,Detected victims of human trafficking for other purposes +dc/topic/SDGVCHTFDETVR,Detected victims of human trafficking +dc/topic/SDGVCHTFDETVSX,Detected victims of human trafficking for sexual exploitation +dc/topic/SDGVCHTFDETVSXR,Detected victims of human trafficking for sexual exploitation +dc/topic/SDGVCIHRPSRC,"Number of victims of intentional homicide per 100, 000 population" +dc/topic/SDGVCIHRPSRCN,Number of victims of intentional homicide +dc/topic/SDGVCPRRPHYV,Police reporting rate for physical assault in the previous 12 months +dc/topic/SDGVCPRRPHYVIO,Police reporting rate for physical violence in the previous 12 months +dc/topic/SDGVCPRRPSYCHV,Police reporting rate for psychological violence in the previous 12 months +dc/topic/SDGVCPRRROBB,Police reporting rate for robbery in the previous 12 months +dc/topic/SDGVCPRRSEXV,Police reporting rate for sexual assault in the previous 12 months +dc/topic/SDGVCPRRSEXVIO,Police reporting rate for sexual violence in the previous 12 months +dc/topic/SDGVCPRSUNSNT,Unsentenced detainees as a proportion of overall prison population +dc/topic/SDGVCSNSWALNDRK,Proportion of population that feel safe walking alone around the area they live after dark +dc/topic/SDGVCVAWMARR,Proportion of ever-partnered women and girls subjected to physical and/or sexual violence by a current or former intimate partner in the previous 12 months by Age group +dc/topic/SDGVCVAWMTUHRA,"Number of cases of killings of human rights defenders, journalists and trade unionists" +dc/topic/SDGVCVAWMTUHRAN,"Countries with at least one verified case of killings of human rights defenders, journalists, and trade unionists" +dc/topic/SDGVCVAWPHYPYV,Proportion of children aged 1-14 years who experienced physical punishment and/or psychological aggression by caregivers in last month by Age group +dc/topic/SDGVCVAWSXVLN,Proportion of population aged 18-29 years who experienced sexual violence by age\xa018 (18 to 29 years old) by Sex +dc/topic/SDGVCVOCENFDIS,"Number of cases of enforced disappearance of human rights defenders, journalists and trade unionists" +dc/topic/SDGVCVOHSXPH,"Proportion of persons victim of non-sexual or sexual harassment, in the previous 12 months" +dc/topic/SDGVCVOVGDSD,Proportion of population reporting having felt discriminated against +dc/topic/SDGVCVOVPHYL,Proportion of population subjected to physical violence in the previous 12 months +dc/topic/SDGVCVOVPHYASLT,Proportion of population subjected to physical assault in the previous 12 months +dc/topic/SDGVCVOVPSYCHL,Proportion of population subjected to psychological violence in the previous 12 months +dc/topic/SDGVCVOVROBB,Proportion of population subjected to robbery in the previous 12 months +dc/topic/SDGVCVOVSEXL,Proportion of population subjected to sexual violence in the previous 12 months +dc/topic/SDGVCVOVSEXASLT,Proportion of population subjected to sexual assault in the previous 12 months From e5b99444a9c7286091c87bbec5cda2e727525f02 Mon Sep 17 00:00:00 2001 From: kmoscoe <165203920+kmoscoe@users.noreply.github.com> Date: Mon, 9 Dec 2024 10:30:34 -0800 Subject: [PATCH 2/5] Added FAQ entry and updated several others (#4760) - Add an item about when data is (not) suitable for DC - Updated several other outdated items, especially to use new Issue Tracker - Reorganized some items for a more logical order --------- Co-authored-by: Hannah Pho --- server/templates/static/faq.html | 165 +++++++++++++------------------ 1 file changed, 67 insertions(+), 98 deletions(-) diff --git a/server/templates/static/faq.html b/server/templates/static/faq.html index ed662173dd..69addf8a40 100644 --- a/server/templates/static/faq.html +++ b/server/templates/static/faq.html @@ -1,17 +1,17 @@ {# - Copyright 2023 Google LLC +Copyright 2023 Google LLC - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 +http://www.apache.org/licenses/LICENSE-2.0 - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. #} {%- extends BASE_HTML -%} @@ -20,7 +20,7 @@ {% set title = 'Frequently Asked Questions' %} {% block head %} - + {% endblock %} {% block content %} @@ -31,7 +31,7 @@

Frequently Asked Questions

Data Commons, an open source initiative from Google, organizes the world’s publicly available information and makes it more accessible and useful. Learn more on About Data - Commons. + Commons.
Q: Who can use Data Commons?
Data Commons is available for anyone to use. Our goal is to make the @@ -43,12 +43,30 @@

Frequently Asked Questions

There is no cost for the publicly available data, which is hosted on Google Cloud by Data Commons. For individuals or organizations who exceed the free usage limits, pricing will be in line with the BigQuery public dataset - program. + href="https://cloud.google.com/bigquery/public-data">BigQuery public dataset program. + +
Q: What is the difference between Data Commons and other other public dataset projects? +
Many public dataset projects provide a great service by aggregating + topical open data sets. However, using those data sets to answer specific + questions often involves 'foraging' — finding the data, cleaning the data, + reconciling different formats and schemas, figuring out how to merge data + about the same entity from different sources, etc. This error-prone and + tedious process is repeated, once (or more) by each organization working on an issue. This is a challenge in almost every area of study involving data, from the social sciences and physical sciences to public policy. Data Commons does this work once, on a large scale, and provides cloud-accessible APIs to the cleaned, normalized and joined data. While there are millions of datasets in every domain, some collections of data get used more frequently than others. + +
Q: What is the difference between Data Commons and Wikidata? +
The focus in Data Commons is on aggregating external, already available + data (with an emphasis on statistical data) from government agencies and + other authoritative sources. + +
Q: What is the relation between DataCommons.org and Schema.org? +
DataCommons.org builds upon the vocabularies defined by Schema.org, with + additional terms defined to cover concepts (e.g. "citizenship") that are + important to the data in Data Commons but which have not been a priority for Schema.org-based Web markup. The Data Commons schemas constitute an + "external extension" to Schema.org, similar to that provided by GS1. Some schemas could migrate into Schema.org if the community finds value in them.
Q: What is the new Explore interface to Data Commons?
Data Commons has a new Explore interface that uses large language models - (LLMs) to map your natural language question to the public data sets to + (LLMs) to map your natural-language question to the public data sets to extract the right visualizations to your question. We do not use LLMs to generate any data or visualizations; all responses are based on real data with sourced provenance from Data Commons. @@ -56,56 +74,48 @@

Frequently Asked Questions

Q: How do you choose which dataset to show in the Explore interface?
The LLMs powering Data Commons’ Explore interface use generative AI to identify the most likely response to your query. As we continue to improve - the interface, we will look to provide more options that allow the user to - select sources themselves. For now, you can always click the “Explore in …” - Tool setting to change the source of data. - -
Q: Can I submit or suggest data I think should be added to Data Commons? -
Yes, Data Commons is meant to be for the community, by the community and - we welcome new submissions or suggestions. If you’d like to submit data, - please review these - resources and follow this development - process. If you have a suggestion, please use this - Google Form. - -
Q: How can we access data in Data Commons? -
The data in knowledge graph can be accessed through the - Data Commons Knowledge Graph, - Data Commons Visualization tools, - and APIs for - Python, - REST and - Google Sheets. + the interface, we will look to provide more options that allow users to + select sources themselves. + +
Q: Is my data suitable for adding to Data Commons?
+
Data Commons is intended for public, statistical, macro data that benefits from being joined with other macrodata to derive new insights. Your data is a good fit for Data Commons if it meets the following criteria: +
    +
  • It can be licensed under the Creative Commons BY (CC BY) agreement.
  • +
  • It is pre-aggregated up to a minimal level that is common to other datasets; for example, an administrative area (place).
  • +
+ You can run your own Data Commons instance for data that is private and not appropriate for CC BY licensing. However, micro data, i.e. individual-level data, cannot currently be aggregated by Data Commons. In general, if there is no way to join your data with existing Data Commons datasets, on a common entity such as an administrative area or institution, there isn't much benefit to using Data Commons. + To determine whether your data is best served by the base Data Commons (Google-run datacommons.org) or by a custom instance that you run yourself, see the Custom Data Commons FAQ. +
+ +
Q: How can I suggest adding my data to Data Commons? +
Data Commons is meant to be for the community, by the community and + we welcome new submissions or suggestions. If you are interested in importing your data to Data Commons, please file a data request in our issue tracker.
Q: Where can I download all the data?
Given the size and evolving nature of the Data Commons knowledge graph, - we prefer you access it via the APIs. If your project needs local access to - a large fraction of the Data Commons Knowledge Graph, please fill - out this form. + you cannot download all the data. You can download all the data pertaining to a specific subset of metrics (variables). You can use the Data Download Tool to + download CSV files, or you can use the APIs to programmatically retrieve data in JSON format.
Q: How do we know if the data is accurate?
Data Commons provides an access mechanism to data, but cannot ensure accuracy. To provide as much context as possible, answers to queries will - include the provenance (source of the data). The choice of which data to use - is up to individuals. If you find something you think is in error, we would - love to hear from you. + include the provenance (source of the data). The choice of which data to use is up to individuals. If you find something you think is in error, please file a bug in our + issue tracker.
Q: How often is the data refreshed?
Different data sources refresh at different frequencies. We try to keep the data updated as the sources publish new versions of their data. If you - see something out of date, please file an issue on Github. + see something out of date, please file a bug in our issue tracker. -
Q: What are the SLAs / Performance levels we can expect? +
Q: What are the SLAs / performance levels we can expect?
The service is provided on an as-is basis with no SLA or commitments on availability or uptime.
Q: How do I cite datacommons.org?
To cite charts and tools on this site, please use the following format.
- Data Commons {{ current_year }}, Data Commons, viewed {{ current_date }}, <https://datacommons.org>. + Data Commons {{ current_year }}, Data Commons, viewed {{ current_date }}, + <https://datacommons.org>.

@@ -113,63 +123,22 @@

Frequently Asked Questions

- Data Commons {{ current_year }}, CDC Places, electronic dataset, Data Commons, viewed {{ current_date }}, <https://datacommons.org>. + Data Commons {{ current_year }}, CDC Places, electronic dataset, Data Commons, viewed {{ current_date }}, + <https://datacommons.org>.

In both cases, please use the date you viewed the site (in the examples above, we used {{ current_date }}).

-
Q: What is the difference between Data Commons and other other public dataset projects? -
Many public dataset projects provide a great service by aggregating - topical open data sets. However, using those data sets to answer specific - questions often involves 'foraging' — finding the data, cleaning the data, - reconciling different formats and schemas, figuring out how to merge data - about the same entity from different sources, etc. This error prone and - tedious process is repeated, once (or more) by each organization working on - an issue. This is a challenge in almost every area of study involving data, - from the social sciences and physical sciences to public policy. Data - Commons does this work once, on a large scale, and provides cloud accessible - APIs to the cleaned, normalized and joined data. While there are millions of - datasets in every domain, some collections of data get used more frequently - than others. We have started with a core set of these (over 120) in the hope - that useful applications can be built on top of them. - -
Q: What is the difference between Data Commons and Wikidata? -
The focus in Data Commons is on aggregating external, already available - data (with an emphasis on statistical data) from government agencies and - other authoritative sources. - -
Q: What is the relation between DataCommons.org and Schema.org? -
DataCommons.org builds upon the vocabularies defined by Schema.org, with - additional terms defined to cover concepts (e.g. "citizenship") that are - important to the data in Data Commons but which have not been a priority for - Schema.org-based Web markup. The Data Commons schemas constitute an - "external extension" to Schema.org, similar to that provided by GS1. - Some schemas could migrate into Schema.org if the community finds value in - them. -
Q: What are the usage rights of the data in Data Commons?
The Data Commons knowledge graph, and the compilation of the datasets is licensed under CC - BY. The Data Commons REST API and the R, Python Libraries are released - under Apache License - 2.0. The data included in Data Commons come from different sources. The - data provenance is provided for all the data, including a link to the - source. While we make every effort to obtain data from sources offering - unrestricted usage of underlying data, terms of use of data may be subject - to different licenses and terms of use, specified in linked source of the - data. - -
Q: Can my educational institution use Data Commons while complying with the Family - Educational Rights Privacy Act - (FERPA) - and/or similar state privacy requirements? -
Data Commons collects no personal information (PII), records, or private - information from users and can be used in compliance with - FERPA. - For specific questions about FERPA compliance, please contact your organization’s - legal counsel for advice. + BY. The Data Commons REST API and the R, Python Libraries are released under Apache License 2.0. The data included in Data Commons come from different sources. The data provenance is provided for all the data, including a link to the source. While we make every effort to obtain data from sources offering unrestricted usage of underlying data, terms of use of data may be subject to different licenses and terms of use, specified in the linked source of the data. + +
Q: Can my educational institution use Data Commons while complying with the Family Educational Rights Privacy Act + (FERPA) and/or similar state privacy + requirements? +
Data Commons collects no personal information (PII), records, or private information from users and can be used in compliance with FERPA. For specific questions about FERPA compliance, please contact your organization’s legal counsel for advice.
Q: What data do you collect about me?
Data Commons uses Google Analytics to collect non-identifiable usage @@ -177,4 +146,4 @@

Frequently Asked Questions

but do not associate IP address or any other identifiers with the queries. We do use in-session cookies to be able to manage state. -{% endblock %} + {% endblock %} \ No newline at end of file From 093cd4ed980ded2a06098c9ce5053b44cab2880d Mon Sep 17 00:00:00 2001 From: Nicholas Blumberg <41446765+nick-next@users.noreply.github.com> Date: Mon, 9 Dec 2024 13:31:01 -0800 Subject: [PATCH 3/5] Global header search (#4740) ### Description The purpose of this PR is to have the search bar in the header on all pages. Previously, pages by default did not have the search in the header, and had to be flagged in order to provide the search bar. Now, this flag is reversed and pages will contain the header search by default. The search bar has been removed from the explore page, and the more complicated search functionality provided in that page (such as the ability to programmatically change the current query and provide a debug modal) is now available to the universal search bar in the header. Related layout updates have been made to ensure that the explore page displays correctly with the internal search now gone, and the debug "bug" button is now aligned nicely (with the global search at the top). The debug modal has also been revamped. ### Notes When the search bar was inline in the explore page, that page could interact and share state with its inline search. This allowed the explore page to provide and programmatically update the query string as well as to provide debugging information, among other things. We now have to communicate that information from the explore page all the way to the header. Normally, we might consider options like React context, or lifting of state. However, in this case, the header and the explore page are in totally separate React apps with separate mount points, and that limits our ability to use more traditional methods to communicate this data. The solution implemented was to create a global "Query Store", that can be updated by a component in one app, and then have those changes provided to a component in another app. The query store provides a hook to facilitate this communication. This allows these otherwise completely independent applications to communicate with each other in a reactive way. --------- Co-authored-by: Pablo Noel --- server/templates/base.html | 9 +- server/templates/custom_dc/custom/base.html | 1 + .../custom_dc/feedingamerica/base.html | 1 + server/templates/custom_dc/floret/base.html | 1 + server/templates/custom_dc/iitm/base.html | 1 + server/templates/custom_dc/stanford/base.html | 1 + server/templates/custom_dc/unsdg/base.html | 1 + server/templates/explore.html | 2 + server/templates/explore_landing.html | 2 +- server/templates/static/about.html | 1 - server/templates/static/build.html | 2 - server/templates/static/homepage.html | 2 +- static/css/about.scss | 2 +- static/css/build.scss | 2 +- static/css/content/partners.scss | 2 +- static/css/content/sample_questions.scss | 160 ++--- static/css/core.scss | 9 +- static/css/explore.scss | 30 +- static/css/nl_interface.scss | 189 ++++-- .../base/components/header_bar/header_bar.tsx | 31 +- .../header_bar/header_bar_search.tsx | 59 +- static/js/apps/base/header_app.tsx | 21 +- static/js/apps/base/main.ts | 15 +- static/js/apps/explore/app.tsx | 32 +- static/js/apps/explore/debug_info.tsx | 587 ++++++++++-------- static/js/apps/explore/error_result.tsx | 14 +- static/js/apps/explore/main.ts | 10 +- static/js/apps/explore/success_result.tsx | 43 +- .../nl_search_bar/auto_complete_input.tsx | 2 +- static/js/shared/stores/query_store.ts | 90 +++ static/js/shared/stores/query_store_hook.tsx | 111 ++++ static/js/types/app/explore_types.ts | 7 +- static/webpack.config.js | 1 + 33 files changed, 948 insertions(+), 493 deletions(-) create mode 100644 static/js/shared/stores/query_store.ts create mode 100644 static/js/shared/stores/query_store_hook.tsx diff --git a/server/templates/base.html b/server/templates/base.html index 44d6c673ef..09e6fff470 100644 --- a/server/templates/base.html +++ b/server/templates/base.html @@ -21,7 +21,7 @@ Optional variables: - is_show_header_search_bar: boolean, if true, a search bar will appear in the header. Default false. + is_hide_header_search_bar: boolean, if true, the header will not contain a search bar. Default false. is_hide_full_footer: boolean, if true, hides the full expanded footer. Default false is_hide_sub_footer: boolean, if true, hides the sub footer. Default false locale: string, value for html lang attr @@ -108,7 +108,7 @@ - +
diff --git a/server/templates/custom_dc/custom/base.html b/server/templates/custom_dc/custom/base.html index 8b6c22f406..69d4ad080f 100644 --- a/server/templates/custom_dc/custom/base.html +++ b/server/templates/custom_dc/custom/base.html @@ -62,6 +62,7 @@ {% if OVERRIDE_CSS_PATH %} {% endif %} + diff --git a/server/templates/custom_dc/feedingamerica/base.html b/server/templates/custom_dc/feedingamerica/base.html index 3d36bea042..bac782b15f 100644 --- a/server/templates/custom_dc/feedingamerica/base.html +++ b/server/templates/custom_dc/feedingamerica/base.html @@ -54,6 +54,7 @@ {% block head %} {% endblock %} + diff --git a/server/templates/custom_dc/floret/base.html b/server/templates/custom_dc/floret/base.html index a54fdea481..848c765acb 100644 --- a/server/templates/custom_dc/floret/base.html +++ b/server/templates/custom_dc/floret/base.html @@ -69,6 +69,7 @@ globalThis.isCustomDC = {{ config['CUSTOM']|int }}; globalThis.STAT_VAR_HIERARCHY_CONFIG = {{ config['STAT_VAR_HIERARCHY_CONFIG'] | tojson }}; + diff --git a/server/templates/custom_dc/iitm/base.html b/server/templates/custom_dc/iitm/base.html index 44eaef609e..8cb5de218b 100644 --- a/server/templates/custom_dc/iitm/base.html +++ b/server/templates/custom_dc/iitm/base.html @@ -53,6 +53,7 @@ {% block head %} {% endblock %} + diff --git a/server/templates/custom_dc/stanford/base.html b/server/templates/custom_dc/stanford/base.html index 24e8af4504..3c6437cb60 100644 --- a/server/templates/custom_dc/stanford/base.html +++ b/server/templates/custom_dc/stanford/base.html @@ -64,6 +64,7 @@ {% if OVERRIDE_CSS_PATH %} {% endif %} + diff --git a/server/templates/custom_dc/unsdg/base.html b/server/templates/custom_dc/unsdg/base.html index 6e00ecf688..90b100f0b8 100644 --- a/server/templates/custom_dc/unsdg/base.html +++ b/server/templates/custom_dc/unsdg/base.html @@ -57,6 +57,7 @@ + diff --git a/server/templates/explore.html b/server/templates/explore.html index c9ee76c394..19e66c1b4e 100644 --- a/server/templates/explore.html +++ b/server/templates/explore.html @@ -15,6 +15,8 @@ #} {%- extends BASE_HTML -%} + {% set is_search_bar_hash_mode = true %} + {% set ga_value_search_source = 'explore' %} {% set is_hide_full_footer = true %} {% set main_id = 'explore' %} {% set page_id = 'explore-page' %} diff --git a/server/templates/explore_landing.html b/server/templates/explore_landing.html index f2bc2889c3..c8e79ad502 100644 --- a/server/templates/explore_landing.html +++ b/server/templates/explore_landing.html @@ -20,7 +20,7 @@ {% set main_id = 'explore-landing' %} {% set page_id = 'explore-landing-page' %} {% set title = 'Explore ' + topic | title %} -{% set is_show_header_search_bar = true %} + {% set is_hide_header_search_bar = true %} {% block head %} diff --git a/server/templates/static/about.html b/server/templates/static/about.html index 6b903458bc..91762e30ce 100644 --- a/server/templates/static/about.html +++ b/server/templates/static/about.html @@ -18,7 +18,6 @@ {% set main_id = 'about' %} {% set page_id = 'page-about' %} {% set title = 'About Us' %} -{% set is_show_header_search_bar = true %} {% block head %} diff --git a/server/templates/static/build.html b/server/templates/static/build.html index 750ef36217..ed6f89154d 100644 --- a/server/templates/static/build.html +++ b/server/templates/static/build.html @@ -13,13 +13,11 @@ See the License for the specific language governing permissions and limitations under the License. #} - {%- extends BASE_HTML -%} {% set main_id = 'build' %} {% set page_id = 'page-build' %} {% set title = 'Build your own Data Commons' %} -{% set is_show_header_search_bar = true %} {% block head %} diff --git a/server/templates/static/homepage.html b/server/templates/static/homepage.html index 16770990d1..ecaf06d18f 100644 --- a/server/templates/static/homepage.html +++ b/server/templates/static/homepage.html @@ -19,7 +19,7 @@ {% set page_id = 'page-homepage' %} {% set title = 'Home' %} {% set brand_logo_light = false %} - {% set is_show_header_search_bar = true %} + {% macro external_icon() -%} diff --git a/static/css/about.scss b/static/css/about.scss index 6d3a19c4a5..b43b1f7e4c 100644 --- a/static/css/about.scss +++ b/static/css/about.scss @@ -38,4 +38,4 @@ padding: var.$container-horizontal-padding calc(#{var.$spacing} * 3); } } -} \ No newline at end of file +} diff --git a/static/css/build.scss b/static/css/build.scss index 6aba4247ed..2d45b5b803 100644 --- a/static/css/build.scss +++ b/static/css/build.scss @@ -44,4 +44,4 @@ padding: var.$container-horizontal-padding calc(#{var.$spacing} * 3); } } -} \ No newline at end of file +} diff --git a/static/css/content/partners.scss b/static/css/content/partners.scss index 1a75d7e61a..2c9849ce2e 100644 --- a/static/css/content/partners.scss +++ b/static/css/content/partners.scss @@ -57,4 +57,4 @@ } } } -} \ No newline at end of file +} diff --git a/static/css/content/sample_questions.scss b/static/css/content/sample_questions.scss index 23b5f34e94..75de172f28 100644 --- a/static/css/content/sample_questions.scss +++ b/static/css/content/sample_questions.scss @@ -16,93 +16,93 @@ /* Styles for the sample questions component, a component that renders sample questions in columns */ - .sample-questions { - h3 { - @include var.title_xs; - margin-bottom: calc(#{var.$spacing} * 3); - } - .questions-container { - display: flex; - gap: calc(#{var.$spacing} * 3); - margin-bottom: calc(#{var.$spacing} * 3); - padding: 4px; // account for boxes shadows - } - - .questions-column { +.sample-questions { +h3 { + @include var.title_xs; + margin-bottom: calc(#{var.$spacing} * 3); +} +.questions-container { + display: flex; + gap: calc(#{var.$spacing} * 3); + margin-bottom: calc(#{var.$spacing} * 3); + padding: 4px; // account for boxes shadows +} + +.questions-column { + display: flex; + flex-basis: 100%; + flex-grow: 1; + flex-shrink: 1; + flex-direction: column; + gap: calc(#{var.$spacing} * 3); +} + +.question-item { + display: block; + list-style: none; + a { + @include var.white-box; + @include var.shadow; display: flex; - flex-basis: 100%; - flex-grow: 1; - flex-shrink: 1; flex-direction: column; - gap: calc(#{var.$spacing} * 3); + align-items: flex-start; + gap: 10px; + padding: calc(#{var.$spacing} * 3); + border-radius: calc(#{var.$spacing} * 4); + p { + @include var.text_xl; + } + small { + @include var.text_xs; + display: inline-block; + padding: 2px 8px; + border-radius: 24px; + } } - - .question-item { - display: block; - list-style: none; - a { - @include var.white-box; - @include var.shadow; - display: flex; - flex-direction: column; - align-items: flex-start; - gap: 10px; - padding: calc(#{var.$spacing} * 3); - border-radius: calc(#{var.$spacing} * 4); - p { - @include var.text_xl; - } - small { - @include var.text_xs; - display: inline-block; - padding: 2px 8px; - border-radius: 24px; - } + &.green a { + p { + color: var.$color-green; } - &.green a { - p { - color: var.$color-green; - } - small { - color: var.$color-green_pill_text; - background-color: var.$color-green_pill_bckg; - } + small { + color: var.$color-green_pill_text; + background-color: var.$color-green_pill_bckg; } - &.blue a { - p { - color: var.$color-blue; - } - small { - color: var.$color-blue_pill_text; - background-color: var.$color-blue_pill_bckg; - } + } + &.blue a { + p { + color: var.$color-blue; } - &.red a { - p { - color: var.$color-red; - } - small { - color: var.$color-red_pill_text; - background-color: var.$color-red_pill_bckg; - } + small { + color: var.$color-blue_pill_text; + background-color: var.$color-blue_pill_bckg; } - &.yellow a { - p { - color: var.$color-yellow; - } - small { - color: var.$color-yellow_pill_text; - background-color: var.$color-yellow_pill_bckg; - } + } + &.red a { + p { + color: var.$color-red; + } + small { + color: var.$color-red_pill_text; + background-color: var.$color-red_pill_bckg; + } + } + &.yellow a { + p { + color: var.$color-yellow; + } + small { + color: var.$color-yellow_pill_text; + background-color: var.$color-yellow_pill_bckg; + } + } + &.gray a { + p { + color: var.$color-gray; } - &.gray a { - p { - color: var.$color-gray; - } - small { - color: var.$color-gray_pill_text; - background-color: var.$color-gray_pill_bckg; - } + small { + color: var.$color-gray_pill_text; + background-color: var.$color-gray_pill_bckg; } } - } \ No newline at end of file +} +} diff --git a/static/css/core.scss b/static/css/core.scss index 0158b4e6df..ba9fa5451e 100644 --- a/static/css/core.scss +++ b/static/css/core.scss @@ -352,7 +352,7 @@ section { height: $header-mobile-height; gap: calc(#{var.$spacing} * 2); padding: calc(#{var.$spacing} * 2) calc(#{var.$spacing} * 3); - .header-search-section { + .header-search { order: 3; grid-column: 1 / span 2; } @@ -600,7 +600,8 @@ section { } } -.header-search-section { +.header-search { + position: relative; display: flex; flex-direction: column; padding-top: 22px; @@ -625,7 +626,7 @@ section { border: none; border-color: var(--gm-3-ref-neutral-neutral-40); - .search-icon { + .search-bar-icon { font-size: 24px; line-height: 1; } @@ -796,4 +797,4 @@ section { } } } -} \ No newline at end of file +} diff --git a/static/css/explore.scss b/static/css/explore.scss index 1212272e34..6371e68dc6 100644 --- a/static/css/explore.scss +++ b/static/css/explore.scss @@ -45,7 +45,7 @@ #explore.main-content { flex-grow: 1; - // padding-top: 100px; + padding-top: 40px; } #insight-lhs { @@ -275,10 +275,9 @@ position: relative; } - .debug-info-toggle { - top: -0.5rem; - right: 1.5rem; - padding: 0; + .debug-info-open { + top: 20px!important; + right: -10px!important; } } @@ -307,27 +306,6 @@ } } -.nl-query-result-debug-info { - position: absolute; - z-index: 20; - height: calc(100vh - 100px); - overflow-y: scroll; - max-width: 100%; -} - -.nl-query-result-debug-info .row { - margin-top: 3px; -} - -.nl-query-result-debug-info table { - width: 100%; -} - -.nl-query-result-debug-info .highlight { - color: blue; - font-weight: bold; -} - #ranking-table-container { margin-left: 24px; } diff --git a/static/css/nl_interface.scss b/static/css/nl_interface.scss index 50c1455b27..eb39372784 100644 --- a/static/css/nl_interface.scss +++ b/static/css/nl_interface.scss @@ -1,18 +1,18 @@ /** - * Copyright 2022 Google LLC - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +* Copyright 2022 Google LLC +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ @use "./shared/subject_page"; @use "./nl_search_bar"; @@ -519,41 +519,158 @@ h3, text-decoration: underline; } -.debug-info-toggle { - display: block; - text-align: right; +// Debug modal + +.debug-overlay { + position: fixed; + top: 0; + right: 0; + left: 0; + bottom: 0; + background-color: rgba($color: #000000, $alpha: 0.7); + z-index: 99; } -.debug-info-toggle.show { - color: #666; - font-size: 0.8rem; - padding-top: 0.5em; - margin-bottom: -1em; +.debug-info-open { position: absolute; - top: 0.5rem; - right: 2rem; + right: -10px; + top: 35px; + display: block; + text-align: right; + font-size: 0.8rem; + color: #dc3545; + transition: transform 0.4s ease-in-out; + background: white; + border-radius: 100px; + @include media-breakpoint-up(xl) { + right: 30px; + } + @media (max-width: 620px) { + top: -10px; + right: 5px; + } + cursor: pointer; + &.active { + color: #666666; + } + &:hover { + transform: rotate(25deg); + } } -.debug-info-toggle.hide { - font-weight: bold; +.debug-info-close { + margin: 0; + padding: 0; + color: #dc3545; + cursor: pointer; + .material-icons { + font-size: 2rem; + font-weight: 900; + } } .nl-query-result-debug-info { + position: fixed; + z-index: 100; + overflow: scroll; + top: 50%; + left: 50%; + transform: translate3d(-50%, -50%, 0); + width: calc(100vw - 100px); + max-width: 1920px; + height: calc(100vh - 100px); background: white; - padding: 2em; - font-size: 0.8em; border: 1px solid var(--gray); - max-width: 100%; + border-radius: 10px; + box-shadow: 0 0 30px rgba(0, 0, 0, 0.3); + + header { + position: sticky; + top: 0; + padding: 32px 32px 32px 32px; + background: white; + display: flex; + justify-content: space-between; + align-items: center; + margin-bottom: 16px; + border-bottom: 1px solid #ccc; + h3, a { + margin: 0; + padding: 0; + display: flex; + gap: 8px; + align-items: center; + &:hover { + text-decoration: none; + } + } + h3 span { + transition: transform .5s ease-in-out; + &:hover { + transform: translateY(-5px) rotate(45deg); + } + } + } - table, - th, - tr, - td { - border: 1px solid black; + section { + padding: 32px 64px 64px 64px; } - .feedback-link { - padding: 1rem 0; + .show-more { + width: 100%; + margin: 30px 0; + a { + display: block; + cursor: pointer; + padding: 8px 16px; + border-radius: 100px; + background: #0b57d0; + color: white; + font-size: 1.2rem; + text-align: center; + } + } + + .block { + margin-bottom: 8px; + padding-bottom: 8px; + border-bottom: 1px solid #f5f5f5; + + strong { + margin-right: 10px; + } + + .highlight { + background-color: #d3e3fd; + padding: 2px 8px; + border-radius: 100px; + } + + pre { + font-family: 'Courier New', Courier, monospace; + padding: 24px; + background-color: #f5f5f5; + } + + table, ul, pre { + display: block; + width: 100%; + margin: 20px 0; + } + + li { + line-height: 1.8rem; + } + + th, + td { + padding: 8px 16px; + border: 1px solid black; + } + + .feedback-link { + padding: 1rem 0; + } } } diff --git a/static/js/apps/base/components/header_bar/header_bar.tsx b/static/js/apps/base/components/header_bar/header_bar.tsx index 9b72c7bf37..5505c59fa2 100644 --- a/static/js/apps/base/components/header_bar/header_bar.tsx +++ b/static/js/apps/base/components/header_bar/header_bar.tsx @@ -32,13 +32,18 @@ interface HeaderBarProps { name: string; //a path to the logo to be displayed in the header logoPath: string; - //the width of the logo - if provided, this will be used to prevent content bouncing as the logo loads in after the rest of the content. + //the width of the logo - if provided, this will be used to prevent content bouncing. logoWidth: string; //the data that will populate the header menu. menu: HeaderMenu[]; - //if set true, the header menu will show - this value is pulled in from the page template and will default to false. - showHeaderSearchBar: boolean; - //the labels dictionary - all labels will be passed through this before being rendered. If no value exists, the dictionary will return the key that was sent. + //if set true, the header menu will be hidden - value is taken from the template and will default to false. + hideHeaderSearchBar: boolean; + //if set true, the search bar will operate in "hash mode", changing the hash rather than redirecting. + searchBarHashMode: boolean; + //the Google Analytics tag associated with a search action + gaValueSearchSource: string | null; + // the labels dictionary - all labels will be passed through this before being rendered. + // If no value exists, the dictionary will return the key that was sent. labels: Labels; //the routes dictionary - this is used to convert routes to resolved urls routes: Routes; @@ -49,7 +54,9 @@ const HeaderBar = ({ logoPath, logoWidth, menu, - showHeaderSearchBar, + hideHeaderSearchBar, + searchBarHashMode, + gaValueSearchSource, labels, routes, }: HeaderBarProps): ReactElement => { @@ -66,7 +73,12 @@ const HeaderBar = ({ labels={labels} routes={routes} /> - {showHeaderSearchBar && up("lg") && } + {!hideHeaderSearchBar && up("lg") && ( + + )}
@@ -77,7 +89,12 @@ const HeaderBar = ({ labels={labels} routes={routes} /> - {showHeaderSearchBar && down("md") && } + {!hideHeaderSearchBar && down("md") && ( + + )}
diff --git a/static/js/apps/base/components/header_bar/header_bar_search.tsx b/static/js/apps/base/components/header_bar/header_bar_search.tsx index fb0894fd1c..e6b1ef35b0 100644 --- a/static/js/apps/base/components/header_bar/header_bar_search.tsx +++ b/static/js/apps/base/components/header_bar/header_bar_search.tsx @@ -19,6 +19,10 @@ import React, { ReactElement } from "react"; import { NlSearchBar } from "../../../../components/nl_search_bar"; +import { + CLIENT_TYPES, + URL_HASH_PARAMS, +} from "../../../../constants/app/explore_constants"; import { GA_EVENT_NL_SEARCH, GA_PARAM_QUERY, @@ -26,29 +30,56 @@ import { GA_VALUE_SEARCH_SOURCE_HOMEPAGE, triggerGAEvent, } from "../../../../shared/ga_events"; +import { useQueryStore } from "../../../../shared/stores/query_store_hook"; +import { updateHash } from "../../../../utils/url_utils"; +import { DebugInfo } from "../../../explore/debug_info"; interface HeaderBarSearchProps { inputId?: string; + searchBarHashMode?: boolean; + gaValueSearchSource?: string; } const HeaderBarSearch = ({ inputId = "query-search-input", + searchBarHashMode, + gaValueSearchSource, }: HeaderBarSearchProps): ReactElement => { + const { queryString, placeholder, queryResult, debugData } = useQueryStore(); + return ( - { - triggerGAEvent(GA_EVENT_NL_SEARCH, { - [GA_PARAM_QUERY]: q, - [GA_PARAM_SOURCE]: GA_VALUE_SEARCH_SOURCE_HOMEPAGE, - }); - window.location.href = `/explore#q=${encodeURIComponent(q)}`; - }} - placeholder={"Enter a question to explore"} - initialValue={""} - shouldAutoFocus={false} - /> +
+ { + if (searchBarHashMode) { + triggerGAEvent(GA_EVENT_NL_SEARCH, { + [GA_PARAM_QUERY]: q, + [GA_PARAM_SOURCE]: + gaValueSearchSource ?? GA_VALUE_SEARCH_SOURCE_HOMEPAGE, + }); + updateHash({ + [URL_HASH_PARAMS.QUERY]: q, + [URL_HASH_PARAMS.PLACE]: "", + [URL_HASH_PARAMS.TOPIC]: "", + [URL_HASH_PARAMS.CLIENT]: CLIENT_TYPES.QUERY, + }); + } else { + triggerGAEvent(GA_EVENT_NL_SEARCH, { + [GA_PARAM_QUERY]: q, + [GA_PARAM_SOURCE]: + gaValueSearchSource ?? GA_VALUE_SEARCH_SOURCE_HOMEPAGE, + }); + window.location.href = `/explore#q=${encodeURIComponent(q)}`; + } + }} + placeholder={placeholder} + initialValue={queryString} + shouldAutoFocus={false} + /> + +
); }; diff --git a/static/js/apps/base/header_app.tsx b/static/js/apps/base/header_app.tsx index cf744d501d..97712e18a8 100644 --- a/static/js/apps/base/header_app.tsx +++ b/static/js/apps/base/header_app.tsx @@ -28,13 +28,18 @@ interface HeaderAppProps { name: string; //a path to the logo to be displayed in the header logoPath: string; - //the width of the logo - if provided, this will be used to prevent content bouncing as the logo loads in after the rest of the content. + //the width of the logo - if provided, this will be used to prevent content bouncing. logoWidth: string; //the data that will populate the header menu. headerMenu: HeaderMenu[]; - //if set true, the header menu will show. It will default to false on all pages unless the {% set is_show_header_search_bar = true %} is set. - showHeaderSearchBar: boolean; - //the labels dictionary - all labels will be passed through this before being rendered. If no value exists, the dictionary will return the key that was sent. + //if set true, the header menu will be hidden - value is taken from the template and will default to false. + hideHeaderSearchBar: boolean; + //if set true, the search bar will operate in "hash mode", changing the hash rather than redirecting. + searchBarHashMode: boolean; + //the Google Analytics tag associated with a search action + gaValueSearchSource: string | null; + // the labels dictionary - all labels will be passed through this before being rendered. + // If no value exists, the dictionary will return the key that was sent. labels: Labels; //the routes dictionary - this is used to convert routes to resolved urls routes: Routes; @@ -48,7 +53,9 @@ export function HeaderApp({ logoPath, logoWidth, headerMenu, - showHeaderSearchBar, + hideHeaderSearchBar, + searchBarHashMode, + gaValueSearchSource, labels, routes, }: HeaderAppProps): ReactElement { @@ -59,7 +66,9 @@ export function HeaderApp({ logoPath={logoPath} logoWidth={logoWidth} menu={headerMenu} - showHeaderSearchBar={showHeaderSearchBar} + hideHeaderSearchBar={hideHeaderSearchBar} + searchBarHashMode={searchBarHashMode} + gaValueSearchSource={gaValueSearchSource} labels={labels} routes={routes} /> diff --git a/static/js/apps/base/main.ts b/static/js/apps/base/main.ts index be6739c721..df5f9de2f9 100644 --- a/static/js/apps/base/main.ts +++ b/static/js/apps/base/main.ts @@ -43,12 +43,17 @@ function renderPage(): void { ) as HeaderMenu[]; //TODO: once confirmed, remove the footer menu json and types. - const name = metadataContainer.dataset.name; const logoPath = metadataContainer.dataset.logoPath; const logoWidth = metadataContainer.dataset.logoWidth; - const showHeaderSearchBar = - metadataContainer.dataset.showHeaderSearchBar.toLowerCase() === "true"; + const hideHeaderSearchBar = + metadataContainer.dataset.hideHeaderSearchBar.toLowerCase() === "true"; + const searchBarHashMode = + metadataContainer.dataset.searchBarHashMode.toLowerCase() === "true"; + const gaValueSearchSource = + metadataContainer.dataset.gaValueSearchSource.trim() === "" + ? null + : metadataContainer.dataset.gaValueSearchSource.toLowerCase(); const brandLogoLight = metadataContainer.dataset.brandLogoLight.toLowerCase() === "true"; @@ -62,7 +67,9 @@ function renderPage(): void { logoPath, logoWidth, headerMenu, - showHeaderSearchBar, + hideHeaderSearchBar, + searchBarHashMode, + gaValueSearchSource, labels, routes, }), diff --git a/static/js/apps/explore/app.tsx b/static/js/apps/explore/app.tsx index 5dc2c08c84..1d51e89b7c 100644 --- a/static/js/apps/explore/app.tsx +++ b/static/js/apps/explore/app.tsx @@ -21,7 +21,7 @@ import axios from "axios"; import _ from "lodash"; import queryString from "query-string"; -import React, { useEffect, useRef, useState } from "react"; +import React, { ReactElement, useEffect, useRef, useState } from "react"; import { RawIntlProvider } from "react-intl"; import { Container } from "reactstrap"; @@ -43,6 +43,7 @@ import { GA_PARAM_TOPIC, triggerGAEvent, } from "../../shared/ga_events"; +import { useQueryStore } from "../../shared/stores/query_store_hook"; import { QueryResult, UserMessageInfo } from "../../types/app/explore_types"; import { SubjectPageMetadata } from "../../types/subject_page_types"; import { shouldSkipPlaceOverview } from "../../utils/explore_utils"; @@ -87,10 +88,18 @@ function getAutoPlayQueries(): string[] { return toApiList(queryListParam); } +interface AppProps { + //true if the app is in demo mode + isDemo: boolean; + //if true, there is no header bar search, and so we display search inline + //if false, there is a header bar search, and so we do not display search inline + hideHeaderSearchBar: boolean; +} + /** * Application container */ -export function App(props: { isDemo: boolean }): JSX.Element { +export function App(props: AppProps): ReactElement { const [loadingStatus, setLoadingStatus] = useState( props.isDemo ? LoadingStatus.DEMO_INIT : LoadingStatus.LOADING ); @@ -103,6 +112,12 @@ export function App(props: { isDemo: boolean }): JSX.Element { const autoPlayQueryList = useRef(getAutoPlayQueries()); const [autoPlayQuery, setAutoPlayQuery] = useState(""); + const { + setQueryString: setStoreQueryString, + setQueryResult: setStoreQueryResult, + setDebugData: setStoreDebugData, + } = useQueryStore(); + useEffect(() => { // If in demo mode, should input first autoplay query on mount. // Otherwise, treat it as a regular hashchange. @@ -140,6 +155,7 @@ export function App(props: { isDemo: boolean }): JSX.Element { exploreContext={exploreContext} queryResult={queryResult} userMessage={userMessage} + hideHeaderSearchBar={props.hideHeaderSearchBar} /> )} {loadingStatus === LoadingStatus.LOADING && ( @@ -164,6 +180,7 @@ export function App(props: { isDemo: boolean }): JSX.Element { queryResult={queryResult} pageMetadata={pageMetadata} userMessage={userMessage} + hideHeaderSearchBar={props.hideHeaderSearchBar} /> )} @@ -181,6 +198,7 @@ export function App(props: { isDemo: boolean }): JSX.Element { function processFulfillData(fulfillData: any, shouldSetQuery: boolean): void { setDebugData(fulfillData["debug"]); + setStoreDebugData(fulfillData["debug"]); const userMessage = { msgList: fulfillData["userMessages"] || [], showForm: !!fulfillData["showForm"], @@ -246,16 +264,18 @@ export function App(props: { isDemo: boolean }): JSX.Element { ) { const q = `${pageMetadata.mainTopics[0].name} vs. ${pageMetadata.mainTopics[1].name} in ${pageMetadata.place.name}`; setQuery(q); + setStoreQueryString(q); } else if (pageMetadata.mainTopics[0].name) { const q = `${pageMetadata.mainTopics[0].name} in ${pageMetadata.place.name}`; setQuery(q); + setStoreQueryString(q); } } } savedContext.current = fulfillData["context"] || []; setPageMetadata(pageMetadata); setUserMessage(userMessage); - setQueryResult({ + const queryResult = { place: mainPlace, config: pageMetadata.pageConfig, svSource: fulfillData["svSource"], @@ -263,7 +283,9 @@ export function App(props: { isDemo: boolean }): JSX.Element { placeFallback: fulfillData["placeFallback"], pastSourceContext: fulfillData["pastSourceContext"], sessionId: pageMetadata.sessionId, - }); + }; + setQueryResult(queryResult); + setStoreQueryResult(queryResult); setLoadingStatus( isPendingRedirect ? LoadingStatus.LOADING : LoadingStatus.SUCCESS ); @@ -308,6 +330,7 @@ export function App(props: { isDemo: boolean }): JSX.Element { if (query) { client = client || CLIENT_TYPES.QUERY; setQuery(query); + setStoreQueryString(query); fulfillmentPromise = fetchDetectAndFufillData( query, savedContext.current, @@ -332,6 +355,7 @@ export function App(props: { isDemo: boolean }): JSX.Element { } else { client = client || CLIENT_TYPES.ENTITY; setQuery(""); + setStoreQueryString(""); fulfillmentPromise = fetchFulfillData( toApiList(place || DEFAULT_PLACE), toApiList(topic || DEFAULT_TOPIC), diff --git a/static/js/apps/explore/debug_info.tsx b/static/js/apps/explore/debug_info.tsx index 53f415f8d5..44445f8713 100644 --- a/static/js/apps/explore/debug_info.tsx +++ b/static/js/apps/explore/debug_info.tsx @@ -20,11 +20,9 @@ import _ from "lodash"; import queryString from "query-string"; -import React, { useState } from "react"; -import { Col, Row } from "reactstrap"; +import React, { ReactElement, useState } from "react"; import { - DebugInfo, MultiSVCandidate, QueryResult, SentenceScore, @@ -36,7 +34,7 @@ const DEBUG_PARAM = "dbg"; const svToSentences = ( variables: string[], varSentences: Map> -): JSX.Element => { +): ReactElement => { return (
@@ -54,7 +52,7 @@ const svToSentences = (
{variable}
    - {varSentences[variable].map((sentence) => { + {varSentences[variable].map((sentence: SentenceScore) => { return (
  • {sentence.sentence} (cosine: @@ -80,7 +78,7 @@ const svToSentences = ( const monoVarScoresElement = ( variables: string[], scores: string[] -): JSX.Element => { +): ReactElement => { return (
    @@ -106,7 +104,7 @@ const monoVarScoresElement = ( ); }; -const multiVarPartsElement = (c: MultiSVCandidate): JSX.Element => { +const multiVarPartsElement = (c: MultiSVCandidate): ReactElement => { return (
      {c.Parts.map((p) => { @@ -130,7 +128,7 @@ const multiVarPartsElement = (c: MultiSVCandidate): JSX.Element => { ); }; -const multiVarScoresElement = (svScores: SVScores): JSX.Element => { +const multiVarScoresElement = (svScores: SVScores): ReactElement => { const monovarScores = Object.values(svScores.CosineScore); const maxMonovarScore = monovarScores.length > 0 ? monovarScores[0] : 0; const candidates = svScores.MultiSV.Candidates; @@ -154,7 +152,7 @@ const multiVarScoresElement = (svScores: SVScores): JSX.Element => { {c.Parts.length} {c.DelimBased ? " (delim)" : ""}
    - Places Detected:{" "} - - {" "} - {debugInfo.placesDetected - ? debugInfo.placesDetected.join(", ") - : ""} - - - - - - Places Resolved: - {debugInfo.placesResolved} - - - - - Main Place: - - {debugInfo.mainPlaceName} (dcid: {debugInfo.mainPlaceDCID}) - - - - - Entity Detection: - - - - Entities Detected: {debugInfo.entitiesDetected.join(", ")} - - - - - Entities Resolved:{" "} - {debugInfo.entitiesResolved} - - - - Query Type Detection: - - - Ranking classification: - - - - Superlative type classification:{" "} - {debugInfo.superlativeClassification} - - - - - TimeDelta classification: {debugInfo.timeDeltaClassification} - - - - - Comparison classification: {debugInfo.comparisonClassification} - - - - - ContainedIn classification: {debugInfo.containedInClassification} - - - - - Correlation classification: {debugInfo.correlationClassification} - - - - Event classification: {debugInfo.eventClassification} - - - General classification: {debugInfo.generalClassification} - - - - Quantity classification: {debugInfo.quantityClassification} - - - - Date classification: {debugInfo.dateClassification} - - - Single Variables Matches: - - - Note: Variables with scores less than model threshold are not used. - - - - {monoVarScoresElement( - Object.values(debugInfo.svScores.SV || {}), - Object.values(debugInfo.svScores.CosineScore || {}) - )} - - - - Multi-Variable Matches: - - - {multiVarScoresElement(debugInfo.svScores)} - - - Variable Sentences Matched: - - - - {svToSentences( - Object.values(debugInfo.svScores.SV || {}), - debugInfo.svSentences - )} - - - - Property Matches: - - Note: Properties with scores less than 0.5 are not used. - - - {monoVarScoresElement( - Object.values(debugInfo.propScores.PROP || {}), - Object.values(debugInfo.propScores.CosineScore || {}) - )} - - - - Property Sentences Matched: - - - - {svToSentences( - Object.values(debugInfo.propScores.PROP || {}), - debugInfo.propSentences - )} - - - - Query Detection: - - - -
    -                {JSON.stringify(debugInfo.queryDetectionDebugLogs, null, 2)}
    -              
    - - - - setIsCollapsed(!isCollapsed)} - style={{ cursor: "pointer" }} - > -

    SHOW MORE: {isCollapsed ? "[+]" : "[-]"}

    -
    -
    - {!isCollapsed && ( - <> - - Query Fulfillment: - - {props.queryResult && ( - - - Place Query Source: {props.queryResult.placeSource} - {props.queryResult.pastSourceContext - ? "(" + props.queryResult.pastSourceContext + ")" - : ""} - - - )} - {props.queryResult && ( - - Variable Query Source: {props.queryResult.svSource} - - )} - {props.queryResult && props.queryResult.placeFallback && ( - - - Place Fallback: " - {props.queryResult.placeFallback.origStr} - " to "{props.queryResult.placeFallback.newStr} - " - - + <> +
    +
    +
    +

    + bug_report Debugging: + options & information +

    + + close + +
    + +
    +
    + Execution Status: + + {debugInfo.status || "--" || "--"} + +
    + +
    + Detection Type: + + {debugInfo.detectionType || "--"} + +
    + +
    + Place Detection Type: + + {debugInfo.placeDetectionType.toUpperCase()} + +
    + +
    + Original Query: + + {debugInfo.originalQuery || "--"} + +
    + +
    + Blocked: + + {debugInfo.blocked.toString() || "--"} + +
    + +
    + Query index types: + + {debugInfo.queryIndexTypes.join(", ")} + +
    + +
    + Query without places: + + {debugInfo.queryWithoutPlaces || "--"} + +
    + +
    + Query without stop words: + + {debugInfo.queryWithoutStopWords || "--"} + +
    + +
    +

    + Place Detection: +

    +
      +
    • + Places Detected: + + {debugInfo?.placesDetected.length + ? debugInfo.placesDetected.join(", ") + : "--"} + +
    • +
    • + Places Resolved: + + {debugInfo.placesResolved || "--"} + +
    • +
    • + Main Place: + + {debugInfo.mainPlaceName || "--"} (dcid:{" "} + {debugInfo.mainPlaceDCID}) + +
    • +
    +
    + +
    +

    + Entity Detection: +

    +
      +
    • + Entities Detected: + + {debugInfo?.entitiesDetected.length + ? debugInfo.entitiesDetected.join(", ") + : "--"} + +
    • +
    • + Entities Resolved: + + {debugInfo?.entitiesResolved.length + ? debugInfo.entitiesResolved.join(", ") + : "--"} + +
    • +
    +
    + +
    +

    + Query Type Detection: +

    +
      +
    • + Ranking classification: + {debugInfo.rankingClassification || "--"} +
    • +
    • + Superlative type classification: + {debugInfo.superlativeClassification || "--"} +
    • +
    • + TimeDelta classification: + {debugInfo.timeDeltaClassification || "--"} +
    • +
    • + Comparison classification: + {debugInfo.comparisonClassification || "--"} +
    • +
    • + ContainedIn classification: + {debugInfo.containedInClassification || "--"} +
    • +
    • + Correlation classification: + {debugInfo.correlationClassification || "--"} +
    • +
    • + Event classification: + {debugInfo.eventClassification || "--"} +
    • +
    • + General classification: + {debugInfo.generalClassification || "--"} +
    • +
    • + Quantity classification: + {debugInfo.quantityClassification || "--"} +
    • +
    • + Date classification: + {debugInfo.dateClassification || "--"} +
    • +
    +
    + +
    +

    + Single Variables Matches: +

    + + Note: Variables with scores less than model threshold are not + used. + + + {monoVarScoresElement( + Object.values(debugInfo.svScores.SV || {}), + Object.values(debugInfo.svScores.CosineScore || {}) + )} +
    + +
    + Multi-Variable Matches: + {multiVarScoresElement(debugInfo.svScores)} +
    + +
    + Variable Sentences Matched: + {svToSentences( + Object.values(debugInfo.svScores.SV || {}), + debugInfo.svSentences + )} +
    + +
    +

    + Property Matches: +

    + + Note: Properties with scores less than 0.5 are not used. + + {monoVarScoresElement( + Object.values(debugInfo.propScores.PROP || {}), + Object.values(debugInfo.propScores.CosineScore || {}) + )} +
    + +
    + Property Sentences Matched: + {svToSentences( + Object.values(debugInfo.propScores.PROP || {}), + debugInfo.propSentences + )} +
    + +
    + Query Detection: +
    +                  {JSON.stringify(debugInfo.queryDetectionDebugLogs, null, 2)}
    +                
    +
    + + + + {!isCollapsed && ( + <> +
    +

    + Query Fulfillment: +

    +
      + {props.queryResult && ( +
    • + Place Query Source: + {props.queryResult.placeSource} + {props.queryResult.pastSourceContext + ? "(" + props.queryResult.pastSourceContext + ")" + : ""} +
    • + )} + {props.queryResult && ( +
    • + Variable Query Source: + {props.queryResult.svSource} +
    • + )} + {props.queryResult && props.queryResult.placeFallback && ( +
    • + Place Fallback: + " + {props.queryResult.placeFallback.origStr} + " to " + {props.queryResult.placeFallback.newStr} + " +
    • + )} +
    +
    + +
    +

    + Counters: +

    +
    {JSON.stringify(debugInfo.counters, null, 2)}
    +
    + +
    +

    + Page Config: +

    +
    +                      {JSON.stringify(
    +                        props.queryResult ? props.queryResult.config : null,
    +                        null,
    +                        2
    +                      )}
    +                    
    +
    + )} - -
    - Counters: -
    {JSON.stringify(debugInfo.counters, null, 2)}
    - - - - Page Config: - - - -
    -                    {JSON.stringify(
    -                      props.queryResult ? props.queryResult.config : null,
    -                      null,
    -                      2
    -                    )}
    -                  
    - - - - )} - + + + )} ); diff --git a/static/js/apps/explore/error_result.tsx b/static/js/apps/explore/error_result.tsx index 0e20e7b720..2dd4fb3583 100644 --- a/static/js/apps/explore/error_result.tsx +++ b/static/js/apps/explore/error_result.tsx @@ -18,7 +18,7 @@ * Component for result section if there was an error */ -import React from "react"; +import React, { ReactElement } from "react"; import { QueryResult, UserMessageInfo } from "../../types/app/explore_types"; import { DebugInfo } from "./debug_info"; @@ -28,21 +28,29 @@ import { UserMessage } from "./user_message"; const DEFAULT_USER_MSG = "Sorry, could not complete your request."; interface ErrorResultPropType { + //the query string that caused the error query: string; + //an object containing the debug data debugData: any; + //the explore context exploreContext: any; + //an object containing the results of the query. queryResult: QueryResult; + //an object containing a list of messages that is passed into the user message component userMessage: UserMessageInfo; + //if true, there is no header bar search, and so we display search inline + //if false, there is a header bar search, and so we do not display search inline + hideHeaderSearchBar: boolean; } -export function ErrorResult(props: ErrorResultPropType): JSX.Element { +export function ErrorResult(props: ErrorResultPropType): ReactElement { const userMessage = { msgList: props.userMessage?.msgList || [DEFAULT_USER_MSG], showForm: props.userMessage?.showForm, }; return (
    - {props.query && ( + {props.query && props.hideHeaderSearchBar && ( <> { }); function renderPage(): void { + const metadataContainer = document.getElementById("metadata-base"); + const hashParams = queryString.parse(window.location.hash); + //if there is no metadataContainer, we do not hide the searchbar (as we are in a base where the flags + //are not prepared) + const hideHeaderSearchBar = + !metadataContainer || + metadataContainer.dataset.hideHeaderSearchBar?.toLowerCase() === "true"; + // use demo mode when there are autoplay queries in the url hash const isDemo = !!hashParams[URL_HASH_PARAMS.AUTO_PLAY_QUERY]; ReactDOM.render( - React.createElement(App, { isDemo }), + React.createElement(App, { isDemo, hideHeaderSearchBar }), document.getElementById("dc-explore") ); } diff --git a/static/js/apps/explore/success_result.tsx b/static/js/apps/explore/success_result.tsx index 979f51a047..c703c66ccc 100644 --- a/static/js/apps/explore/success_result.tsx +++ b/static/js/apps/explore/success_result.tsx @@ -20,7 +20,7 @@ import _ from "lodash"; import queryString from "query-string"; -import React, { useEffect, useRef } from "react"; +import React, { ReactElement, useEffect, useRef } from "react"; import { SubjectPageMainPane } from "../../components/subject_page/main_pane"; import { @@ -52,20 +52,29 @@ import { UserMessage } from "./user_message"; const PAGE_ID = "explore"; interface SuccessResultPropType { + //the query string that brought up the given results query: string; + //an object containing the debug data debugData: any; + //the explore context exploreContext: any; + //an object containing the results of the query. queryResult: QueryResult; + //page metadata (containing information such as places, topics) pageMetadata: SubjectPageMetadata; + //an object containing a list of messages that is passed into the user message component userMessage: UserMessageInfo; + //if true, there is no header bar search, and so we display search inline + //if false, there is a header bar search, and so we do not display search inline + hideHeaderSearchBar: boolean; } -export function SuccessResult(props: SuccessResultPropType): JSX.Element { +export function SuccessResult(props: SuccessResultPropType): ReactElement { + const searchSectionRef = useRef(null); + const chartSectionRef = useRef(null); if (!props.pageMetadata) { return null; } - const searchSectionRef = useRef(null); - const chartSectionRef = useRef(null); const childPlaceType = !_.isEmpty(props.pageMetadata.childPlaces) ? Object.keys(props.pageMetadata.childPlaces)[0] : ""; @@ -118,19 +127,21 @@ export function SuccessResult(props: SuccessResultPropType): JSX.Element { placeOverviewOnly ? " place-overview-only" : "" }`} > -
    -
    - - + {props.hideHeaderSearchBar && ( +
    +
    + + +
    -
    + )}
    {isHeaderBar && ( - + )} diff --git a/static/js/shared/stores/query_store.ts b/static/js/shared/stores/query_store.ts new file mode 100644 index 0000000000..abf43c4e9b --- /dev/null +++ b/static/js/shared/stores/query_store.ts @@ -0,0 +1,90 @@ +/** + * Copyright 2024 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/* + A store object with global scope to allow disparate and otherwise unrelated React apps with + separate mount points to be able to communicate query result information. This is primarily + used by React apps such as the explore section to communicate with the header. + */ + +import { QueryResult } from "../../types/app/explore_types"; + +type Listener = (store: QueryStore, changeType: ChangeType) => void; +export type ChangeType = + | "debugObject" + | "queryString" + | "handleSearchFunction" + | "queryResult"; + +export class QueryStore { + private debugObject: any = null; + private queryString: string | null = null; + private handleSearchFunction: ((q: string) => void) | null = null; + private queryResult: QueryResult | null = null; + private listeners: Listener[] = []; + + setDebugObject(debugObject: any): void { + this.debugObject = debugObject; + this.notifyListeners("debugObject"); + } + + setQueryString(queryString: string): void { + this.queryString = queryString; + this.notifyListeners("queryString"); + } + + setHandleSearchFunction(func: (q: string) => void): void { + this.handleSearchFunction = func; + this.notifyListeners("handleSearchFunction"); + } + + setQueryResult(queryResult: QueryResult): void { + this.queryResult = queryResult; + this.notifyListeners("queryResult"); + } + + getDebugObject(): any { + return this.debugObject; + } + + getQueryString(): string | null { + return this.queryString; + } + + getHandleSearchFunction(): ((q: string) => void) | null { + return this.handleSearchFunction; + } + + getQueryResult(): QueryResult | null { + return this.queryResult; + } + + subscribe(listener: Listener): void { + this.listeners.push(listener); + } + + unsubscribe(listener: Listener): void { + this.listeners = this.listeners.filter((l) => l !== listener); + } + + private notifyListeners(changeType: ChangeType): void { + this.listeners.forEach((listener) => listener(this, changeType)); + } +} + +export const queryStore = new QueryStore(); + +globalThis.queryStore = queryStore; diff --git a/static/js/shared/stores/query_store_hook.tsx b/static/js/shared/stores/query_store_hook.tsx new file mode 100644 index 0000000000..da8d3866c0 --- /dev/null +++ b/static/js/shared/stores/query_store_hook.tsx @@ -0,0 +1,111 @@ +/** + * Copyright 2024 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/* + This hook is a companion to the QueryStore, and provides components with the + ability to subscribe to changes in that store. + */ + +import { useEffect, useState } from "react"; + +import { QueryResult } from "../../types/app/explore_types"; +import { ChangeType, QueryStore } from "./query_store"; + +interface QueryStoreData { + queryString: string; + placeholder: string; + queryResult: QueryResult | null; + debugData: any; + setQueryString: (query: string) => void; + setQueryResult: (result: QueryResult) => void; + setDebugData: (data: any) => void; +} + +export const useQueryStore = (): QueryStoreData => { + const [queryString, setQueryStringState] = useState(""); + const [placeholder, setPlaceholderState] = useState( + "Enter a question to explore" + ); + const [queryResult, setQueryResultState] = useState(null); + const [debugData, setDebugDataState] = useState({}); + + /** + * This useEffect subscribes to the QueryStore and updates the component's state whenever the store changes, + * ensuring that the local state of the hook reflect the current store state. This local state is then + * provided to the component that consumes the hook, allowing the hook to act as an intermediary between + * the store and the consuming component. + * + * The subscription is then cleaned on component unmount. + */ + useEffect(() => { + const queryStore = (globalThis.queryStore as QueryStore) || null; + + const handleStoreUpdate = ( + store: typeof queryStore, + changeType: ChangeType + ): void => { + if (changeType === "queryString") { + const newQueryString = store.getQueryString(); + if (newQueryString !== null) { + setQueryStringState(newQueryString); + setPlaceholderState(newQueryString); + } + } else if (changeType === "debugObject") { + const newDebugObject = store.getDebugObject(); + if (newDebugObject !== null) { + setDebugDataState(newDebugObject); + } + } else if (changeType === "queryResult") { + const newQueryResult = store.getQueryResult(); + if (newQueryResult !== null) { + setQueryResultState(newQueryResult); + } + } + }; + + queryStore.subscribe(handleStoreUpdate); + handleStoreUpdate(queryStore, "queryString"); + + return () => { + queryStore.unsubscribe(handleStoreUpdate); + }; + }, []); + + const setQueryString = (query: string): void => { + setQueryStringState(query); + globalThis.queryStore.setQueryString(query); + }; + + const setQueryResult = (result: QueryResult): void => { + setQueryResultState(result); + globalThis.queryStore.setQueryResult(result); + }; + + const setDebugData = (data: any): void => { + setDebugDataState(data); + globalThis.queryStore.setDebugObject(data); + }; + + return { + queryString, + placeholder, + queryResult, + debugData, + setQueryString, + setQueryResult, + setDebugData, + }; +}; diff --git a/static/js/types/app/explore_types.ts b/static/js/types/app/explore_types.ts index 6ea195a444..02de1d2f9c 100644 --- a/static/js/types/app/explore_types.ts +++ b/static/js/types/app/explore_types.ts @@ -1,5 +1,5 @@ /** - * Copyright 2023 Google LLC + * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -18,8 +18,7 @@ * Types for the NL interface. */ -import { Node } from "../../shared/api_response_types"; -import { NamedNode, NamedTypedPlace } from "../../shared/types"; +import { NamedTypedPlace } from "../../shared/types"; import { SubjectPageConfig } from "../subject_page_proto_types"; export interface PlaceFallback { @@ -62,7 +61,7 @@ export interface SVScores { export interface SentenceScore { sentence: string; score: number; - rerankScore: number; + rerank_score: number; } export interface DebugInfo { diff --git a/static/webpack.config.js b/static/webpack.config.js index b98c5b74da..923ecdeabe 100644 --- a/static/webpack.config.js +++ b/static/webpack.config.js @@ -44,6 +44,7 @@ const config = { ], timeline_bulk_download: [__dirname + "/js/tools/timeline/bulk_download.ts"], mcf_playground: __dirname + "/js/mcf_playground.js", + queryStore: path.resolve(__dirname, "js/shared/stores/query_store.ts"), base: [__dirname + "/js/apps/base/main.ts", __dirname + "/css/core.scss"], place: [ __dirname + "/js/place/place.ts", From 665f47bb1f0d72f05cc7fef45c521e33f2d866b3 Mon Sep 17 00:00:00 2001 From: Dan Noble Date: Mon, 9 Dec 2024 17:05:40 -0500 Subject: [PATCH 4/5] fixed multidict import path (#4778) --- server/routes/place/html.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/routes/place/html.py b/server/routes/place/html.py index 94e5e6f408..5eac5f266a 100644 --- a/server/routes/place/html.py +++ b/server/routes/place/html.py @@ -24,7 +24,7 @@ from flask import current_app from flask import g from flask_babel import gettext -from multidict import MultiDict +from werkzeug.datastructures import MultiDict from server.lib.cache import cache from server.lib.config import GLOBAL_CONFIG_BUCKET From 480a56ec98b985f31760fa4417d7d1cd5989918e Mon Sep 17 00:00:00 2001 From: Julia Wu Date: Mon, 9 Dec 2024 14:16:41 -0800 Subject: [PATCH 5/5] Improve "place in" box on dev place pages (#4774) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## 1) Fix long list of child places on continent place pages On continent place pages, the list of child places will contain places that are more than one level down in containment (e.g, showing municipalities, not just countries). This PR adds a child place type entry for continents to the child place fetch logic. ### Before: ![Screenshot 2024-12-05 at 6 18 26 PM](https://github.com/user-attachments/assets/40ff5f18-107b-451e-9657-b2d9c970c534) ### After: ![Screenshot 2024-12-05 at 6 18 33 PM](https://github.com/user-attachments/assets/c18eacb7-d2a3-4108-b844-713a81533466) ## 2) Add a "show more" toggle when the list of child places is long Sometimes the list of child places is very long, which overwhelms the page. This PR also adds a "show more" toggle when the number of child places is greater than 15. ### Long lists are truncated initially ![Screenshot 2024-12-09 at 9 57 08 AM](https://github.com/user-attachments/assets/8cd0747d-5322-4d05-b1dc-69cb3fb7a376) ### Show full list after clicking "show more" ![Screenshot 2024-12-05 at 6 12 25 PM](https://github.com/user-attachments/assets/764e48ee-5cda-4dad-9cf6-4e674dd05ca4) ### Short lists don't show a toggle ![Screenshot 2024-12-05 at 6 11 53 PM](https://github.com/user-attachments/assets/127796db-0bb9-4d25-ba88-237025afc810) ## 3) Replace place search with link to knowledge graph on current place pages In preparation for the changes made in PR #4740, this PR also removes the place search bar to avoid showing users double search bars, and instead shows the DCID and a link to the knowledge graph entry, fixing a longstanding feature regression. Before: ![Screenshot 2024-12-09 at 11 53 21 AM](https://github.com/user-attachments/assets/6c1be20b-aaa4-47cc-8b41-8c592d538082) After: ![Screenshot 2024-12-09 at 11 47 12 AM](https://github.com/user-attachments/assets/04305558-9c62-4bb1-a2a8-66e5f713dab5) --- server/routes/dev_place/utils.py | 1 + server/templates/place.html | 4 +- .../shared_tests/place_explorer_test.py | 42 ------------------- static/css/place/dev_place_page.scss | 12 ++++++ static/css/place/place_page.scss | 19 +++++++++ static/js/place/dev_place_main.tsx | 23 +++++++++- static/js/place/place.ts | 24 ----------- 7 files changed, 56 insertions(+), 69 deletions(-) diff --git a/server/routes/dev_place/utils.py b/server/routes/dev_place/utils.py index 92619e760b..a6152362d5 100644 --- a/server/routes/dev_place/utils.py +++ b/server/routes/dev_place/utils.py @@ -313,6 +313,7 @@ def chart_config_to_overview_charts(chart_config, child_place_type: str): # Maps each parent place type to a list of valid child place types. # This hierarchy defines how places are related in terms of containment. PLACE_TYPES_TO_CHILD_PLACE_TYPES = { + "Continent": ["Country"], "GeoRegion": ["Country", "City"], "Country": [ "State", "EurostatNUTS1", "EurostatNUTS2", "AdministrativeArea1" diff --git a/server/templates/place.html b/server/templates/place.html index 61a43f2f3b..0c0c5a92c3 100644 --- a/server/templates/place.html +++ b/server/templates/place.html @@ -62,8 +62,8 @@

    {{ place_type_with_parent_places_

    -
    -
    +
    + dcid: {{ place_dcid }}
    diff --git a/server/webdriver/shared_tests/place_explorer_test.py b/server/webdriver/shared_tests/place_explorer_test.py index e7a66b457a..d03aa6f082 100644 --- a/server/webdriver/shared_tests/place_explorer_test.py +++ b/server/webdriver/shared_tests/place_explorer_test.py @@ -116,48 +116,6 @@ def test_page_serve_mtv(self): "place-highlight-in-overview").text self.assertTrue(place_type.startswith("Population:")) - def test_place_search(self): - """Test the place search box can work correctly.""" - california_title = "California - Place Explorer - " + self.dc_title_string - # Load USA page. - self.driver.get(self.url_ + USA_URL) - - # Wait until "Change Place" toggle has loaded. - element_present = EC.visibility_of_element_located( - (By.ID, 'change-place-toggle-text')) - WebDriverWait(self.driver, self.TIMEOUT_SEC).until(element_present) - - # Click on Change place - change_place_toggle = self.driver.find_element(By.ID, - 'change-place-toggle-text') - change_place_toggle.click() - - # Wait until the search bar is visible. - element_present = EC.visibility_of_element_located( - (By.ID, 'place-autocomplete')) - WebDriverWait(self.driver, self.TIMEOUT_SEC).until(element_present) - - # Search for California in search bar - search_box = self.driver.find_element(By.ID, "place-autocomplete") - search_box.send_keys(PLACE_SEARCH) - - # Wait until the place name has loaded. - element_present = EC.presence_of_element_located( - (By.CSS_SELECTOR, '.pac-item:nth-child(1)')) - WebDriverWait(self.driver, self.TIMEOUT_SEC).until(element_present) - - # Select the first result from the list and click on it. - first_result = self.driver.find_element(By.CSS_SELECTOR, - '.pac-item:nth-child(1)') - first_result.click() - - # Wait until the page loads and the title is correct. - WebDriverWait(self.driver, - self.TIMEOUT_SEC).until(EC.title_contains(california_title)) - - # Assert page title is correct. - self.assertEqual(california_title, self.driver.title) - def test_demographics_link(self): """Test the demographics link can work correctly.""" title_text = "Median age by gender: states near California" diff --git a/static/css/place/dev_place_page.scss b/static/css/place/dev_place_page.scss index 5eed901317..849125da8b 100644 --- a/static/css/place/dev_place_page.scss +++ b/static/css/place/dev_place_page.scss @@ -158,4 +158,16 @@ main { font-weight: 400; line-height: 28px; } + + .show-more-toggle { + align-items: center; + color: var(--link-color); + cursor: pointer; + display: flex; + gap: 2px; + font-size: 14px; + font-weight: 500; + padding-left: 8px; + padding-top: 16px; + } } diff --git a/static/css/place/place_page.scss b/static/css/place/place_page.scss index f5b77131e2..245861a5b0 100644 --- a/static/css/place/place_page.scss +++ b/static/css/place/place_page.scss @@ -210,6 +210,25 @@ $chart-border: 0.5px solid #dee2e6; flex-wrap: wrap; justify-content: space-between; + .dcid-and-knowledge-graph { + align-items: flex-end; + color: var(--gm-3-ref-neutral-neutral-40); + display: flex; + font-size: 14px; + font-style: normal; + font-weight: 500; + line-height: 20px; + letter-spacing: 0.1px; + margin-left: auto; + padding: 10px 12px 10px 0; + text-align: right; + + a { + color: var(--link-color); + text-decoration: none; + } + } + @media only screen and (max-width: 420px) { flex-direction: column; } diff --git a/static/js/place/dev_place_main.tsx b/static/js/place/dev_place_main.tsx index 16e3db0151..c7e39d7c1d 100644 --- a/static/js/place/dev_place_main.tsx +++ b/static/js/place/dev_place_main.tsx @@ -411,16 +411,27 @@ const RelatedPlaces = (props: { place: NamedTypedPlace; childPlaces: NamedTypedPlace[]; }) => { + const [isCollapsed, setIsCollapsed] = useState(true); const { place, childPlaces } = props; if (!childPlaces || childPlaces.length === 0) { return null; } + + const NUM_PLACES = 15; + const showToggle = childPlaces.length > NUM_PLACES; + const truncatedPlaces = childPlaces.slice(0, NUM_PLACES); + const numPlacesCollapsed = childPlaces.length - NUM_PLACES; + + const toggleShowMore = () => { + setIsCollapsed(!isCollapsed); + }; + return (
    Places in {place.name}
    ); }; diff --git a/static/js/place/place.ts b/static/js/place/place.ts index d627133cae..f146e9c23b 100644 --- a/static/js/place/place.ts +++ b/static/js/place/place.ts @@ -20,7 +20,6 @@ import React from "react"; import ReactDOM from "react-dom"; import { PageData } from "../chart/types"; -import { NlSearchBar } from "../components/nl_search_bar"; import { loadLocaleData } from "../i18n/i18n"; import { GA_EVENT_NL_SEARCH, @@ -34,13 +33,8 @@ import { MainPane, showOverview } from "./main_pane"; import { Menu } from "./menu"; import { PageSubtitle } from "./page_subtitle"; import { PlaceHighlight } from "./place_highlight"; -import { PlaceSearch } from "./place_search"; import { isPlaceInUsa } from "./util"; -// Temporarily hide NL search bar on frontend until backend pipelines are -// implemented. -const SHOW_NL_SEARCH_BAR = false; - // Window scroll position to start fixing the sidebar. let yScrollLimit = 0; // Max top position for the sidebar, relative to #sidebar-outer. @@ -198,24 +192,6 @@ function renderPage(): void { const data: PageData = landingPageData; const isUsaPlace = isPlaceInUsa(dcid, data.parentPlaces); - if (SHOW_NL_SEARCH_BAR) { - ReactDOM.render( - React.createElement(NlSearchBar, { - initialValue: "", - inputId: "query-search-input", - onSearch, - placeholder: `Enter a question to explore`, - shouldAutoFocus: false, - }), - document.getElementById("nl-search-bar") - ); - } - - ReactDOM.render( - React.createElement(PlaceSearch, {}), - document.getElementById("place-search-container") - ); - ReactDOM.render( React.createElement(Menu, { pageChart: data.pageChart,
    - {c.AggCosineScore}{" "} + {c.AggCosineScore} {c.AggCosineScore > maxMonovarScore ? " (> best single var)" : ""} @@ -174,11 +172,14 @@ export interface DebugInfoProps { queryResult: QueryResult; } -export function DebugInfo(props: DebugInfoProps): JSX.Element { +export function DebugInfo(props: DebugInfoProps): ReactElement { const debugParam = queryString.parse(window.location.hash)[DEBUG_PARAM]; const hideDebug = - document.getElementById("metadata").dataset.hideDebug === "True" && - !debugParam; + !document.getElementById("metadata") || + !document.getElementById("metadata").dataset || + (document.getElementById("metadata").dataset.hideDebug !== "False" && + !debugParam); + const [isCollapsed, setIsCollapsed] = useState(true); const [showDebug, setShowDebug] = useState(false); @@ -219,277 +220,311 @@ export function DebugInfo(props: DebugInfoProps): JSX.Element { counters: props.debugData["counters"], }; - const toggleShowDebug = () => { + const toggleShowDebug = (): void => { setShowDebug(!showDebug); }; return ( <> - {!showDebug && ( - - bug_report - - )} + + bug_report + {showDebug && ( -
    - - X - - - DEBUGGING OPTIONS/INFO: -

    -
    - - Execution Status: {" "} - {debugInfo.status} - - - Detection Type: - {debugInfo.detectionType} - - - Place Detection Type: {" "} - - {debugInfo.placeDetectionType.toUpperCase()} - - - - Original Query: - {debugInfo.originalQuery} - - - Blocked:{" "} - {debugInfo.blocked.toString()} - - - Query index types: - - {debugInfo.queryIndexTypes.join(", ")} - - - - Query without places: - {debugInfo.queryWithoutPlaces} - - - Query without stop words: - - {debugInfo.queryWithoutStopWords || ""} - - - - Place Detection: - - -