From dc86c7f63f8ad884b814490fee25e886208fec47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20RAULT?= Date: Fri, 12 Aug 2016 18:22:01 +0200 Subject: [PATCH 1/7] Fixes load previous dataset Add interrupt exception for batch --- dlstats/fetchers/_commons.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dlstats/fetchers/_commons.py b/dlstats/fetchers/_commons.py index 41c8797..3e3ac1f 100644 --- a/dlstats/fetchers/_commons.py +++ b/dlstats/fetchers/_commons.py @@ -712,7 +712,8 @@ def load_previous_version(self, provider_name, dataset_code): dimension_list[key] = OrderedDict([(k, v) for k, v in self.codelists.get(key).items() if key in self.codelists]) for key in self.attribute_keys: - attribute_list[key] = OrderedDict([(k, v) for k, v in self.codelists.get(key).items() if key in self.codelists]) + if key in self.codelists: + attribute_list[key] = OrderedDict([(k, v) for k, v in self.codelists.get(key).items()]) self.dimension_list.set_dict(dimension_list) self.attribute_list.set_dict(attribute_list) @@ -1240,6 +1241,9 @@ def process_series_data(self): else: self.count_accepts += 1 self.series_list.append(data) + + elif isinstance(data, errors.InterruptBatchSeriesData): + self.update_series_list() elif isinstance(data, errors.RejectFrequency): self.count_rejects += 1 From bdc9d08f0dce9a2a150c9c126132f667bda54cfc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20RAULT?= Date: Fri, 12 Aug 2016 18:27:43 +0200 Subject: [PATCH 2/7] IMF: replace sdmx XML 2.0 by sdmx JSON 2.1. fixes Widukind/widukind-projects#556 --- dlstats/fetchers/imf.py | 438 +- dlstats/tests/fetchers/test_imf.py | 134 +- dlstats/tests/resources/download.txt | 6 +- .../imf/imf-dot-data-compact-2.1.json | 1 + .../imf/imf-dot-datastructure-2.1.json | 1 + dlstats/tests/resources/xml_samples.py | 88 - .../xmlutils/imf/imf-dot-data-compact-2.0.xml | 148 - .../imf/imf-dot-datastructure-2.0.xml | 26623 ---------------- dlstats/tests/test_xml_utils.py | 2 - dlstats/xml_utils.py | 50 - 10 files changed, 464 insertions(+), 27027 deletions(-) create mode 100644 dlstats/tests/resources/imf/imf-dot-data-compact-2.1.json create mode 100644 dlstats/tests/resources/imf/imf-dot-datastructure-2.1.json delete mode 100644 dlstats/tests/resources/xmlutils/imf/imf-dot-data-compact-2.0.xml delete mode 100644 dlstats/tests/resources/xmlutils/imf/imf-dot-datastructure-2.0.xml diff --git a/dlstats/fetchers/imf.py b/dlstats/fetchers/imf.py index 187d439..0d8334b 100644 --- a/dlstats/fetchers/imf.py +++ b/dlstats/fetchers/imf.py @@ -11,14 +11,9 @@ from widukind_common import errors -from dlstats.utils import Downloader, get_ordinal_from_period, clean_datetime, clean_key, clean_dict +from dlstats.utils import Downloader, get_ordinal_from_period, clean_datetime from dlstats.fetchers._commons import Fetcher, Datasets, Providers, SeriesIterator -from dlstats import constants -from dlstats.xml_utils import (XMLStructure_2_0 as XMLStructure, - XMLCompactData_2_0_IMF as XMLData, - dataset_converter, - select_dimension, - get_dimensions_from_dsd) +from dlstats.xml_utils import select_dimension VERSION = 3 @@ -31,133 +26,218 @@ 'WEO': { 'name': 'World Economic Outlook', 'doc_href': 'http://www.imf.org/external/ns/cs.aspx?id=28', + 'previous_datasets': [], }, 'WEO-GROUPS': { 'name': 'World Economic Outlook (groups)', 'doc_href': 'http://www.imf.org/external/ns/cs.aspx?id=28', + 'previous_datasets': [], }, 'BOP': { 'name': 'Balance of Payments', 'doc_href': 'http://data.imf.org/BOP', + 'previous_datasets': [], }, 'BOPAGG': { 'name': 'Balance of Payments, World and Regional Aggregates', 'doc_href': 'http://data.imf.org/BOP', + 'previous_datasets': [], }, 'DOT': { 'name': 'Direction of Trade Statistics', 'doc_href': 'http://data.imf.org/DOT', + 'previous_datasets': [], }, 'IFS': { 'name': 'International Financial Statistics', 'doc_href': 'http://data.imf.org/IFS', + 'previous_datasets': [], }, 'COMMP': { 'name': 'Primary Commodity Prices', 'doc_href': 'http://data.imf.org', + 'previous_datasets': [], }, 'COMMPP': { 'name': 'Primary Commodity Prices Projections', 'doc_href': 'http://data.imf.org', + 'previous_datasets': [], }, 'GFSR': { 'name': 'Government Finance Statistics, Revenue', 'doc_href': 'http://data.imf.org/COFR', + 'previous_datasets': ['GFSR2015'] }, 'GFSSSUC': { 'name': 'Government Finance Statistics, Statement of Sources and Uses of Cash', 'doc_href': 'http://data.imf.org/COFR', + 'previous_datasets': ['GFSSSUC2015'] }, 'GFSCOFOG': { 'name': 'Government Finance Statistics, Expenditure by Function of Government', 'doc_href': 'http://data.imf.org/COFR', + 'previous_datasets': ['GFSCOFOG2015'] }, 'GFSFALCS': { 'name': 'Government Finance Statistics, Financial Assets and Liabilities by Counterpart Sector', 'doc_href': 'http://data.imf.org/COFR', + 'previous_datasets': ['GFSFALCS2015'] }, 'GFSIBS': { 'name': 'Government Finance Statistics, Integrated Balance Sheet (Stock Positions and Flows in Assets and Liabilities)', 'doc_href': 'http://data.imf.org/COFR', + 'previous_datasets': ['GFSIBS2015'] }, 'GFSMAB': { 'name': 'Government Finance Statistics, Main Aggregates and Balances', 'doc_href': 'http://data.imf.org/COFR', + 'previous_datasets': ['GFSMAB2015'] }, 'GFSE': { 'name': 'Government Finance Statistics, Expense', 'doc_href': 'http://data.imf.org/COFR', + 'previous_datasets': ['GFSE2015'] }, 'FSI': { 'name': 'Financial Soundness Indicators', 'doc_href': 'http://data.imf.org/FSI', + 'previous_datasets': [], }, 'RT': { 'name': 'International Reserves Template', 'doc_href': 'http://data.imf.org/RT', + 'previous_datasets': [], }, 'FAS': { 'name': 'Financial Access Survey', 'doc_href': 'http://data.imf.org/FAS', + 'previous_datasets': [], }, 'COFER': { 'name': 'Currency Composition of Official Foreign Exchange Reserves', 'doc_href': 'http://data.imf.org/COFER', + 'previous_datasets': [], }, 'CDIS': { 'name': 'Coordinated Direct Investment Survey', 'doc_href': 'http://data.imf.org/CDIS', + 'previous_datasets': [], }, 'CPIS': { # frequency S (semi annual) 'name': 'Coordinated Portfolio Investment Survey', 'doc_href': 'http://data.imf.org/CPIS', + 'previous_datasets': [], }, 'WoRLD': { 'name': 'World Revenue Longitudinal Data', 'doc_href': 'http://data.imf.org', + 'previous_datasets': [], }, 'MCDREO': { 'name': 'Middle East and Central Asia Regional Economic Outlook', 'doc_href': 'http://data.imf.org/MCDREO', + 'previous_datasets': ['MCDREO201410', 'MCDREO201501', 'MCDREO201505', 'MCDREO201510'] }, 'APDREO': { 'name': 'Asia and Pacific Regional Economic Outlook', 'doc_href': 'http://data.imf.org/APDREO', + 'previous_datasets': ['APDREO201410', 'APDREO201504', 'APDREO201510'] }, 'AFRREO': { 'name': 'Sub-Saharan Africa Regional Economic Outlook', 'doc_href': 'http://data.imf.org/AFRREO', + 'previous_datasets': ['AFRREO201410', 'AFRREO201504', 'AFRREO201510'] }, 'WHDREO': { # bug: KeyError: 'NGDP_FY' 'name': 'Western Hemisphere Regional Economic Outlook', 'doc_href': 'http://data.imf.org/WHDREO', + 'previous_datasets': ['WHDREO201504', 'WHDREO201510'] }, 'WCED': { # bug: KeyError: 'OP' 'name': 'World Commodity Exporters', 'doc_href': 'http://data.imf.org/WCED', + 'previous_datasets': [], }, 'CPI': { 'name': 'Consumer Price Index', 'doc_href': 'http://data.imf.org/CPI', + 'previous_datasets': [], }, 'COFR': { # Erreur 500 'name': 'Coverage of Fiscal Reporting', 'doc_href': 'http://data.imf.org/COFR', + 'previous_datasets': [], }, 'ICSD': { # bug: KeyError: 'IGOV' 'name': 'Investment and Capital Stock', 'doc_href': 'http://data.imf.org/ICSD', + 'previous_datasets': [], }, 'HPDD': { # bug: KeyError: 'GGXWDG' 'name': 'Historical Public Debt', 'doc_href': 'http://data.imf.org/HPDD', + 'previous_datasets': [], }, 'PGI': { 'name': 'Principal Global Indicators', 'doc_href': 'http://data.imf.org/PGI', + 'previous_datasets': [], }, } +""" +FSIRE +Financial Soundness Indicators (FSI), Balance Sheets + +FSIBS +Financial Soundness Indicators (FSI), Reporting Entities + +FSIREM +Financial Soundness Indicators (FSI), Reporting Entities - Multidimensional + +GFS01M +Government Finance Statistics (GFS 2001) - Multidimensional + +GFS01 +Government Finance Statistics (GFS 2001) + +FM (FM201410, FM201504, FM201510) +Fiscal Monitor (FM) + +CDISARCHIVE +Coordinated Direct Investment Survey (CDIS) - Archive + +IRFCL +International Reserves and Foreign Currency Liquidity (IRFCL) + +RAFIT2AGG +RA-FIT Round 2 Aggregates + +GFSYR2014 +Government Finance Statistics Yearbook (GFSY 2014), Revenue + +GFSYSSUC2014 +Government Finance Statistics Yearbook (GFSY 2014), Statement of Sources and Uses of Cash + +GFSYCOFOG2014 +Government Finance Statistics Yearbook (GFSY 2014), Expenditure by Function of Government (COFOG) + +GFSYIBS2014 +Government Finance Statistics Yearbook (GFSY 2014), Integrated Balance Sheet (Stock Positions and Flows in Assets and Liabilities) + +GFSYMAB2014 +Government Finance Statistics Yearbook (GFSY 2014), Main Aggregates and Balances + +GFSYFALCS2014 +Government Finance Statistics Yearbook (GFSY 2014), Financial Assets and Liabilities by Counterpart Sector + +GFSYE2014 +Government Finance Statistics Yearbook (GFSY 2014), Expense + +BOPSDMXUSD +Balance of Payments (BOP), Global SDMX (US Dollars) +""" + CATEGORIES = [ { @@ -703,71 +783,205 @@ def upsert_dataset(self, dataset_code): if dataset_code in DATASETS_KLASS: klass = DATASETS_KLASS[dataset_code] else: - klass = DATASETS_KLASS["XML"] + klass = DATASETS_KLASS["JSON"] dataset.series.data_iterator = klass(dataset) return dataset.update_database() - - -class IMF_XML_Data(SeriesIterator): + +import time +import hashlib +import json +from pprint import pprint + +def retry(tries=1, sleep_time=2): + """Retry calling the decorated function + :param tries: number of times to try + :type tries: int + """ + def try_it(func): + def f(*args, **kwargs): + attempts = 0 + while True: + try: + return func(*args,**kwargs) + except Exception as e: + logger.warning("retry url[%s]" % args[1]) + args[0].retry_count += 1 + attempts += 1 + if attempts > tries: + raise e + time.sleep(sleep_time * attempts) + return f + return try_it + +class IMF_JSON_Data(SeriesIterator): def __init__(self, dataset=None): super().__init__(dataset) self.store_path = self.get_store_path() - self.xml_dsd = XMLStructure(provider_name=self.provider_name) - self._load_dsd() - - if self.dataset.last_update and self.xml_dsd.last_update: - - if self.dataset.last_update > self.xml_dsd.last_update: - comments = "update-date[%s]" % self.xml_dsd.last_update - raise errors.RejectUpdatedDataset(provider_name=self.provider_name, - dataset_code=self.dataset.dataset_code, - comments=comments) + self.url_base = "http://dataservices.imf.org/REST/SDMX_JSON.svc" + self.frequency_field = None + + self.retry_count = 0 + + self.current_dataset_code = self.dataset_code - self.dataset.last_update = clean_datetime(self.xml_dsd.last_update) + self.previous_datasets = [] + self.previous_last_update = None + if not self.dataset.last_update and DATASETS[self.dataset_code].get('previous_datasets'): + self.previous_datasets = DATASETS[self.dataset_code].get('previous_datasets') + self.previous_datasets.append(self.dataset_code) + self.rows = self._get_data_by_dimension_multi_datasets() + else: + self.load_dsd() + self.rows = self._get_data_by_dimension() - self.xml_data = XMLData(provider_name=self.provider_name, - dataset_code=self.dataset_code, - xml_dsd=self.xml_dsd, - dsd_id=self.dataset_code, - frequencies_supported=FREQUENCIES_SUPPORTED) + @retry(tries=10, sleep_time=2) + def download_json(self, url, params={}): + + if not os.path.exists(self.store_path): + os.makedirs(self.store_path, exist_ok=True) + + filename = "%s.json" % hashlib.sha224(url.encode("utf-8")).hexdigest() + filepath = os.path.abspath(os.path.join(self.store_path, filename)) - self.rows = self._get_data_by_dimension() + if os.path.exists(filepath): + if os.path.getsize(filepath) == 0: + os.remove(filepath) + elif not self.fetcher.use_existing_file: + os.remove(filepath) + + if not os.path.exists(filepath): + response = self.fetcher.requests_client.get(url, params=params, stream=True, allow_redirects=False) + #response = requests.get(url, params=params, stream=True, allow_redirects=False) + + logger.info("download url[%s] - filepath[%s] - status_code[%s]" % (response.url, filepath, response.status_code)) + + response.raise_for_status() + + with open(filepath, mode='wb') as f: + for chunk in response.iter_content(): + f.write(chunk) + + self.fetcher.for_delete.append(filepath) + else: + logger.info("use exist filepath[%s]" % filepath) + + with open(filepath) as f: + return json.load(f) def _get_url_dsd(self): - return "http://dataservices.imf.org/REST/SDMX_XML.svc/DataStructure/%s" % self.dataset_code + return "http://dataservices.imf.org/REST/SDMX_JSON.svc/DataStructure/%s" % self.current_dataset_code def _get_url_data(self): - return "http://dataservices.imf.org/REST/SDMX_XML.svc/CompactData/%s" % self.dataset_code - - def _load_dsd(self): + return "http://dataservices.imf.org/REST/SDMX_JSON.svc/CompactData/%s" % self.current_dataset_code + + def load_dsd(self): url = self._get_url_dsd() - download = Downloader(store_filepath=self.store_path, - url=url, - filename="dsd-%s.xml" % self.dataset_code, - use_existing_file=self.fetcher.use_existing_file, - client=self.fetcher.requests_client) - filepath = download.get_filepath() - self.fetcher.for_delete.append(filepath) + json_dsd = self.download_json(url) - self.xml_dsd.process(filepath) - self._set_dataset() - - def _set_dataset(self): - - dataset = dataset_converter(self.xml_dsd, self.dataset_code) - self.dataset.dimension_keys = dataset["dimension_keys"] - self.dataset.attribute_keys = dataset["attribute_keys"] - self.dataset.concepts = dataset["concepts"] - self.dataset.codelists = dataset["codelists"] + codelists = {} + concepts = {} + codelists_list = self._get_list(json_dsd['Structure']['CodeLists']['CodeList']) + + for cl in codelists_list: + cl_key = cl["@id"] + #cl_name = cl["Name"]["#text"] + if not cl_key in codelists: + codelists[cl_key] = {} + + code_list = self._get_list(cl["Code"]) + for code in code_list: + try: + codelists[cl_key][code["@value"]] = code["Description"]["#text"] + except Exception as err: + raise + + concepts_list = self._get_list(json_dsd['Structure']['Concepts']['ConceptScheme']['Concept']) + for concept in concepts_list: + concepts[concept["@id"]] = concept["Name"]["#text"] + + dimensions_list = self._get_list(json_dsd['Structure']['KeyFamilies']['KeyFamily']['Components']['Dimension']) + for dim in dimensions_list: + if not dim["@conceptRef"] in self.dataset.dimension_keys: + self.dataset.dimension_keys.append(dim["@conceptRef"]) + self.dataset.codelists[dim["@conceptRef"]] = codelists[dim["@codelist"]] + + if dim.get('@isFrequencyDimension') and dim.get('@isFrequencyDimension') == "true": + self.frequency_field = dim["@conceptRef"] + + attributes_list = self._get_list(json_dsd['Structure']['KeyFamilies']['KeyFamily']['Components']['Attribute']) + for attr in attributes_list: + if not attr["@conceptRef"] in self.dataset.attribute_keys: + self.dataset.attribute_keys.append(attr["@conceptRef"]) + if "@codelist" in attr: + self.dataset.codelists[attr["@conceptRef"]] = codelists[attr["@codelist"]] + else: + self.dataset.codelists[attr["@conceptRef"]] = {} + + '''last_update process''' + last_update_str = None + if self.previous_last_update: + self.dataset.last_update = self.previous_last_update + else: + annotations_list = self._get_list(json_dsd['Structure']['KeyFamilies']['KeyFamily']['Annotations']['Annotation']) + for annotation in annotations_list: + if annotation['AnnotationTitle'] == 'Latest Update Date': + last_update_str = annotation['AnnotationText']['#text'] + break + if last_update_str: + last_update = clean_datetime(datetime.strptime(last_update_str, '%m/%d/%Y')) + if not self.dataset.last_update: + self.dataset.last_update = last_update + elif not self.previous_datasets: + if self.dataset.last_update >= last_update: + comments = "update-date[%s]" % last_update + raise errors.RejectUpdatedDataset(provider_name=self.provider_name, + dataset_code=self.dataset_code, + comments=comments) + else: + self.dataset.last_update = last_update + else: + self.dataset.last_update = last_update + else: + self.dataset.last_update = clean_datetime() + + self.dataset.concepts = concepts + + #TODO: datasets.notes from Annotations + annotations_list = self._get_list(json_dsd['Structure']['KeyFamilies']['KeyFamily']['Annotations']['Annotation']) + for annotation in annotations_list: + print("AnnotationTitle : ", annotation['AnnotationTitle']) def _get_dimensions_from_dsd(self): - return get_dimensions_from_dsd(self.xml_dsd, self.provider_name, self.dataset_code) + dimensions = {} + for key in self.dataset.dimension_keys: + dimensions[key] = self.dataset.codelists[key] + return self.dataset.dimension_keys, dimensions + def _get_data_by_dimension_multi_datasets(self): + for dataset_code in self.previous_datasets: + self.current_dataset_code = dataset_code + + if self.current_dataset_code != self.dataset_code: + year = int(self.current_dataset_code.split(self.dataset_code)[1][:4]) + month = int(self.current_dataset_code.split(self.dataset_code)[1][-2:]) + self.previous_last_update = clean_datetime(datetime(year, month, 1)) + else: + self.previous_last_update = None + + self.load_dsd() + + for row, err in self._get_data_by_dimension(): + if row or err: + yield row, err + else: + continue + yield None, errors.InterruptBatchSeriesData() + def _get_data_by_dimension(self): dimension_keys, dimensions = self._get_dimensions_from_dsd() @@ -790,37 +1004,119 @@ def _get_data_by_dimension(self): key = "".join(sdmx_key) url = "%s/%s" % (self._get_url_data(), key) - filename = "data-%s-%s.xml" % (self.dataset_code, key.replace(".", "_")) - download = Downloader(url=url, - filename=filename, - store_filepath=self.store_path, - client=self.fetcher.requests_client) - filepath, response = download.get_filepath_and_response() - - if filepath: - self.fetcher.for_delete.append(filepath) - - if response.status_code >= 400 and response.status_code < 500: + json_data = self.download_json(url) + + if not "Series" in json_data["CompactData"]["DataSet"]: + logger.warning("no series for url[%s]" % url) continue - elif response.status_code >= 500: - raise response.raise_for_status() - - for row, err in self.xml_data.process(filepath): + + for row, err in self._json_data_process(json_data): + if row and len(row["values"]) == 0: + #TODO: log + continue yield row, err local_count += 1 - - if local_count >= 2999: - logger.warning("TODO: VRFY - series > 2999 for provider[IMF] - dataset[%s] - key[%s]" % (self.dataset_code, key)) - #self.dataset.update_database(save_only=True) + if local_count >= 2999: + logger.warning('TODO: VRFY - series greater of 2999 for provider[IMF] - dataset[%s] - key[%s]' % (self.dataset_code, url)) + + logger.info("retries count[%s] for dataset[%s]" % (self.retry_count, self.dataset_code)) yield None, None + def _get_list(self, values): + if isinstance(values, list): + return values + elif isinstance(values, dict): + return [values] + else: + raise TypeError("not list or dict type [%s]" % type(values)) + + def _json_data_process(self, json_data): + + series_list = self._get_list(json_data["CompactData"]["DataSet"]["Series"]) + + for series in series_list: + + if not "Obs" in series: + continue + + bson = { + 'provider_name': self.provider_name, + 'dataset_code': self.dataset_code, + 'name': None, + 'key': None, + 'values': [], + 'attributes': None, + 'dimensions': {}, + 'last_update': self.dataset.last_update, + 'start_date': None, + 'end_date': None, + 'frequency': None + } + + tmp_attribute_keys = ["@%s" % key for key in self.dataset.attribute_keys] + + obs_list = self._get_list(series["Obs"]) + + for obs in obs_list: + if not "@OBS_VALUE" in obs: + continue + item = { + "period": obs["@TIME_PERIOD"], + "value": obs["@OBS_VALUE"], + "attributes": None, + } + for key in tmp_attribute_keys: + if key in obs: + _key = obs[key][1:] + if not item["attributes"]: + item["attributes"] = {} + item["attributes"][_key] = obs[key] + bson["values"].append(item) + + if len(bson["values"]) == 0: + #TODO: log + return + + for dim in self.dataset.dimension_keys: + key = "@%s" % dim + bson["dimensions"][dim] = series[key] + + if self.dataset.attribute_keys: + bson["attributes"] = {} + for attr in self.dataset.attribute_keys: + key = "@%s" % attr + if key in series: + bson["attributes"][attr] = series[key] + + bson["key"] = self.dataset_code + "." + ".".join([bson["dimensions"][key] for key in self.dataset.dimension_keys]) + bson["name"] = " - ".join([self.dataset.codelists[key][bson["dimensions"][key]] for key in self.dataset.dimension_keys]) + + bson["frequency"] = series["@FREQ"] #series["@%s" % self.frequency_field], + + bson["start_date"] = get_ordinal_from_period(bson["values"][0]["period"], freq=bson["frequency"]) + bson["end_date"] = get_ordinal_from_period(bson["values"][-1]["period"], freq=bson["frequency"]) + + """ + Récupérable dans Annotation du codelist pour l'indicator: + Topic: External Sector + Alternate Publication Codes: eLibrary Concept: TX_R, WEO publication: TX_RPCH + Source Code - Collection: TX_RPCH|PCOPP + APDREO Name: Volume of total exports of goods and services, US Dollars, percent change + APDREO Code: TX_RPCH.A + """ + + #pprint(bson) + + yield bson, None + def build_series(self, bson): - bson["last_update"] = self.dataset.last_update + #bson["last_update"] = self.dataset.last_update self.dataset.add_frequency(bson["frequency"]) return bson + class WeoData(SeriesIterator): def __init__(self, dataset): @@ -1244,6 +1540,6 @@ def build_series(self, row): DATASETS_KLASS = { "WEO": WeoData, "WEO-GROUPS": WeoGroupsData, - "XML": IMF_XML_Data + "JSON": IMF_JSON_Data } diff --git a/dlstats/tests/fetchers/test_imf.py b/dlstats/tests/fetchers/test_imf.py index e8adee4..0da3616 100644 --- a/dlstats/tests/fetchers/test_imf.py +++ b/dlstats/tests/fetchers/test_imf.py @@ -14,7 +14,6 @@ from dlstats.tests.base import RESOURCES_DIR as BASE_RESOURCES_DIR from dlstats.tests.base import BaseTestCase from dlstats.tests.fetchers.base import BaseFetcherTestCase -from dlstats.tests.resources import xml_samples from unittest import mock @@ -157,47 +156,99 @@ def get_dimensions_from_dsd(self, xml_dsd=None, provider_name=None, dataset_code=None, dsd_id=None): - dimension_keys = ['REF_AREA', 'INDICATOR', 'VIS_AREA', 'FREQ', 'SCALE'] + dimension_keys = ['FREQ', 'REF_AREA', 'INDICATOR', 'COUNTERPART_AREA'] dimensions = { - "REF_AREA": {}, - "INDICATOR": {}, - "VIS_AREA": {}, 'FREQ': {'A': 'A'}, - "SCALE": {}, + "REF_AREA": {},#'US': 'US'}, + "INDICATOR": {},#'TMG_CIF_USD': 'TMG_CIF_USD'}, + "COUNTERPART_AREA": {}#'AN': 'AN', 'FR': 'FR', 'EE': 'EE'}, } return dimension_keys, dimensions -LOCAL_DATASETS_UPDATE = { - "DOT": { - "concept_keys": ['cmt', 'freq', 'indicator', 'obs-status', 'ref-area', 'scale', 'seriescode', 'time-format', 'vis-area'], - "codelist_keys": ['cmt', 'freq', 'indicator', 'obs-status', 'ref-area', 'scale', 'seriescode', 'time-format', 'vis-area'], - "codelist_count": { - "cmt": 0, - "freq": 3, - "indicator": 4, - "obs-status": 13, - "ref-area": 248, - "scale": 16, - "seriescode": 0, - "time-format": 6, - "vis-area": 311, +DSD_IMF_DOT = { + "provider": "IMF", + "filepaths": { + "datastructure": os.path.abspath(os.path.join(RESOURCES_DIR, "imf-dot-datastructure-2.1.json")), + }, + "dataset_code": "DOT", + "dataset_name": "Direction of Trade Statistics (DOTS)", + "dsd_id": "DOT", + "dsd_ids": ["DOT"], + "dataflow_keys": ['DOT'], + "is_completed": True, + "categories_key": "DOT", + "categories_parents": None, + "categories_root": None, + "concept_keys": ['cmt', 'counterpart-area', 'freq', 'indicator', 'obs-status', 'obs-value', 'ref-area', 'time-format', 'time-period', 'unit-mult'], + "codelist_keys": ['cmt', 'counterpart-area', 'freq', 'indicator', 'obs-status', 'ref-area', 'time-format', 'unit-mult'], + "codelist_count": { + "counterpart-area": 312, + "freq": 6, + "indicator": 4, + "obs-status": 13, + "ref-area": 249, + "time-format": 6, + "unit-mult": 31, + }, + "dimension_keys": ['freq', 'ref-area', 'indicator', 'counterpart-area'], + "dimension_count": { + "freq": 6, + "ref-area": 249, + "indicator": 4, + "counterpart-area": 312, + }, + "attribute_keys": ['unit-mult', 'cmt', 'obs-status', 'time-format'], + "attribute_count": { + "unit-mult": 31, + "cmt": 0, + "obs-status": 13, + "time-format": 6, + }, +} + +DATA_IMF_DOT = { + "filepath": os.path.abspath(os.path.join(RESOURCES_DIR, "imf-dot-data-compact-2.1.json")), + "DSD": DSD_IMF_DOT, + "kwargs": { + "provider_name": "IMF", + "dataset_code": "DOT", + "dsd_filepath": DSD_IMF_DOT["filepaths"]["datastructure"], + "dsd_id": DSD_IMF_DOT["dsd_id"] + }, + "series_accept": 3, + "series_reject_frequency": 0, + "series_reject_empty": 0, + "series_all_values": 156, + "series_key_first": 'DOT.A.US.TMG_CIF_USD.AN', + "series_key_last": 'DOT.A.US.TMG_CIF_USD.EE', + "series_sample": { + "provider_name": "IMF", + "dataset_code": "DOT", + 'key': 'DOT.A.US.TMG_CIF_USD.AN', + 'name': 'Annual - United States - Goods, Value of Imports, Cost, Insurance, Freight (CIF), US Dollars - Netherlands Antilles', + 'frequency': 'A', + 'last_update': None, + 'first_value': { + 'value': '170', + 'period': '1950', + 'attributes': {}, }, - "dimension_keys": ['ref-area', 'indicator', 'vis-area', 'freq', 'scale'], - "dimension_count": { - "ref-area": 248, - "indicator": 4, - "vis-area": 311, - "freq": 3, - "scale": 16, + 'last_value': { + 'value': '386.938923', + 'period': '2015', + 'attributes': {}, }, - "attribute_keys": ['seriescode', 'cmt', 'obs-status', 'time-format'], - "attribute_count": { - "seriescode": 0, - "cmt": 0, - "obs-status": 13, - "time-format": 6, + 'dimensions': { + 'counterpart-area': 'an', + 'freq': 'a', + 'indicator': 'tmg-cif-usd', + 'ref-area': 'us' }, - }, + 'attributes': { + 'time-format': 'p1y', + 'unit-mult': '6' + }, + } } def weo_urls_patch(self): @@ -238,7 +289,6 @@ def test_weo_extract_date(self): _date = (release_date.year, release_date.month, release_date.day) self.assertEqual(_date, (2006, 9, 1)) -#@unittest.skipIf(True, "TODO") class FetcherTestCase(BaseFetcherTestCase): # nosetests -s -v dlstats.tests.fetchers.test_imf:FetcherTestCase @@ -247,7 +297,7 @@ class FetcherTestCase(BaseFetcherTestCase): DATASETS = { 'WEO': DATA_WEO, 'WEO-GROUPS': DATA_WEO_GROUPS, - 'DOT': deepcopy(xml_samples.DATA_IMF_DOT), + 'DOT': deepcopy(DATA_IMF_DOT), } DATASET_FIRST = "AFRREO" DATASET_LAST = "WoRLD" @@ -263,17 +313,16 @@ def _load_files_weo_groups(self, dataset_code): self.register_url(url, self.DATASETS[dataset_code]["filepath"]) - def _load_files_xml(self, dataset_code): + def _load_files_json_dot(self, dataset_code): filepaths = self.DATASETS[dataset_code]["DSD"]["filepaths"] - url = "http://dataservices.imf.org/REST/SDMX_XML.svc/DataStructure/%s" % dataset_code + url = "http://dataservices.imf.org/REST/SDMX_JSON.svc/DataStructure/DOT" self.register_url(url, filepaths["datastructure"]) - url = "http://dataservices.imf.org/REST/SDMX_XML.svc/CompactData/%s/...A." % dataset_code + url = "http://dataservices.imf.org/REST/SDMX_JSON.svc/CompactData/DOT/A..." self.register_url(url, self.DATASETS[dataset_code]['filepath']) - @httpretty.activate @unittest.skipUnless('FULL_TEST' in os.environ, "Skip - no full test") @mock.patch('dlstats.fetchers.imf.WeoData.weo_urls', weo_urls_patch) @@ -364,14 +413,13 @@ def test_revisions_weo(self): self.assertEqual(count_revisions, 9055) @httpretty.activate - @mock.patch('dlstats.fetchers.imf.IMF_XML_Data._get_dimensions_from_dsd', get_dimensions_from_dsd) + @mock.patch('dlstats.fetchers.imf.IMF_JSON_Data._get_dimensions_from_dsd', get_dimensions_from_dsd) def test_upsert_dataset_dot(self): # nosetests -s -v dlstats.tests.fetchers.test_imf:FetcherTestCase.test_upsert_dataset_dot dataset_code = "DOT" - self._load_files_xml(dataset_code) - self.DATASETS[dataset_code]["DSD"].update(LOCAL_DATASETS_UPDATE[dataset_code]) + self._load_files_json_dot(dataset_code) self.assertProvider() self.assertDataset(dataset_code) self.assertSeries(dataset_code) diff --git a/dlstats/tests/resources/download.txt b/dlstats/tests/resources/download.txt index 654d96c..16834e8 100644 --- a/dlstats/tests/resources/download.txt +++ b/dlstats/tests/resources/download.txt @@ -139,8 +139,10 @@ http "http://www.esri.cao.go.jp/jp/sna/data/data_list/sokuhou/files/2015/qe153_2 http "http://www.esri.cao.go.jp/jp/sna/data/data_list/sokuhou/files/2015/qe153_2/__icsFiles/afieldfile/2015/12/04/ritu-mk1532.csv" > ritu-mk1532.csv # IMF - xmlutils test -http "http://dataservices.imf.org/REST/SDMX_XML.svc/DataStructure/DOT" > xmlutils/imf/imf-dot-datastructure-2.0.xml -http "http://dataservices.imf.org/REST/SDMX_XML.svc/CompactData/DOT/122..369.A." > xmlutils/imf/imf-dot-data-compact-2.0.xml +#http "http://dataservices.imf.org/REST/SDMX_XML.svc/DataStructure/DOT" > xmlutils/imf/imf-dot-datastructure-2.0.xml +#http "http://dataservices.imf.org/REST/SDMX_XML.svc/CompactData/DOT/122..369.A." > xmlutils/imf/imf-dot-data-compact-2.0.xml +http "http://dataservices.imf.org/REST/SDMX_JSON.svc/DataStructure/DOT" > imf/imf-dot-datastructure-2.1.json +http "http://dataservices.imf.org/REST/SDMX_JSON.svc/CompactData/DOT/A.US.TMG_CIF_USD.AN+FR+EE" > imf/imf-dot-data-compact-2.1.json # IMF - fetcher tests http "http://www.imf.org/external/ns/cs.aspx?id=28" > imf/weo-index.html diff --git a/dlstats/tests/resources/imf/imf-dot-data-compact-2.1.json b/dlstats/tests/resources/imf/imf-dot-data-compact-2.1.json new file mode 100644 index 0000000..5683cf9 --- /dev/null +++ b/dlstats/tests/resources/imf/imf-dot-data-compact-2.1.json @@ -0,0 +1 @@ +{"CompactData":{"@xmlns:xsi":"http://www.w3.org/2001/XMLSchema-instance","@xmlns:xsd":"http://www.w3.org/2001/XMLSchema","@xsi:schemaLocation":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/message https://registry.sdmx.org/schemas/v2_0/SDMXMessage.xsd http://dataservices.imf.org/compact/DOT http://dataservices.imf.org/compact/DOT.xsd","@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/message","Header":{"ID":"a7944464-9385-49dc-87df-b017dd2dce1e","Test":"false","Prepared":"2016-08-12T11:33:46","Sender":{"@id":"IMF","Name":{"@xml:lang":"en","#text":"IMF"},"Contact":{"URI":"http://www.imf.org","Telephone":"+ 1 (202) 623-6220"}}},"DataSet":{"@xmlns":"http://dataservices.imf.org/compact/DOT","Series":[{"@FREQ":"A","@REF_AREA":"US","@INDICATOR":"TMG_CIF_USD","@COUNTERPART_AREA":"AN","@UNIT_MULT":"6","@TIME_FORMAT":"P1Y","Obs":[{"@TIME_PERIOD":"1950","@OBS_VALUE":"170"},{"@TIME_PERIOD":"1951","@OBS_VALUE":"172"},{"@TIME_PERIOD":"1952","@OBS_VALUE":"193"},{"@TIME_PERIOD":"1953","@OBS_VALUE":"169"},{"@TIME_PERIOD":"1954","@OBS_VALUE":"177"},{"@TIME_PERIOD":"1955","@OBS_VALUE":"234"},{"@TIME_PERIOD":"1956","@OBS_VALUE":"264"},{"@TIME_PERIOD":"1957","@OBS_VALUE":"298"},{"@TIME_PERIOD":"1958","@OBS_VALUE":"346.3"},{"@TIME_PERIOD":"1959","@OBS_VALUE":"304.9"},{"@TIME_PERIOD":"1960","@OBS_VALUE":"287.6"},{"@TIME_PERIOD":"1961","@OBS_VALUE":"305.8"},{"@TIME_PERIOD":"1962","@OBS_VALUE":"291.2"},{"@TIME_PERIOD":"1963","@OBS_VALUE":"285"},{"@TIME_PERIOD":"1964","@OBS_VALUE":"315.4"},{"@TIME_PERIOD":"1965","@OBS_VALUE":"345.1"},{"@TIME_PERIOD":"1966","@OBS_VALUE":"330.2"},{"@TIME_PERIOD":"1967","@OBS_VALUE":"332"},{"@TIME_PERIOD":"1968","@OBS_VALUE":"353.3"},{"@TIME_PERIOD":"1969","@OBS_VALUE":"417"},{"@TIME_PERIOD":"1970","@OBS_VALUE":"442.3"},{"@TIME_PERIOD":"1971","@OBS_VALUE":"411"},{"@TIME_PERIOD":"1972","@OBS_VALUE":"424.8"},{"@TIME_PERIOD":"1973","@OBS_VALUE":"783.1"},{"@TIME_PERIOD":"1974","@OBS_VALUE":"2162.8"},{"@TIME_PERIOD":"1975","@OBS_VALUE":"1638.8"},{"@TIME_PERIOD":"1976","@OBS_VALUE":"1227.3"},{"@TIME_PERIOD":"1977","@OBS_VALUE":"1349"},{"@TIME_PERIOD":"1978","@OBS_VALUE":"1323.9"},{"@TIME_PERIOD":"1979","@OBS_VALUE":"1913.5"},{"@TIME_PERIOD":"1980","@OBS_VALUE":"2679.9"},{"@TIME_PERIOD":"1981","@OBS_VALUE":"2715.4"},{"@TIME_PERIOD":"1982","@OBS_VALUE":"2185.7"},{"@TIME_PERIOD":"1983","@OBS_VALUE":"2367.3"},{"@TIME_PERIOD":"1984","@OBS_VALUE":"2111.9"},{"@TIME_PERIOD":"1985","@OBS_VALUE":"836"},{"@TIME_PERIOD":"1986","@OBS_VALUE":"500.9"},{"@TIME_PERIOD":"1987","@OBS_VALUE":"556.6"},{"@TIME_PERIOD":"1988","@OBS_VALUE":"444.7"},{"@TIME_PERIOD":"1989","@OBS_VALUE":"410.602"},{"@TIME_PERIOD":"1990","@OBS_VALUE":"452.6"},{"@TIME_PERIOD":"1991","@OBS_VALUE":"706.5"},{"@TIME_PERIOD":"1992","@OBS_VALUE":"686.4"},{"@TIME_PERIOD":"1993","@OBS_VALUE":"424.6"},{"@TIME_PERIOD":"1994","@OBS_VALUE":"455.5"},{"@TIME_PERIOD":"1995","@OBS_VALUE":"310.3"},{"@TIME_PERIOD":"1996","@OBS_VALUE":"696"},{"@TIME_PERIOD":"1997","@OBS_VALUE":"611.1"},{"@TIME_PERIOD":"1998","@OBS_VALUE":"327.2"},{"@TIME_PERIOD":"1999","@OBS_VALUE":"388.8"},{"@TIME_PERIOD":"2000","@OBS_VALUE":"700.1"},{"@TIME_PERIOD":"2001","@OBS_VALUE":"518"},{"@TIME_PERIOD":"2002","@OBS_VALUE":"381.6"},{"@TIME_PERIOD":"2003","@OBS_VALUE":"646.2"},{"@TIME_PERIOD":"2004","@OBS_VALUE":"464.8"},{"@TIME_PERIOD":"2005","@OBS_VALUE":"970.5"},{"@TIME_PERIOD":"2006","@OBS_VALUE":"1163.8"},{"@TIME_PERIOD":"2007","@OBS_VALUE":"810.1"},{"@TIME_PERIOD":"2008","@OBS_VALUE":"830.3"},{"@TIME_PERIOD":"2009","@OBS_VALUE":"486.8"},{"@TIME_PERIOD":"2010","@OBS_VALUE":"1049.8"},{"@TIME_PERIOD":"2011","@OBS_VALUE":"1447.776562"},{"@TIME_PERIOD":"2012","@OBS_VALUE":"905.163487"},{"@TIME_PERIOD":"2013","@OBS_VALUE":"461.558248"},{"@TIME_PERIOD":"2014","@OBS_VALUE":"418.741988"},{"@TIME_PERIOD":"2015","@OBS_VALUE":"386.938923"}]},{"@FREQ":"A","@REF_AREA":"US","@INDICATOR":"TMG_CIF_USD","@COUNTERPART_AREA":"FR","@UNIT_MULT":"6","@TIME_FORMAT":"P1Y","Obs":[{"@TIME_PERIOD":"1950","@OBS_VALUE":"141"},{"@TIME_PERIOD":"1951","@OBS_VALUE":"283"},{"@TIME_PERIOD":"1952","@OBS_VALUE":"181"},{"@TIME_PERIOD":"1953","@OBS_VALUE":"201"},{"@TIME_PERIOD":"1954","@OBS_VALUE":"169"},{"@TIME_PERIOD":"1955","@OBS_VALUE":"218"},{"@TIME_PERIOD":"1956","@OBS_VALUE":"256"},{"@TIME_PERIOD":"1957","@OBS_VALUE":"279"},{"@TIME_PERIOD":"1958","@OBS_VALUE":"331"},{"@TIME_PERIOD":"1959","@OBS_VALUE":"501"},{"@TIME_PERIOD":"1960","@OBS_VALUE":"429"},{"@TIME_PERIOD":"1961","@OBS_VALUE":"470"},{"@TIME_PERIOD":"1962","@OBS_VALUE":"465"},{"@TIME_PERIOD":"1963","@OBS_VALUE":"466"},{"@TIME_PERIOD":"1964","@OBS_VALUE":"537"},{"@TIME_PERIOD":"1965","@OBS_VALUE":"666"},{"@TIME_PERIOD":"1966","@OBS_VALUE":"756"},{"@TIME_PERIOD":"1967","@OBS_VALUE":"738"},{"@TIME_PERIOD":"1968","@OBS_VALUE":"896"},{"@TIME_PERIOD":"1969","@OBS_VALUE":"896"},{"@TIME_PERIOD":"1970","@OBS_VALUE":"1007.8"},{"@TIME_PERIOD":"1971","@OBS_VALUE":"1163.2"},{"@TIME_PERIOD":"1972","@OBS_VALUE":"1458.7"},{"@TIME_PERIOD":"1973","@OBS_VALUE":"1843.7"},{"@TIME_PERIOD":"1974","@OBS_VALUE":"2471.5"},{"@TIME_PERIOD":"1975","@OBS_VALUE":"2288"},{"@TIME_PERIOD":"1976","@OBS_VALUE":"2681.1"},{"@TIME_PERIOD":"1977","@OBS_VALUE":"3260.2"},{"@TIME_PERIOD":"1978","@OBS_VALUE":"4368.2"},{"@TIME_PERIOD":"1979","@OBS_VALUE":"5133.2"},{"@TIME_PERIOD":"1980","@OBS_VALUE":"5548.6"},{"@TIME_PERIOD":"1981","@OBS_VALUE":"6139.1"},{"@TIME_PERIOD":"1982","@OBS_VALUE":"5815.1"},{"@TIME_PERIOD":"1983","@OBS_VALUE":"6307.7"},{"@TIME_PERIOD":"1984","@OBS_VALUE":"8516.4"},{"@TIME_PERIOD":"1985","@OBS_VALUE":"9959.5"},{"@TIME_PERIOD":"1986","@OBS_VALUE":"10586"},{"@TIME_PERIOD":"1987","@OBS_VALUE":"11176.5"},{"@TIME_PERIOD":"1988","@OBS_VALUE":"12839"},{"@TIME_PERIOD":"1989","@OBS_VALUE":"13512.382"},{"@TIME_PERIOD":"1990","@OBS_VALUE":"13593.7"},{"@TIME_PERIOD":"1991","@OBS_VALUE":"13810.5"},{"@TIME_PERIOD":"1992","@OBS_VALUE":"15261.9"},{"@TIME_PERIOD":"1993","@OBS_VALUE":"15694"},{"@TIME_PERIOD":"1994","@OBS_VALUE":"17416.5"},{"@TIME_PERIOD":"1995","@OBS_VALUE":"17769.5"},{"@TIME_PERIOD":"1996","@OBS_VALUE":"19196.4"},{"@TIME_PERIOD":"1997","@OBS_VALUE":"21346.2"},{"@TIME_PERIOD":"1998","@OBS_VALUE":"24745.6"},{"@TIME_PERIOD":"1999","@OBS_VALUE":"26656.1"},{"@TIME_PERIOD":"2000","@OBS_VALUE":"30084.4"},{"@TIME_PERIOD":"2001","@OBS_VALUE":"30984.3"},{"@TIME_PERIOD":"2002","@OBS_VALUE":"29030.8"},{"@TIME_PERIOD":"2003","@OBS_VALUE":"29902.4"},{"@TIME_PERIOD":"2004","@OBS_VALUE":"32619.3"},{"@TIME_PERIOD":"2005","@OBS_VALUE":"34774.3"},{"@TIME_PERIOD":"2006","@OBS_VALUE":"38088.6"},{"@TIME_PERIOD":"2007","@OBS_VALUE":"42498.1"},{"@TIME_PERIOD":"2008","@OBS_VALUE":"44904.9"},{"@TIME_PERIOD":"2009","@OBS_VALUE":"34670.8"},{"@TIME_PERIOD":"2010","@OBS_VALUE":"39256.7"},{"@TIME_PERIOD":"2011","@OBS_VALUE":"40104.889809"},{"@TIME_PERIOD":"2012","@OBS_VALUE":"41796.970269"},{"@TIME_PERIOD":"2013","@OBS_VALUE":"45832.089416"},{"@TIME_PERIOD":"2014","@OBS_VALUE":"47007.963134"},{"@TIME_PERIOD":"2015","@OBS_VALUE":"47761.444659"}]},{"@FREQ":"A","@REF_AREA":"US","@INDICATOR":"TMG_CIF_USD","@COUNTERPART_AREA":"EE","@UNIT_MULT":"6","@TIME_FORMAT":"P1Y","Obs":[{"@TIME_PERIOD":"1992","@OBS_VALUE":"0"},{"@TIME_PERIOD":"1993","@OBS_VALUE":"21.3"},{"@TIME_PERIOD":"1994","@OBS_VALUE":"32.5"},{"@TIME_PERIOD":"1995","@OBS_VALUE":"69.3"},{"@TIME_PERIOD":"1996","@OBS_VALUE":"65.2"},{"@TIME_PERIOD":"1997","@OBS_VALUE":"85.7"},{"@TIME_PERIOD":"1998","@OBS_VALUE":"138.4"},{"@TIME_PERIOD":"1999","@OBS_VALUE":"240.1"},{"@TIME_PERIOD":"2000","@OBS_VALUE":"593.3"},{"@TIME_PERIOD":"2001","@OBS_VALUE":"258.6"},{"@TIME_PERIOD":"2002","@OBS_VALUE":"173.9"},{"@TIME_PERIOD":"2003","@OBS_VALUE":"195.2"},{"@TIME_PERIOD":"2004","@OBS_VALUE":"433.1"},{"@TIME_PERIOD":"2005","@OBS_VALUE":"547.3"},{"@TIME_PERIOD":"2006","@OBS_VALUE":"560.1"},{"@TIME_PERIOD":"2007","@OBS_VALUE":"311.2"},{"@TIME_PERIOD":"2008","@OBS_VALUE":"407.7"},{"@TIME_PERIOD":"2009","@OBS_VALUE":"168.9"},{"@TIME_PERIOD":"2010","@OBS_VALUE":"614.2"},{"@TIME_PERIOD":"2011","@OBS_VALUE":"962.254679"},{"@TIME_PERIOD":"2012","@OBS_VALUE":"506.541064"},{"@TIME_PERIOD":"2013","@OBS_VALUE":"422.700808"},{"@TIME_PERIOD":"2014","@OBS_VALUE":"562.554601"},{"@TIME_PERIOD":"2015","@OBS_VALUE":"501.077216"}]}]}}} \ No newline at end of file diff --git a/dlstats/tests/resources/imf/imf-dot-datastructure-2.1.json b/dlstats/tests/resources/imf/imf-dot-datastructure-2.1.json new file mode 100644 index 0000000..a33d872 --- /dev/null +++ b/dlstats/tests/resources/imf/imf-dot-datastructure-2.1.json @@ -0,0 +1 @@ +{"Structure":{"@xmlns:xsd":"http://www.w3.org/2001/XMLSchema","@xmlns:xsi":"http://www.w3.org/2001/XMLSchema-instance","@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/message","@xsi:schemaLocation":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/message https://registry.sdmx.org/schemas/v2_0/SDMXMessage.xsd","Header":{"ID":"dbb5af7d-4699-48c4-b770-d0b6bfc16fd7","Test":"false","Prepared":"2016-08-12T11:09:59","Sender":{"@id":"IMF","Name":{"@xml:lang":"en","#text":"IMF"},"Contact":{"URI":"http://www.imf.org","Telephone":"+ 1 (202) 623-6220"}}},"CodeLists":{"CodeList":[{"@id":"CL_UNIT_MULT","@agencyID":"IMF","@version":"1.0","@isFinal":"true","@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/structure","Name":{"@xml:lang":"en","#text":"Scale"},"Code":[{"@value":"0","Description":{"@xml:lang":"en","#text":"Units"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Units"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Measure","AnnotationText":{"@xml:lang":"en","#text":"Scale"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Scale (number)","AnnotationText":{"@xml:lang":"en","#text":"1"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"DMX Scale","AnnotationText":{"@xml:lang":"en","#text":"Unit"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Exponent","AnnotationText":{"@xml:lang":"en","#text":"0"}}]}},{"@value":"2","Description":{"@xml:lang":"en","#text":"Hundreds"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Hundreds"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Measure","AnnotationText":{"@xml:lang":"en","#text":"Scale"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Scale (number)","AnnotationText":{"@xml:lang":"en","#text":"100"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"DMX Scale","AnnotationText":{"@xml:lang":"en","#text":"Hundred"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Exponent","AnnotationText":{"@xml:lang":"en","#text":"2"}}]}},{"@value":"3","Description":{"@xml:lang":"en","#text":"Thousands"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Thousands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Measure","AnnotationText":{"@xml:lang":"en","#text":"Scale"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Scale (number)","AnnotationText":{"@xml:lang":"en","#text":"1000"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"DMX Scale","AnnotationText":{"@xml:lang":"en","#text":"Thousand"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Exponent","AnnotationText":{"@xml:lang":"en","#text":"3"}}]}},{"@value":"6","Description":{"@xml:lang":"en","#text":"Millions"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Millions"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Measure","AnnotationText":{"@xml:lang":"en","#text":"Scale"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Scale (number)","AnnotationText":{"@xml:lang":"en","#text":"1000000"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"DMX Scale","AnnotationText":{"@xml:lang":"en","#text":"Million"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Exponent","AnnotationText":{"@xml:lang":"en","#text":"6"}}]}},{"@value":"9","Description":{"@xml:lang":"en","#text":"Billions"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Billions"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Measure","AnnotationText":{"@xml:lang":"en","#text":"Scale"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Scale (number)","AnnotationText":{"@xml:lang":"en","#text":"1000000000"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"DMX Scale","AnnotationText":{"@xml:lang":"en","#text":"Billion"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Exponent","AnnotationText":{"@xml:lang":"en","#text":"9"}}]}},{"@value":"12","Description":{"@xml:lang":"en","#text":"Trillions"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Trillions"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Measure","AnnotationText":{"@xml:lang":"en","#text":"Scale"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Scale (number)","AnnotationText":{"@xml:lang":"en","#text":"1000000000000"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"DMX Scale","AnnotationText":{"@xml:lang":"en","#text":"Trillion"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Exponent","AnnotationText":{"@xml:lang":"en","#text":"12"}}]}},{"@value":"N15","Description":{"@xml:lang":"en","#text":"Quadrillionths"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Quadrillionths"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Measure","AnnotationText":{"@xml:lang":"en","#text":"Scale"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Scale (number)","AnnotationText":{"@xml:lang":"en","#text":"1E-15"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"DMX Scale","AnnotationText":{"@xml:lang":"en","#text":"Quadrillionth"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Exponent","AnnotationText":{"@xml:lang":"en","#text":"-15"}}]}},{"@value":"N14","Description":{"@xml:lang":"en","#text":"Hundred Trillionths"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Hundred Trillionths"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Measure","AnnotationText":{"@xml:lang":"en","#text":"Scale"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Scale (number)","AnnotationText":{"@xml:lang":"en","#text":"1E-14"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"DMX Scale","AnnotationText":{"@xml:lang":"en","#text":"Hundred Trillionth"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Exponent","AnnotationText":{"@xml:lang":"en","#text":"-14"}}]}},{"@value":"N13","Description":{"@xml:lang":"en","#text":"Ten Trillionths"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Ten Trillionths"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Measure","AnnotationText":{"@xml:lang":"en","#text":"Scale"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Scale (number)","AnnotationText":{"@xml:lang":"en","#text":"1E-13"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"DMX Scale","AnnotationText":{"@xml:lang":"en","#text":"Ten Trillionth"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Exponent","AnnotationText":{"@xml:lang":"en","#text":"-13"}}]}},{"@value":"N12","Description":{"@xml:lang":"en","#text":"Trillionths"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Trillionths"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Measure","AnnotationText":{"@xml:lang":"en","#text":"Scale"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Scale (number)","AnnotationText":{"@xml:lang":"en","#text":"1E-12"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"DMX Scale","AnnotationText":{"@xml:lang":"en","#text":"Trillionth"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Exponent","AnnotationText":{"@xml:lang":"en","#text":"-12"}}]}},{"@value":"N11","Description":{"@xml:lang":"en","#text":"Hundred Billionths"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Hundred Billionths"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Measure","AnnotationText":{"@xml:lang":"en","#text":"Scale"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Scale (number)","AnnotationText":{"@xml:lang":"en","#text":"1E-11"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"DMX Scale","AnnotationText":{"@xml:lang":"en","#text":"Hundred Billionth"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Exponent","AnnotationText":{"@xml:lang":"en","#text":"-11"}}]}},{"@value":"N10","Description":{"@xml:lang":"en","#text":"Ten Billionths"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Ten Billionths"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Measure","AnnotationText":{"@xml:lang":"en","#text":"Scale"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Scale (number)","AnnotationText":{"@xml:lang":"en","#text":"1E-10"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"DMX Scale","AnnotationText":{"@xml:lang":"en","#text":"Ten Billionth"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Exponent","AnnotationText":{"@xml:lang":"en","#text":"-10"}}]}},{"@value":"N9","Description":{"@xml:lang":"en","#text":"Billionths"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Billionths"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Measure","AnnotationText":{"@xml:lang":"en","#text":"Scale"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Scale (number)","AnnotationText":{"@xml:lang":"en","#text":"1E-09"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"DMX Scale","AnnotationText":{"@xml:lang":"en","#text":"Billionth"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Exponent","AnnotationText":{"@xml:lang":"en","#text":"-9"}}]}},{"@value":"N8","Description":{"@xml:lang":"en","#text":"Hundred Millionths"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Hundred Millionths"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Measure","AnnotationText":{"@xml:lang":"en","#text":"Scale"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Scale (number)","AnnotationText":{"@xml:lang":"en","#text":"1E-08"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"DMX Scale","AnnotationText":{"@xml:lang":"en","#text":"Hundred Millionth"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Exponent","AnnotationText":{"@xml:lang":"en","#text":"-8"}}]}},{"@value":"N7","Description":{"@xml:lang":"en","#text":"Ten Millionths"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Ten Millionths"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Measure","AnnotationText":{"@xml:lang":"en","#text":"Scale"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Scale (number)","AnnotationText":{"@xml:lang":"en","#text":"1E-07"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"DMX Scale","AnnotationText":{"@xml:lang":"en","#text":"Ten Millionth"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Exponent","AnnotationText":{"@xml:lang":"en","#text":"-7"}}]}},{"@value":"N6","Description":{"@xml:lang":"en","#text":"Millionths"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Millionths"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Measure","AnnotationText":{"@xml:lang":"en","#text":"Scale"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Scale (number)","AnnotationText":{"@xml:lang":"en","#text":"1E-06"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"DMX Scale","AnnotationText":{"@xml:lang":"en","#text":"Millionth"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Exponent","AnnotationText":{"@xml:lang":"en","#text":"-6"}}]}},{"@value":"N5","Description":{"@xml:lang":"en","#text":"Hundred Thousandths"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Hundred Thousandths"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Measure","AnnotationText":{"@xml:lang":"en","#text":"Scale"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Scale (number)","AnnotationText":{"@xml:lang":"en","#text":"1E-05"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"DMX Scale","AnnotationText":{"@xml:lang":"en","#text":"Hundred Thousandth"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Exponent","AnnotationText":{"@xml:lang":"en","#text":"-5"}}]}},{"@value":"N4","Description":{"@xml:lang":"en","#text":"Ten Thousandths"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Ten Thousandths"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Measure","AnnotationText":{"@xml:lang":"en","#text":"Scale"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Scale (number)","AnnotationText":{"@xml:lang":"en","#text":"0.0001"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"DMX Scale","AnnotationText":{"@xml:lang":"en","#text":"Ten Thousandth"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Exponent","AnnotationText":{"@xml:lang":"en","#text":"-4"}}]}},{"@value":"N3","Description":{"@xml:lang":"en","#text":"Thousandths"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Thousandths"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Measure","AnnotationText":{"@xml:lang":"en","#text":"Scale"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Scale (number)","AnnotationText":{"@xml:lang":"en","#text":"0.001"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"DMX Scale","AnnotationText":{"@xml:lang":"en","#text":"Thousandth"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Exponent","AnnotationText":{"@xml:lang":"en","#text":"-3"}}]}},{"@value":"N2","Description":{"@xml:lang":"en","#text":"Hundredths"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Hundredths"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Measure","AnnotationText":{"@xml:lang":"en","#text":"Scale"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Scale (number)","AnnotationText":{"@xml:lang":"en","#text":"0.01"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"DMX Scale","AnnotationText":{"@xml:lang":"en","#text":"Hundredth"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Exponent","AnnotationText":{"@xml:lang":"en","#text":"-2"}}]}},{"@value":"N1","Description":{"@xml:lang":"en","#text":"Tenths"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Tenths"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Measure","AnnotationText":{"@xml:lang":"en","#text":"Scale"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Scale (number)","AnnotationText":{"@xml:lang":"en","#text":"0.1"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"DMX Scale","AnnotationText":{"@xml:lang":"en","#text":"Tenth"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Exponent","AnnotationText":{"@xml:lang":"en","#text":"-1"}}]}},{"@value":"1","Description":{"@xml:lang":"en","#text":"Tens"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Tens"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Measure","AnnotationText":{"@xml:lang":"en","#text":"Scale"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Scale (number)","AnnotationText":{"@xml:lang":"en","#text":"10"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"DMX Scale","AnnotationText":{"@xml:lang":"en","#text":"Ten"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Exponent","AnnotationText":{"@xml:lang":"en","#text":"1"}}]}},{"@value":"4","Description":{"@xml:lang":"en","#text":"Ten Thousands"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Ten Thousands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Measure","AnnotationText":{"@xml:lang":"en","#text":"Scale"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Scale (number)","AnnotationText":{"@xml:lang":"en","#text":"10000"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"DMX Scale","AnnotationText":{"@xml:lang":"en","#text":"Ten Thousand"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Exponent","AnnotationText":{"@xml:lang":"en","#text":"4"}}]}},{"@value":"5","Description":{"@xml:lang":"en","#text":"Hundred Thousands"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Hundred Thousands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Measure","AnnotationText":{"@xml:lang":"en","#text":"Scale"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Scale (number)","AnnotationText":{"@xml:lang":"en","#text":"100000"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"DMX Scale","AnnotationText":{"@xml:lang":"en","#text":"Hundred Thousand"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Exponent","AnnotationText":{"@xml:lang":"en","#text":"5"}}]}},{"@value":"7","Description":{"@xml:lang":"en","#text":"Ten Millions"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Ten Millions"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Measure","AnnotationText":{"@xml:lang":"en","#text":"Scale"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Scale (number)","AnnotationText":{"@xml:lang":"en","#text":"10000000"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"DMX Scale","AnnotationText":{"@xml:lang":"en","#text":"Ten Million"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Exponent","AnnotationText":{"@xml:lang":"en","#text":"7"}}]}},{"@value":"8","Description":{"@xml:lang":"en","#text":"Hundred Millions"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Hundred Millions"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Measure","AnnotationText":{"@xml:lang":"en","#text":"Scale"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Scale (number)","AnnotationText":{"@xml:lang":"en","#text":"100000000"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"DMX Scale","AnnotationText":{"@xml:lang":"en","#text":"Hundred Million"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Exponent","AnnotationText":{"@xml:lang":"en","#text":"8"}}]}},{"@value":"10","Description":{"@xml:lang":"en","#text":"Ten Billions"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Ten Billions"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Measure","AnnotationText":{"@xml:lang":"en","#text":"Scale"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Scale (number)","AnnotationText":{"@xml:lang":"en","#text":"10000000000"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"DMX Scale","AnnotationText":{"@xml:lang":"en","#text":"Ten Billion"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Exponent","AnnotationText":{"@xml:lang":"en","#text":"10"}}]}},{"@value":"11","Description":{"@xml:lang":"en","#text":"Hundred Billions"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Hundred Billions"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Measure","AnnotationText":{"@xml:lang":"en","#text":"Scale"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Scale (number)","AnnotationText":{"@xml:lang":"en","#text":"100000000000"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"DMX Scale","AnnotationText":{"@xml:lang":"en","#text":"Hundred Billion"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Exponent","AnnotationText":{"@xml:lang":"en","#text":"11"}}]}},{"@value":"13","Description":{"@xml:lang":"en","#text":"Ten Trillions"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Ten Trillions"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Measure","AnnotationText":{"@xml:lang":"en","#text":"Scale"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Scale (number)","AnnotationText":{"@xml:lang":"en","#text":"10000000000000"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"DMX Scale","AnnotationText":{"@xml:lang":"en","#text":"Ten Trillion"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Exponent","AnnotationText":{"@xml:lang":"en","#text":"13"}}]}},{"@value":"14","Description":{"@xml:lang":"en","#text":"Hundred Trillions"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Hundred Trillions"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Measure","AnnotationText":{"@xml:lang":"en","#text":"Scale"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Scale (number)","AnnotationText":{"@xml:lang":"en","#text":"100000000000000"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"DMX Scale","AnnotationText":{"@xml:lang":"en","#text":"Hundred Trillion"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Exponent","AnnotationText":{"@xml:lang":"en","#text":"14"}}]}},{"@value":"15","Description":{"@xml:lang":"en","#text":"Quadrillions"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Quadrillions"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Measure","AnnotationText":{"@xml:lang":"en","#text":"Scale"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"System Scale (number)","AnnotationText":{"@xml:lang":"en","#text":"1E+15"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"DMX Scale","AnnotationText":{"@xml:lang":"en","#text":"Quadrillion"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Exponent","AnnotationText":{"@xml:lang":"en","#text":"15"}}]}}]},{"@id":"CL_FREQ","@agencyID":"IMF","@version":"1.0","@isFinal":"true","@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/structure","Name":{"@xml:lang":"en","#text":"Frequency"},"Description":{"@xml:lang":"en","#text":"Frequency"},"Code":[{"@value":"A","Description":{"@xml:lang":"en","#text":"Annual"}},{"@value":"B","Description":{"@xml:lang":"en","#text":"Bi-annual"}},{"@value":"Q","Description":{"@xml:lang":"en","#text":"Quarterly"}},{"@value":"M","Description":{"@xml:lang":"en","#text":"Monthly"}},{"@value":"D","Description":{"@xml:lang":"en","#text":"Daily"}},{"@value":"W","Description":{"@xml:lang":"en","#text":"Weekly"}}]},{"@id":"CL_AREA_DOT","@agencyID":"IMF","@version":"1.0","@isFinal":"true","@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/structure","Name":{"@xml:lang":"en","#text":"Geographical Areas"},"Code":[{"@value":"AF","Description":{"@xml:lang":"en","#text":"Afghanistan"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Afghanistan, Islamic Republic of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"512"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"512"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Afghanistan, I.R. of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Afghanistan, Islamic Republic of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"AF"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"AF"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"AFG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=AFG target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Afghanistan"}}]}},{"@value":"AL","Description":{"@xml:lang":"en","#text":"Albania"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Albania"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"914"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"914"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Albania"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Albania"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"AL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"AL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"ALB"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=ALB target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Albania"}}]}},{"@value":"DZ","Description":{"@xml:lang":"en","#text":"Algeria"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Algeria"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"612"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"612"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Algeria"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Algeria"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"DZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"DZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"DZA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Algeria"}}]}},{"@value":"AS","Description":{"@xml:lang":"en","#text":"American Samoa"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"American Samoa"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"859"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"859"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"American Samoa "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"American Samoa"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"AS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"AS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"ASM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"American Samoa"}}]}},{"@value":"AO","Description":{"@xml:lang":"en","#text":"Angola"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Angola"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"614"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"614"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Angola "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Angola"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"AO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"AO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"AGO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=AGO target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Angola"}}]}},{"@value":"AG","Description":{"@xml:lang":"en","#text":"Antigua and Barbuda"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Antigua and Barbuda"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"311"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"311"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Antigua and Barbuda "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Antigua and Barbuda"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"AG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"AG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"ATG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=ATG target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Antigua and Barbuda"}}]}},{"@value":"AR","Description":{"@xml:lang":"en","#text":"Argentina"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Argentina"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"213"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"213"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Argentina"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Argentina"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"AR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"AR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"ARG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=ARG target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Argentina"}}]}},{"@value":"AM","Description":{"@xml:lang":"en","#text":"Armenia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Armenia, Republic of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"911"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"911"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Armenia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Republic of Armenia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"AM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"AM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"ARM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=ARM target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Armenia"}}]}},{"@value":"AW","Description":{"@xml:lang":"en","#text":"Aruba"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Aruba"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"314"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"314"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Aruba"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Kingdom of the Netherlands—Aruba"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"AW"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"AW"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"ABW"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Aruba"}}]}},{"@value":"AU","Description":{"@xml:lang":"en","#text":"Australia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Australia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"193"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"193"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Australia "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Australia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"AU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"AU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"AUS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=AUS target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Australia"}}]}},{"@value":"AT","Description":{"@xml:lang":"en","#text":"Austria"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Austria"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"122"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"122"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Austria"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Austria"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"AT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"AT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"AUT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=AUT target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Austria"}}]}},{"@value":"AZ","Description":{"@xml:lang":"en","#text":"Azerbaijan"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Azerbaijan, Republic of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"912"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"912"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Azerbaijan, Rep. of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Republic of Azerbaijan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"AZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"AZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"AZE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=AZE target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Azerbaijan"}}]}},{"@value":"BS","Description":{"@xml:lang":"en","#text":"Bahamas"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Bahamas, The"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"313"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"313"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Bahamas, The "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Bahamas, The"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"BS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"BS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"BHS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=BHS target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Bahamas"}}]}},{"@value":"BH","Description":{"@xml:lang":"en","#text":"Bahrain"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Bahrain, Kingdom of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"419"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"419"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Bahrain, Kingdom of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Bahrain, Kingdom of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"BH"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"BH"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"BHR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Bahrain"}}]}},{"@value":"BD","Description":{"@xml:lang":"en","#text":"Bangladesh"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Bangladesh"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"513"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"513"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Bangladesh "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Bangladesh"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"BD"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"BD"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"BGD"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=BGD target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Bangladesh"}}]}},{"@value":"BB","Description":{"@xml:lang":"en","#text":"Barbados"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Barbados"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"316"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"316"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Barbados "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Barbados"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"BB"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"BB"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"BRB"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=BRB target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Barbados"}}]}},{"@value":"BY","Description":{"@xml:lang":"en","#text":"Belarus"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Belarus"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"913"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"913"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Belarus"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Republic of Belarus"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"BY"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"BY"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"BLR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=BLR target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Belarus"}}]}},{"@value":"BE","Description":{"@xml:lang":"en","#text":"Belgium"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Belgium"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"124"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"124"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Belgium"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Belgium"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"BE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"BE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"BEL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=BEL target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Belgium"}}]}},{"@value":"R1","Description":{"@xml:lang":"en","#text":"Belgo-Luxembourg Economic Union"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Belgium-Luxembourg"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"126"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"126"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Belgium-Luxembourg"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Belgium-Luxembourg"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"R1"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Belgo-Luxembourg Economic Union"}}]}},{"@value":"BZ","Description":{"@xml:lang":"en","#text":"Belize"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Belize"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"339"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"339"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Belize "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Belize"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"BZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"BZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"BLZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=BLZ target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Belize"}}]}},{"@value":"BJ","Description":{"@xml:lang":"en","#text":"Benin"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Benin"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"638"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"638"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Benin "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Benin"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"BJ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"BJ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"BEN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=BEN target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Benin"}}]}},{"@value":"BM","Description":{"@xml:lang":"en","#text":"Bermuda"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Bermuda"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"319"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"319"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Bermuda "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Bermuda"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"BM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"BM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"BMU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Bermuda"}}]}},{"@value":"BO","Description":{"@xml:lang":"en","#text":"Bolivia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Bolivia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"218"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"218"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Bolivia "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Bolivia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"BO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"BO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"BOL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=BOL target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Bolivia"}}]}},{"@value":"BA","Description":{"@xml:lang":"en","#text":"Bosnia and Herzegovina"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Bosnia and Herzegovina"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"963"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"963"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Bosnia \u0026 Herzegovina"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Bosnia and Herzegovina"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"BA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"BA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"BIH"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Bosnia and Herzegovina"}}]}},{"@value":"BR","Description":{"@xml:lang":"en","#text":"Brazil"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Brazil"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"223"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"223"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Brazil"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Brazil"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"BR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"BR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"BRA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=BRA target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Brazil"}}]}},{"@value":"BN","Description":{"@xml:lang":"en","#text":"Brunei Darussalam"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Brunei Darussalam"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"516"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"516"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Brunei Darussalam "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Brunei Darussalam"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"BN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"BN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"BRN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=BRN target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Brunei Darussalam"}}]}},{"@value":"BG","Description":{"@xml:lang":"en","#text":"Bulgaria"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Bulgaria"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"918"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"918"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Bulgaria "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Bulgaria"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"BG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"BG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"BGR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=BGR target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Bulgaria"}}]}},{"@value":"BF","Description":{"@xml:lang":"en","#text":"Burkina Faso"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Burkina Faso"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"748"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"748"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Burkina Faso "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Burkina Faso"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"BF"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"BF"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"BFA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=BFA target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Burkina Faso"}}]}},{"@value":"BI","Description":{"@xml:lang":"en","#text":"Burundi"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Burundi"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"618"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"618"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Burundi "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Burundi"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"BI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"BI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"BDI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Burundi"}}]}},{"@value":"CV","Description":{"@xml:lang":"en","#text":"Cape Verde"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Cabo Verde"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"624"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"624"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Cabo Verde"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Cabo Verde"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"CV"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"CV"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"CPV"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=CPV target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Cape Verde"}}]}},{"@value":"KH","Description":{"@xml:lang":"en","#text":"Cambodia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Cambodia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"522"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"522"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Cambodia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Cambodia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"KH"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"KH"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"KHM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=KHM target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Cambodia"}}]}},{"@value":"CM","Description":{"@xml:lang":"en","#text":"Cameroon"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Cameroon"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"622"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"622"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Cameroon"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Cameroon"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"CM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"CM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"CMR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=CMR target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Cameroon"}}]}},{"@value":"CA","Description":{"@xml:lang":"en","#text":"Canada"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Canada"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"156"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"156"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Canada"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Canada"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"CA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"CA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"CAN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=CAN target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Canada"}}]}},{"@value":"CF","Description":{"@xml:lang":"en","#text":"Central African Republic"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Central African Republic"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"626"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"626"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Central African Rep."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Central African Republic"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"CF"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"CF"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"CAF"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=CAF target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Central African Republic"}}]}},{"@value":"TD","Description":{"@xml:lang":"en","#text":"Chad"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Chad"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"628"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"628"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Chad "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Chad"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"TD"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"TD"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"TCD"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=TCD target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Chad"}}]}},{"@value":"CL","Description":{"@xml:lang":"en","#text":"Chile"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Chile"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"228"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"228"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Chile"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Chile"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"CL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"CL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"CHL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=CHL target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Chile"}}]}},{"@value":"HK","Description":{"@xml:lang":"en","#text":"Hong Kong, China"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"China, P.R.: Hong Kong"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"532"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"532"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"China,P.R.:Hong Kong"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"China, P.R.: Hong Kong"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"HK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"HK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"HKG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=HKG target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Hong Kong, China"}}]}},{"@value":"MO","Description":{"@xml:lang":"en","#text":"Macao"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"China, P.R.: Macao"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"546"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"546"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"China,P.R.:Macao"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"China, P.R.: Macao"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"MO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"MO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"MAC"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Macao"}}]}},{"@value":"CN","Description":{"@xml:lang":"en","#text":"China"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"China, P.R.: Mainland"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"924"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"924"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"China,P.R.: Mainland"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"People’s Republic of China"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"CN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"CN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"CHN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=CHN target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"China"}}]}},{"@value":"CO","Description":{"@xml:lang":"en","#text":"Colombia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Colombia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"233"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"233"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Colombia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Colombia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"CO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"CO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"COL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=COL target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Colombia"}}]}},{"@value":"KM","Description":{"@xml:lang":"en","#text":"Comoros"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Comoros"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"632"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"632"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Comoros "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Federal Islamic Republic of the Comoros"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"KM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"KM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"COM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Comoros"}}]}},{"@value":"CD","Description":{"@xml:lang":"en","#text":"Congo, the Democratic Republic of the"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Congo, Democratic Republic of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"636"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"636"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Congo, Dem. Rep. of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Democratic Republic of the Congo"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"CD"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"CD"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"COD"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=COD target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Congo, the Democratic Republic of the"}}]}},{"@value":"CG","Description":{"@xml:lang":"en","#text":"Congo"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Congo, Republic of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"634"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"634"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Congo, Republic of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Republic of Congo"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"CG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"CG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"COG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=COG target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Congo"}}]}},{"@value":"CR","Description":{"@xml:lang":"en","#text":"Costa Rica"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Costa Rica"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"238"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"238"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Costa Rica "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Costa Rica"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"CR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"CR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"CRI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=CRI target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Costa Rica"}}]}},{"@value":"CI","Description":{"@xml:lang":"en","#text":"Cote d`Ivoire"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Cote d\u0027Ivoire"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"662"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"662"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Côte d\u0027Ivoire "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Cote d\u0027Ivoire"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"CI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"CI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"CIV"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=CIV target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Cote d`Ivoire"}}]}},{"@value":"HR","Description":{"@xml:lang":"en","#text":"Croatia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Croatia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"960"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"960"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Croatia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Republic of Croatia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"HR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"HR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"HRV"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=HRV target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Croatia"}}]}},{"@value":"CU","Description":{"@xml:lang":"en","#text":"Cuba"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Cuba"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"928"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"928"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Cuba "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Cuba"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"CU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"CU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"CUB"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Cuba"}}]}},{"@value":"CY","Description":{"@xml:lang":"en","#text":"Cyprus"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Cyprus"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"423"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"423"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Cyprus"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Cyprus"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"CY"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"CY"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"CYP"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Cyprus"}}]}},{"@value":"CZ","Description":{"@xml:lang":"en","#text":"Czech Republic"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Czech Republic"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"935"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"935"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Czech Republic"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Czech Republic"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"CZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"CZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"CZE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=CZE target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Czech Republic"}}]}},{"@value":"CSH","Description":{"@xml:lang":"en","#text":"Former Czechoslovakia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Czechoslovakia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"934"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"934"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Czechoslovakia "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Czechoslovakia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"CSH"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"CSK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Former Czechoslovakia"}}]}},{"@value":"CSH9","Description":{"@xml:lang":"en","#text":"Former Czechoslovakia not allocated"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Czechoslovakia not specified"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"937"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"937"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Czechoslovakia n.s."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Czechoslovakia not specified"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"CSH9"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Former Czechoslovakia not allocated"}}]}},{"@value":"DK","Description":{"@xml:lang":"en","#text":"Denmark"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Denmark"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"128"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"128"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Denmark "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Denmark"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"DK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"DK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"DNK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=DNK target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Denmark"}}]}},{"@value":"DJ","Description":{"@xml:lang":"en","#text":"Djibouti"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Djibouti"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"611"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"611"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Djibouti "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Djibouti"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"DJ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"DJ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"DJI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Djibouti"}}]}},{"@value":"DM","Description":{"@xml:lang":"en","#text":"Dominica"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Dominica"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"321"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"321"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Dominica "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Dominica"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"DM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"DM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"DMA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=DMA target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Dominica"}}]}},{"@value":"DO","Description":{"@xml:lang":"en","#text":"Dominican Republic"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Dominican Republic"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"243"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"243"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Dominican Republic"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Dominican Republic"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"DO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"DO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"DOM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=DOM target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Dominican Republic"}}]}},{"@value":"DE2","Description":{"@xml:lang":"en","#text":"East Germany"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Eastern Germany"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"938"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"938"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Eastern Germany "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Eastern Germany"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"DE2"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"East Germany"}}]}},{"@value":"EC","Description":{"@xml:lang":"en","#text":"Ecuador"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Ecuador"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"248"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"248"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Ecuador"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Ecuador"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"EC"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"EC"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"ECU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=ECU target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Ecuador"}}]}},{"@value":"EG","Description":{"@xml:lang":"en","#text":"Egypt"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Egypt"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"469"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"469"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Egypt "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Arab Republic of Egypt"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"EG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"EG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"EGY"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=EGY target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Egypt"}}]}},{"@value":"SV","Description":{"@xml:lang":"en","#text":"El Salvador"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"El Salvador"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"253"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"253"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"El Salvador "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"El Salvador"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"SV"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"SV"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"SLV"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=SLV target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"El Salvador"}}]}},{"@value":"1C_903","Description":{"@xml:lang":"en","#text":"Emerging and Developing Europe"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"EMERGING \u0026 DEVELOPING EUROPE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"903"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"903"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Emer. \u0026 Dev. Europe"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"EMERGING \u0026 DEVELOPING EUROPE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_903"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Emerging and Developing Europe"}}]}},{"@value":"GQ","Description":{"@xml:lang":"en","#text":"Equatorial Guinea"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Equatorial Guinea"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"642"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"642"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Equatorial Guinea "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Equatorial Guinea"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"GQ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"GQ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"GNQ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Equatorial Guinea"}}]}},{"@value":"EE","Description":{"@xml:lang":"en","#text":"Estonia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Estonia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"939"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"939"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Estonia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Republic of Estonia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"EE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"EE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"EST"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=EST target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Estonia"}}]}},{"@value":"ET","Description":{"@xml:lang":"en","#text":"Ethiopia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Ethiopia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"644"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"644"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Ethiopia "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Ethiopia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"ET"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"ET"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"ETH"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=ETH target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Ethiopia"}}]}},{"@value":"FK","Description":{"@xml:lang":"en","#text":"Falkland Islands (Malvinas)"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Falkland Islands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"323"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"323"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Falkland Islands "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Falkland Islands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"FK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"FK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"FLK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Falkland Islands (Malvinas)"}}]}},{"@value":"FO","Description":{"@xml:lang":"en","#text":"Faroe Islands"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Faroe Islands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"816"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"816"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Faroe Islands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Faroe Islands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"FO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"FO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"FRO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Faroe Islands"}}]}},{"@value":"FJ","Description":{"@xml:lang":"en","#text":"Fiji"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Fiji"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"819"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"819"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Fiji "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Fiji"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"FJ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"FJ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"FJI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=FJI target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Fiji"}}]}},{"@value":"FI","Description":{"@xml:lang":"en","#text":"Finland"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Finland"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"172"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"172"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Finland"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Finland"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"FI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"FI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"FIN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=FIN target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Finland"}}]}},{"@value":"FR","Description":{"@xml:lang":"en","#text":"France"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"France"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"132"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"132"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"France"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"France"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"FR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"FR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"FRA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=FRA target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"France"}}]}},{"@value":"PF","Description":{"@xml:lang":"en","#text":"French Polynesia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"French Territories: French Polynesia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"887"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"887"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"French Polynesia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"French Polynesia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"PF"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"PF"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"PYF"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"French Polynesia"}}]}},{"@value":"NC","Description":{"@xml:lang":"en","#text":"New Caledonia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"French Territories: New Caledonia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"839"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"839"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"New Caledonia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"New Caledonia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"NC"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"NC"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"NCL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"New Caledonia"}}]}},{"@value":"GA","Description":{"@xml:lang":"en","#text":"Gabon"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Gabon"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"646"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"646"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Gabon "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Gabon"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"GA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"GA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"GAB"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=GAB target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Gabon"}}]}},{"@value":"GM","Description":{"@xml:lang":"en","#text":"Gambia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Gambia, The"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"648"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"648"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Gambia, The "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Gambia, The"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"GM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"GM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"GMB"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=GMB target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Gambia"}}]}},{"@value":"GE","Description":{"@xml:lang":"en","#text":"Georgia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Georgia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"915"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"915"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Georgia "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Georgia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"GE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"GE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"GEO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=GEO target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Georgia"}}]}},{"@value":"DE","Description":{"@xml:lang":"en","#text":"Germany"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Germany"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"134"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"134"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Germany"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Germany"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"DE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"DE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"DEU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=DEU target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Germany"}}]}},{"@value":"GH","Description":{"@xml:lang":"en","#text":"Ghana"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Ghana"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"652"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"652"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Ghana "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Ghana"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"GH"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"GH"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"GHA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=GHA target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Ghana"}}]}},{"@value":"GI","Description":{"@xml:lang":"en","#text":"Gibraltar"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Gibraltar"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"823"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"823"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Gibraltar "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Gibraltar"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"GI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"GI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"GIB"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Gibraltar"}}]}},{"@value":"GR","Description":{"@xml:lang":"en","#text":"Greece"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Greece"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"174"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"174"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Greece"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Greece"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"GR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"GR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"GRC"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=GRC target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Greece"}}]}},{"@value":"GL","Description":{"@xml:lang":"en","#text":"Greenland"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Greenland"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"326"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"326"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Greenland"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Greenland"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"GL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"GL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"GRL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Greenland"}}]}},{"@value":"GD","Description":{"@xml:lang":"en","#text":"Grenada"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Grenada"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"328"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"328"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Grenada "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Grenada"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"GD"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"GD"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"GRD"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=GRD target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Grenada"}}]}},{"@value":"GP","Description":{"@xml:lang":"en","#text":"Guadeloupe"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Guadeloupe"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"329"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"329"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Guadeloupe"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Guadeloupe"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"GP"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"GP"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"GLP"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Guadeloupe"}}]}},{"@value":"GU","Description":{"@xml:lang":"en","#text":"Guam"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Guam"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"829"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"829"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Guam"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Guam"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"GU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"GU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"GUM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Guam"}}]}},{"@value":"GT","Description":{"@xml:lang":"en","#text":"Guatemala"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Guatemala"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"258"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"258"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Guatemala "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Guatemala"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"GT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"GT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"GTM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=GTM target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Guatemala"}}]}},{"@value":"GF","Description":{"@xml:lang":"en","#text":"French Guiana"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Guiana, French"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"333"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"333"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Guiana, French"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Guiana, French"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"GF"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"GF"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"GUF"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"French Guiana"}}]}},{"@value":"GN","Description":{"@xml:lang":"en","#text":"Guinea"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Guinea"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"656"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"656"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Guinea "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Guinea"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"GN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"GN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"GIN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=GIN target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Guinea"}}]}},{"@value":"GW","Description":{"@xml:lang":"en","#text":"Guinea-Bissau"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Guinea-Bissau"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"654"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"654"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Guinea-Bissau "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Guinea-Bissau"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"GW"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"GW"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"GNB"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=GNB target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Guinea-Bissau"}}]}},{"@value":"GY","Description":{"@xml:lang":"en","#text":"Guyana"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Guyana"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"336"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"336"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Guyana "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Guyana"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"GY"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"GY"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"GUY"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Guyana"}}]}},{"@value":"HT","Description":{"@xml:lang":"en","#text":"Haiti"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Haiti"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"263"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"263"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Haiti "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Haiti"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"HT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"HT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"HTI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Haiti"}}]}},{"@value":"HN","Description":{"@xml:lang":"en","#text":"Honduras"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Honduras"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"268"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"268"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Honduras "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Honduras"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"HN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"HN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"HND"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=HND target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Honduras"}}]}},{"@value":"HU","Description":{"@xml:lang":"en","#text":"Hungary"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Hungary"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"944"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"944"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Hungary "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Hungary"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"HU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"HU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"HUN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=HUN target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Hungary"}}]}},{"@value":"IS","Description":{"@xml:lang":"en","#text":"Iceland"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Iceland"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"176"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"176"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Iceland "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Iceland"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"IS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"IS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"ISL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=ISL target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Iceland"}}]}},{"@value":"IN","Description":{"@xml:lang":"en","#text":"India"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"India"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"534"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"534"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"India"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"India"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"IN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"IN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"IND"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=IND target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"India"}}]}},{"@value":"ID","Description":{"@xml:lang":"en","#text":"Indonesia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Indonesia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"536"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"536"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Indonesia "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Indonesia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"ID"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"ID"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"IDN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=IDN target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Indonesia"}}]}},{"@value":"IR","Description":{"@xml:lang":"en","#text":"Iran, Islamic Republic of"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Iran, Islamic Republic of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"429"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"429"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Iran, I.R. of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Iran, Islamic Republic of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"IR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"IR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"IRN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Iran, Islamic Republic of"}}]}},{"@value":"IQ","Description":{"@xml:lang":"en","#text":"Iraq"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Iraq"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"433"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"433"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Iraq "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Iraq"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"IQ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"IQ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"IRQ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Iraq"}}]}},{"@value":"IE","Description":{"@xml:lang":"en","#text":"Ireland"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Ireland"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"178"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"178"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Ireland"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Ireland"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"IE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"IE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"IRL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=IRL target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Ireland"}}]}},{"@value":"IL","Description":{"@xml:lang":"en","#text":"Israel"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Israel"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"436"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"436"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Israel "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Israel"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"IL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"IL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"ISR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=ISR target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Israel"}}]}},{"@value":"IT","Description":{"@xml:lang":"en","#text":"Italy"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Italy"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"136"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"136"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Italy"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Italy"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"IT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"IT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"ITA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=ITA target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Italy"}}]}},{"@value":"JM","Description":{"@xml:lang":"en","#text":"Jamaica"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Jamaica"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"343"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"343"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Jamaica "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Jamaica"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"JM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"JM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"JAM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=JAM target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Jamaica"}}]}},{"@value":"JP","Description":{"@xml:lang":"en","#text":"Japan"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Japan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"158"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"158"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Japan "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Japan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"JP"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"JP"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"JPN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=JPN target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Japan"}}]}},{"@value":"JO","Description":{"@xml:lang":"en","#text":"Jordan"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Jordan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"439"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"439"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Jordan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Jordan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"JO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"JO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"JOR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=JOR target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Jordan"}}]}},{"@value":"KZ","Description":{"@xml:lang":"en","#text":"Kazakhstan"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Kazakhstan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"916"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"916"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Kazakhstan "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Republic of Kazakhstan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"KZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"KZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"KAZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=KAZ target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Kazakhstan"}}]}},{"@value":"KE","Description":{"@xml:lang":"en","#text":"Kenya"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Kenya"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"664"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"664"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Kenya "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Kenya"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"KE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"KE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"KEN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=KEN target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Kenya"}}]}},{"@value":"KI","Description":{"@xml:lang":"en","#text":"Kiribati"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Kiribati"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"826"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"826"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Kiribati "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Kiribati"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"KI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"KI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"KIR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=KIR target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Kiribati"}}]}},{"@value":"KP","Description":{"@xml:lang":"en","#text":"Korea, Democratic People`s Republic of"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Korea, Democratic People\u0027s Rep. of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"954"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"954"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"North Korea"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Korea, Democratic People\u0027s Republic of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"KP"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"KP"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"PRK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Korea, Democratic People`s Republic of"}}]}},{"@value":"KR","Description":{"@xml:lang":"en","#text":"Korea, Republic of"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Korea, Republic of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"542"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"542"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Korea, Republic of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Korea, Republic of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"KR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"KR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"KOR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=KOR target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Korea, Republic of"}}]}},{"@value":"XK","Description":{"@xml:lang":"en","#text":"Kosovo"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Kosovo, Republic of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"967"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"967"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Kosovo"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Kosovo"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"XK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"KO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"UVK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Kosovo"}}]}},{"@value":"KW","Description":{"@xml:lang":"en","#text":"Kuwait"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Kuwait"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"443"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"443"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Kuwait"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Kuwait"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"KW"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"KW"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"KWT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=KWT target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Kuwait"}}]}},{"@value":"KG","Description":{"@xml:lang":"en","#text":"Kyrgyzstan"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Kyrgyz Republic"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"917"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"917"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Kyrgyz Republic "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Kyrgyz Republic"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"KG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"KG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"KGZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=KGZ target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Kyrgyzstan"}}]}},{"@value":"LA","Description":{"@xml:lang":"en","#text":"Lao People`s Democratic Republic"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Lao People\u0027s Democratic Republic"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"544"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"544"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Lao People\u0027s Dem.Rep"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Lao People\u0027s Democratic Republic"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"LA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"LA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"LAO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Lao People`s Democratic Republic"}}]}},{"@value":"LV","Description":{"@xml:lang":"en","#text":"Latvia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Latvia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"941"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"941"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Latvia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Republic of Latvia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"LV"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"LV"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"LVA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=LVA target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Latvia"}}]}},{"@value":"LB","Description":{"@xml:lang":"en","#text":"Lebanon"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Lebanon"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"446"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"446"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Lebanon "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Lebanon"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"LB"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"LB"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"LBN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=LBN target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Lebanon"}}]}},{"@value":"LR","Description":{"@xml:lang":"en","#text":"Liberia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Liberia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"668"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"668"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Liberia "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Liberia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"LR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"LR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"LBR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=LBR target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Liberia"}}]}},{"@value":"LY","Description":{"@xml:lang":"en","#text":"Libya"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Libya"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"672"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"672"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Libya "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Socialist People’s Libyan Arab Jamahiriya"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"LY"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"LY"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"LBY"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Libya"}}]}},{"@value":"LT","Description":{"@xml:lang":"en","#text":"Lithuania"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Lithuania"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"946"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"946"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Lithuania "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Republic of Lithuania"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"LT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"LT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"LTU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=LTU target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Lithuania"}}]}},{"@value":"LU","Description":{"@xml:lang":"en","#text":"Luxembourg"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Luxembourg"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"137"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"137"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Luxembourg"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Luxembourg"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"LU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"LU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"LUX"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=LUX target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Luxembourg"}}]}},{"@value":"MK","Description":{"@xml:lang":"en","#text":"Macedonia, The Former Yugoslav Republic of"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Macedonia, FYR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"962"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"962"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Macedonia, FYR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Macedonia, former Yugoslav Republic of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"MK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"MK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"MKD"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=MKD target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Macedonia, The Former Yugoslav Republic of"}}]}},{"@value":"MG","Description":{"@xml:lang":"en","#text":"Madagascar"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Madagascar"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"674"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"674"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Madagascar"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Republic of Madagascar  "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"MG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"MG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"MDG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=MDG target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Madagascar"}}]}},{"@value":"MW","Description":{"@xml:lang":"en","#text":"Malawi"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Malawi"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"676"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"676"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Malawi "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Malawi"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"MW"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"MW"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"MWI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=MWI target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Malawi"}}]}},{"@value":"MY","Description":{"@xml:lang":"en","#text":"Malaysia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Malaysia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"548"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"548"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Malaysia "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Malaysia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"MY"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"MY"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"MYS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=MYS target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Malaysia"}}]}},{"@value":"1C_552","Description":{"@xml:lang":"en","#text":"Malaysia-Singapore"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Malaysia-Singapore"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"552"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"552"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Malaysia-Singapore "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Malaysia-Singapore"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_552"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Malaysia-Singapore"}}]}},{"@value":"1C_554","Description":{"@xml:lang":"en","#text":"Malaysia, West"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Malaysia, West"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"554"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"554"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Malaysia, West"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Malaysia, West"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_554"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Malaysia, West"}}]}},{"@value":"MV","Description":{"@xml:lang":"en","#text":"Maldives"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Maldives"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"556"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"556"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Maldives "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Maldives"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"MV"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"MV"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"MDV"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Maldives"}}]}},{"@value":"ML","Description":{"@xml:lang":"en","#text":"Mali"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Mali"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"678"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"678"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Mali "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Mali"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"ML"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"ML"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"MLI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=MLI target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Mali"}}]}},{"@value":"MT","Description":{"@xml:lang":"en","#text":"Malta"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Malta"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"181"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"181"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Malta"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Malta"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"MT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"MT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"MLT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=MLT target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Malta"}}]}},{"@value":"MQ","Description":{"@xml:lang":"en","#text":"Martinique"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Martinique"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"349"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"349"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Martinique"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Martinique"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"MQ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"MQ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"MTQ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Martinique"}}]}},{"@value":"MR","Description":{"@xml:lang":"en","#text":"Mauritania"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Mauritania"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"682"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"682"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Mauritania "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Islamic Republic of Mauritania"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"MR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"MR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"MRT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=MRT target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Mauritania"}}]}},{"@value":"MU","Description":{"@xml:lang":"en","#text":"Mauritius"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Mauritius"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"684"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"684"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Mauritius"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Republic of Mauritius"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"MU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"MU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"MUS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=MUS target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Mauritius"}}]}},{"@value":"MX","Description":{"@xml:lang":"en","#text":"Mexico"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Mexico"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"273"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"273"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Mexico"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Mexico"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"MX"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"MX"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"MEX"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=MEX target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Mexico"}}]}},{"@value":"MD","Description":{"@xml:lang":"en","#text":"Moldova, Republic of"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Moldova"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"921"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"921"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Moldova "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Republic of Moldova"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"MD"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"MD"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"MDA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=MDA target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Moldova, Republic of"}}]}},{"@value":"MN","Description":{"@xml:lang":"en","#text":"Mongolia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Mongolia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"948"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"948"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Mongolia "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Mongolia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"MN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"MN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"MNG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=MNG target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Mongolia"}}]}},{"@value":"ME","Description":{"@xml:lang":"en","#text":"Montenegro"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Montenegro"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"943"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"943"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Montenegro"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Montenegro"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"ME"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"ME"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"MNE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Montenegro"}}]}},{"@value":"MA","Description":{"@xml:lang":"en","#text":"Morocco"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Morocco"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"686"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"686"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Morocco "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Morocco"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"MA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"MA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"MAR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=MAR target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Morocco"}}]}},{"@value":"MZ","Description":{"@xml:lang":"en","#text":"Mozambique"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Mozambique"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"688"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"688"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Mozambique "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Republic of Mozambique"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"MZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"MZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"MOZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=MOZ target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Mozambique"}}]}},{"@value":"MM","Description":{"@xml:lang":"en","#text":"Myanmar"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Myanmar"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"518"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"518"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Myanmar "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Myanmar"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"MM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"MM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"MMR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Myanmar"}}]}},{"@value":"NR","Description":{"@xml:lang":"en","#text":"Nauru"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Nauru"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"836"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"836"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Nauru "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Nauru"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"NR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"NR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"NRU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Nauru"}}]}},{"@value":"NP","Description":{"@xml:lang":"en","#text":"Nepal"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Nepal"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"558"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"558"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Nepal"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Nepal"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"NP"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"NP"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"NPL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=NPL target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Nepal"}}]}},{"@value":"NL","Description":{"@xml:lang":"en","#text":"Netherlands"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Netherlands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"138"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"138"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Netherlands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Kingdom of the Netherlands—Netherlands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"NL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"NL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"NLD"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=NLD target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Netherlands"}}]}},{"@value":"AN","Description":{"@xml:lang":"en","#text":"Netherlands Antilles"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Netherlands Antilles"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"353"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"353"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Netherlands Antilles"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Kingdom of the Netherlands—Netherlands Antilles"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"AN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"AN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"ANT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Netherlands Antilles"}}]}},{"@value":"NZ","Description":{"@xml:lang":"en","#text":"New Zealand"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"New Zealand"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"196"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"196"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"New Zealand "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"New Zealand"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"NZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"NZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"NZL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"New Zealand"}}]}},{"@value":"NI","Description":{"@xml:lang":"en","#text":"Nicaragua"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Nicaragua"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"278"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"278"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Nicaragua "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Nicaragua"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"NI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"NI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"NIC"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=NIC target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Nicaragua"}}]}},{"@value":"NE","Description":{"@xml:lang":"en","#text":"Niger"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Niger"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"692"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"692"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Niger "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Niger"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"NE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"NE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"NER"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=NER target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Niger"}}]}},{"@value":"NG","Description":{"@xml:lang":"en","#text":"Nigeria"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Nigeria"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"694"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"694"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Nigeria "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Nigeria"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"NG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"NG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"NGA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=NGA target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Nigeria"}}]}},{"@value":"NO","Description":{"@xml:lang":"en","#text":"Norway"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Norway"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"142"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"142"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Norway"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Norway"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"NO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"NO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"NOR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=NOR target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Norway"}}]}},{"@value":"OM","Description":{"@xml:lang":"en","#text":"Oman"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Oman"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"449"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"449"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Oman "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Oman"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"OM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"OM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"OMN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=OMN target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Oman"}}]}},{"@value":"PK","Description":{"@xml:lang":"en","#text":"Pakistan"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Pakistan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"564"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"564"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Pakistan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Pakistan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"PK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"PK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"PAK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=PAK target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Pakistan"}}]}},{"@value":"PA","Description":{"@xml:lang":"en","#text":"Panama"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Panama"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"283"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"283"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Panama "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Panama"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"PA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"PA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"PAN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=PAN target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Panama"}}]}},{"@value":"PG","Description":{"@xml:lang":"en","#text":"Papua New Guinea"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Papua New Guinea"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"853"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"853"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Papua New Guinea "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Papua New Guinea"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"PG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"PG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"PNG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Papua New Guinea"}}]}},{"@value":"PY","Description":{"@xml:lang":"en","#text":"Paraguay"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Paraguay"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"288"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"288"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Paraguay "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Paraguay"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"PY"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"PY"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"PRY"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=PRY target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Paraguay"}}]}},{"@value":"PE","Description":{"@xml:lang":"en","#text":"Peru"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Peru"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"293"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"293"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Peru"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Peru"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"PE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"PE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"PER"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=PER target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Peru"}}]}},{"@value":"PH","Description":{"@xml:lang":"en","#text":"Philippines"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Philippines"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"566"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"566"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Philippines"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Philippines"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"PH"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"PH"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"PHL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=PHL target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Philippines"}}]}},{"@value":"PL","Description":{"@xml:lang":"en","#text":"Poland"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Poland"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"964"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"964"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Poland "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Republic of Poland"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"PL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"PL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"POL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=POL target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Poland"}}]}},{"@value":"PT","Description":{"@xml:lang":"en","#text":"Portugal"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Portugal"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"182"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"182"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Portugal"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Portugal"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"PT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"PT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"PRT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=PRT target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Portugal"}}]}},{"@value":"QA","Description":{"@xml:lang":"en","#text":"Qatar"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Qatar"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"453"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"453"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Qatar"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Qatar"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"QA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"QA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"QAT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=QAT target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Qatar"}}]}},{"@value":"RE","Description":{"@xml:lang":"en","#text":"Reunion"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Reunion"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"696"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"696"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Réunion"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Reunion"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"RE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"RE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"REU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Reunion"}}]}},{"@value":"RO","Description":{"@xml:lang":"en","#text":"Romania"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Romania"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"968"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"968"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Romania"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Romania"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"RO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"RO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"ROU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=ROU target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Romania"}}]}},{"@value":"RU","Description":{"@xml:lang":"en","#text":"Russian Federation"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Russian Federation"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"922"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"922"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Russian Federation"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Russian Federation"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"RU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"RU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"RUS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=RUS target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Russian Federation"}}]}},{"@value":"RW","Description":{"@xml:lang":"en","#text":"Rwanda"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Rwanda"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"714"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"714"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Rwanda "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Rwanda"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"RW"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"RW"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"RWA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=RWA target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Rwanda"}}]}},{"@value":"SH","Description":{"@xml:lang":"en","#text":"Saint Helena"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Saint Helena"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"856"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"856"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"St. Helena "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Saint Helena"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"SH"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"SH"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"SHN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Saint Helena"}}]}},{"@value":"PM","Description":{"@xml:lang":"en","#text":"Saint Pierre and Miquelon"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Saint Pierre and Miquelon"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"363"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"363"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"St. Pierre-Miquelon"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Saint Pierre and Miquelon"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"PM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"PM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"SPM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Saint Pierre and Miquelon"}}]}},{"@value":"WS","Description":{"@xml:lang":"en","#text":"Samoa"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Samoa"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"862"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"862"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Samoa"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Samoa"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"WS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"WS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"WSM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Samoa"}}]}},{"@value":"ST","Description":{"@xml:lang":"en","#text":"Sao Tome and Principe"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Sao Tome and Principe"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"716"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"716"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"São Tomé \u0026 Príncipe"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Sao Tome and Principe"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"ST"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"ST"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"STP"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=STP target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Sao Tome and Principe"}}]}},{"@value":"SA","Description":{"@xml:lang":"en","#text":"Saudi Arabia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Saudi Arabia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"456"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"456"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Saudi Arabia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Saudi Arabia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"SA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"SA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"SAU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Saudi Arabia"}}]}},{"@value":"SN","Description":{"@xml:lang":"en","#text":"Senegal"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Senegal"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"722"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"722"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Senegal"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Senegal"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"SN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"SN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"SEN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=SEN target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Senegal"}}]}},{"@value":"CS","Description":{"@xml:lang":"en","#text":"Serbia and Montenegro"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Serbia and Montenegro"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"965"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"965"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Serbia \u0026 Montenegro"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Serbia and Montenegro"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"CS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"CS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"SCG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Serbia and Montenegro"}}]}},{"@value":"RS","Description":{"@xml:lang":"en","#text":"Serbia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Serbia, Republic of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"942"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"942"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Serbia, Republic of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Serbia, Republic of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"RS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"RS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"SRB"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Serbia"}}]}},{"@value":"SC","Description":{"@xml:lang":"en","#text":"Seychelles"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Seychelles"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"718"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"718"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Seychelles"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Republic of Seychelles"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"SC"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"SC"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"SYC"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=SYC target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Seychelles"}}]}},{"@value":"SL","Description":{"@xml:lang":"en","#text":"Sierra Leone"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Sierra Leone"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"724"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"724"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Sierra Leone "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Sierra Leone"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"SL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"SL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"SLE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=SLE target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Sierra Leone"}}]}},{"@value":"SG","Description":{"@xml:lang":"en","#text":"Singapore"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Singapore"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"576"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"576"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Singapore "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Singapore"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"SG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"SG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"SGP"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=SGP target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Singapore"}}]}},{"@value":"SK","Description":{"@xml:lang":"en","#text":"Slovakia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Slovak Republic"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"936"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"936"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Slovak Republic"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Slovak Republic"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"SK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"SK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"SVK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=SVK target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Slovakia"}}]}},{"@value":"SI","Description":{"@xml:lang":"en","#text":"Slovenia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Slovenia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"961"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"961"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Slovenia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Republic of Slovenia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"SI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"SI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"SVN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=SVN target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Slovenia"}}]}},{"@value":"SB","Description":{"@xml:lang":"en","#text":"Solomon Islands"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Solomon Islands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"813"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"813"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Solomon Islands "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Solomon Islands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"SB"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"SB"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"SLB"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Solomon Islands"}}]}},{"@value":"SO","Description":{"@xml:lang":"en","#text":"Somalia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Somalia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"726"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"726"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Somalia "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Somalia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"SO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"SO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"SOM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Somalia"}}]}},{"@value":"ZA","Description":{"@xml:lang":"en","#text":"South Africa"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"South Africa"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"199"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"199"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"South Africa "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"South Africa"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"ZA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"ZA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"ZAF"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=ZAF target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"South Africa"}}]}},{"@value":"ES","Description":{"@xml:lang":"en","#text":"Spain"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Spain"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"184"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"184"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Spain"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Spain"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"ES"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"ES"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"ESP"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=ESP target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Spain"}}]}},{"@value":"LK","Description":{"@xml:lang":"en","#text":"Sri Lanka"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Sri Lanka"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"524"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"524"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Sri Lanka"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Sri Lanka"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"LK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"LK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"LKA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=LKA target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Sri Lanka"}}]}},{"@value":"KN","Description":{"@xml:lang":"en","#text":"Saint Kitts and Nevis"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"St. Kitts and Nevis"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"361"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"361"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"St. Kitts and Nevis "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"St. Kitts and Nevis"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"KN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"KN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"KNA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=KNA target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Saint Kitts and Nevis"}}]}},{"@value":"LC","Description":{"@xml:lang":"en","#text":"Saint Lucia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"St. Lucia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"362"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"362"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"St. Lucia "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"St. Lucia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"LC"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"LC"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"LCA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=LCA target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Saint Lucia"}}]}},{"@value":"VC","Description":{"@xml:lang":"en","#text":"Saint Vincent and the Grenadines"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"St. Vincent and the Grenadines"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"364"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"364"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"St. Vincent \u0026 Grens."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"St. Vincent and the Grenadines"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"VC"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"VC"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"VCT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=VCT target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Saint Vincent and the Grenadines"}}]}},{"@value":"SD","Description":{"@xml:lang":"en","#text":"Sudan"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Sudan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"732"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"732"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Sudan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Sudan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"SD"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"SD"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"SDN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=SDN target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Sudan"}}]}},{"@value":"SR","Description":{"@xml:lang":"en","#text":"Suriname"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Suriname"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"366"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"366"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Suriname"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Suriname"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"SR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"SR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"SUR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=SUR target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Suriname"}}]}},{"@value":"SE","Description":{"@xml:lang":"en","#text":"Sweden"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Sweden"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"144"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"144"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Sweden"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Sweden"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"SE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"SE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"SWE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=SWE target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Sweden"}}]}},{"@value":"CH","Description":{"@xml:lang":"en","#text":"Switzerland"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Switzerland"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"146"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"146"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Switzerland "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Switzerland"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"CH"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"CH"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"CHE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=CHE target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Switzerland"}}]}},{"@value":"SY","Description":{"@xml:lang":"en","#text":"Syrian Arab Republic"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Syrian Arab Republic"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"463"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"463"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Syrian Arab Republic"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Syrian Arab Republic"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"SY"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"SY"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"SYR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Syrian Arab Republic"}}]}},{"@value":"TW","Description":{"@xml:lang":"en","#text":"Taiwan, Province of China"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Taiwan Province of China"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"528"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"528"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Taiwan Prov.of China"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Taiwan Province of China"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"TW"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"TW"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"TWN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Taiwan, Province of China"}}]}},{"@value":"TJ","Description":{"@xml:lang":"en","#text":"Tajikistan"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Tajikistan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"923"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"923"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Tajikistan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Republic of Tajikistan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"TJ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"TJ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"TJK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=TJK target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Tajikistan"}}]}},{"@value":"TZ","Description":{"@xml:lang":"en","#text":"Tanzania, United Republic of"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Tanzania"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"738"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"738"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Tanzania "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Tanzania"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"TZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"TZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"TZA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=TZA target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Tanzania, United Republic of"}}]}},{"@value":"TH","Description":{"@xml:lang":"en","#text":"Thailand"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Thailand"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"578"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"578"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Thailand"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Thailand"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"TH"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"TH"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"THA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=THA target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Thailand"}}]}},{"@value":"TG","Description":{"@xml:lang":"en","#text":"Togo"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Togo"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"742"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"742"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Togo "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Togo"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"TG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"TG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"TGO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=TGO target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Togo"}}]}},{"@value":"TO","Description":{"@xml:lang":"en","#text":"Tonga"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Tonga"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"866"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"866"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Tonga "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Tonga"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"TO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"TO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"TON"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=TON target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Tonga"}}]}},{"@value":"TT","Description":{"@xml:lang":"en","#text":"Trinidad and Tobago"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Trinidad and Tobago"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"369"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"369"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Trinidad and Tobago"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Trinidad and Tobago"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"TT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"TT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"TTO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=TTO target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Trinidad and Tobago"}}]}},{"@value":"TN","Description":{"@xml:lang":"en","#text":"Tunisia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Tunisia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"744"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"744"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Tunisia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Tunisia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"TN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"TN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"TUN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=TUN target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Tunisia"}}]}},{"@value":"TR","Description":{"@xml:lang":"en","#text":"Turkey"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Turkey"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"186"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"186"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Turkey"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Turkey"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"TR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"TR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"TUR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=TUR target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Turkey"}}]}},{"@value":"TM","Description":{"@xml:lang":"en","#text":"Turkmenistan"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Turkmenistan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"925"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"925"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Turkmenistan "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Turkmenistan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"TM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"TM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"TKM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Turkmenistan"}}]}},{"@value":"TV","Description":{"@xml:lang":"en","#text":"Tuvalu"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Tuvalu"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"869"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"869"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Tuvalu "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Tuvalu"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"TV"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"TV"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"TUV"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Tuvalu"}}]}},{"@value":"SUH","Description":{"@xml:lang":"en","#text":"Former U.S.S.R."},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"U.S.S.R."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"974"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"974"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"U.S.S.R. "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"U.S.S.R."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"SUH"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Former U.S.S.R."}}]}},{"@value":"SUH9","Description":{"@xml:lang":"en","#text":"Former U.S.S.R. not allocated"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"U.S.S.R. not specified"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"930"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"930"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"U.S.S.R. n.s."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"U.S.S.R. not specified"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"SUH9"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Former U.S.S.R. not allocated"}}]}},{"@value":"UG","Description":{"@xml:lang":"en","#text":"Uganda"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Uganda"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"746"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"746"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Uganda "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Uganda"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"UG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"UG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"UGA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=UGA target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Uganda"}}]}},{"@value":"UA","Description":{"@xml:lang":"en","#text":"Ukraine"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Ukraine"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"926"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"926"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Ukraine"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Ukraine"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"UA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"UA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"UKR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=UKR target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Ukraine"}}]}},{"@value":"AE","Description":{"@xml:lang":"en","#text":"United Arab Emirates"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"United Arab Emirates"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"466"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"466"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"United Arab Emirates"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"United Arab Emirates"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"AE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"AE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"ARE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"United Arab Emirates"}}]}},{"@value":"GB","Description":{"@xml:lang":"en","#text":"United Kingdom"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"United Kingdom"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"112"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"112"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"United Kingdom"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"United Kingdom"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"GB"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"GB"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"GBR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=GBR target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"United Kingdom"}}]}},{"@value":"US","Description":{"@xml:lang":"en","#text":"United States"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"United States"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"111"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"111"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"United States"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"United States"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"US"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"US"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"USA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=USA target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"United States"}}]}},{"@value":"UY","Description":{"@xml:lang":"en","#text":"Uruguay"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Uruguay"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"298"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"298"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Uruguay"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Uruguay"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"UY"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"UY"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"URY"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=URY target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Uruguay"}}]}},{"@value":"UZ","Description":{"@xml:lang":"en","#text":"Uzbekistan"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Uzbekistan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"927"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"927"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Uzbekistan "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Republic of Uzbekistan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"UZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"UZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"UZB"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Uzbekistan"}}]}},{"@value":"VU","Description":{"@xml:lang":"en","#text":"Vanuatu"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Vanuatu"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"846"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"846"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Vanuatu "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Vanuatu"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"VU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"VU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"VUT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=VUT target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Vanuatu"}}]}},{"@value":"VE","Description":{"@xml:lang":"en","#text":"Venezuela, Bolivarian Republic"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Venezuela, Republica Bolivariana de"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"299"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"299"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Venezuela, Rep. Bol."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Venezuela, República Bolivariana de"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"VE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"VE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"VEN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=VEN target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Venezuela, Bolivarian Republic"}}]}},{"@value":"VN","Description":{"@xml:lang":"en","#text":"Viet Nam"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Vietnam"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"582"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"582"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Vietnam"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Vietnam"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"VN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"VN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"VNM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=VNM target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Viet Nam"}}]}},{"@value":"1C_473","Description":{"@xml:lang":"en","#text":"Yemen Arab Rep."},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Yemen Arab Rep."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"473"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"473"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Yemen Arab Rep."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Yemen Arab Rep."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_473"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"YMN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Yemen Arab Rep."}}]}},{"@value":"1C_459","Description":{"@xml:lang":"en","#text":"Yemen, P.D. Rep."},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Yemen, P.D. Rep."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"459"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"459"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Yemen, P.D. Rep. "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Yemen, P.D. Rep."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_459"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"YMD"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Yemen, P.D. Rep."}}]}},{"@value":"YE","Description":{"@xml:lang":"en","#text":"Yemen"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Yemen, Republic of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"474"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"474"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Yemen, Republic of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Yemen, Republic of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"YE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"YE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"YEM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=YMN target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Yemen"}}]}},{"@value":"YUC9","Description":{"@xml:lang":"en","#text":"Former Yugoslavia not allocated"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Yugoslavia not specified"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"966"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"966"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Yugoslavia n.s."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Yugoslavia not specified"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"YUC9"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Former Yugoslavia not allocated"}}]}},{"@value":"YUC","Description":{"@xml:lang":"en","#text":"Former Yugoslavia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Yugoslavia, SFR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"188"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"188"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Yugoslavia, SFR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Yugoslavia, SFR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"YUC"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"YUG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Former Yugoslavia"}}]}},{"@value":"ZM","Description":{"@xml:lang":"en","#text":"Zambia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Zambia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"754"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"754"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Zambia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Zambia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"ZM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"ZM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"ZMB"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=ZMB target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Zambia"}}]}},{"@value":"ZW","Description":{"@xml:lang":"en","#text":"Zimbabwe"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Zimbabwe"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"698"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"698"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Zimbabwe "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Zimbabwe"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"ZW"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"ZW"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"ZWE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=ZWE target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Zimbabwe"}}]}},{"@value":"XR29","Description":{"@xml:lang":"en","#text":"Advanced Economies (IMF)"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Advanced Economies"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"110"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"110"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"XR29"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Advanced Economies (IMF)"}}]}},{"@value":"F1","Description":{"@xml:lang":"en","#text":"Africa"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Africa"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"605"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"605"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"F1"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Africa"}}]}},{"@value":"1C_ALLC","Description":{"@xml:lang":"en","#text":"All Countries"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"All Countries"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"All Countries"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"All Countries"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_ALLC"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"All Countries"}}]}},{"@value":"1C_ALLCG","Description":{"@xml:lang":"en","#text":"All Countries and Country Groups"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"All Countries and Country Groups"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"All Countries and Country Groups"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"All Countries and Country Groups"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_ALLCG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"All Countries and Country Groups"}}]}},{"@value":"1C_ALLG","Description":{"@xml:lang":"en","#text":"All Country Groups"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"All Country Groups"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"All Country Groups"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"All Country Groups"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_ALLG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"All Country Groups"}}]}},{"@value":"1C_ADRC","Description":{"@xml:lang":"en","#text":"All DOTS Reporting Countries"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"All DOTS Reporting Countries"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"All DOTS Reporting Countries"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"All DOTS Reporting Countries"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"All DOTS Reporting Countries"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"All DOTS Reporting Countries"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_ADRC"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"All DOTS Reporting Countries"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"All DOTS Reporting Countries"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"All DOTS Reporting Countries"}}]}},{"@value":"R16","Description":{"@xml:lang":"en","#text":"APEC (Asia-Pacific Economic Co-operation)"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"APEC"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"050"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"050"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"R16"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"APEC (Asia-Pacific Economic Co-operation)"}}]}},{"@value":"1C_893","Description":{"@xml:lang":"en","#text":"British Countries not specified"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"British Countries not specified"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"893"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"893"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_893"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"British Countries not specified"}}]}},{"@value":"1C_904","Description":{"@xml:lang":"en","#text":"Central and eastern Europe"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Central and eastern Europe"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"904"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"904"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_904"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Central and eastern Europe"}}]}},{"@value":"R14","Description":{"@xml:lang":"en","#text":"Community of Independent States (CIS)"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"CIS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"901"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"901"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"R14"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Community of Independent States (CIS)"}}]}},{"@value":"1C_202","Description":{"@xml:lang":"en","#text":"Developing Countries"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Developing Countries"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"202"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"202"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_202"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Developing Countries"}}]}},{"@value":"1C_607","Description":{"@xml:lang":"en","#text":"Developing Countries: Africa"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Developing Countries: Africa"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"607"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"607"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_607"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Developing Countries: Africa"}}]}},{"@value":"1C_507","Description":{"@xml:lang":"en","#text":"Developing Countries: Asia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Developing Countries: Asia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"507"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"507"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_507"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Developing Countries: Asia"}}]}},{"@value":"1C_407","Description":{"@xml:lang":"en","#text":"Developing Countries: Middle East"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Developing Countries: Middle East"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"407"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"407"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_407"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Developing Countries: Middle East"}}]}},{"@value":"1C_207","Description":{"@xml:lang":"en","#text":"Developing Countries: Western Hemisphere"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Developing Countries: Western Hemisphere"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"207"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"207"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_207"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Developing Countries: Western Hemisphere"}}]}},{"@value":"1C_DOTSC","Description":{"@xml:lang":"en","#text":"DOTS countries"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"DOTS Countries"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"DOTS countries"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"DOTS countries"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_DOTSC"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"DOTS countries"}}]}},{"@value":"XS25","Description":{"@xml:lang":"en","#text":"Developing Asia (IMF)"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Emerging and Developing Asia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"505"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"505"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"XS25"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"F2"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Developing Asia (IMF)"}}]}},{"@value":"XR43","Description":{"@xml:lang":"en","#text":"Emerging and Developing Countries"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Emerging and Developing Countries"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"200"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"200"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"XR43"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Emerging and Developing Countries"}}]}},{"@value":"1C_995","Description":{"@xml:lang":"en","#text":"Euro Area (WEO)"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Euro Area (WEO)"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"995"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"995"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_995"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Euro Area (WEO)"}}]}},{"@value":"E1","Description":{"@xml:lang":"en","#text":"Europe"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Europe"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"170"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"170"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"E1"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"E1"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Europe"}}]}},{"@value":"B0","Description":{"@xml:lang":"en","#text":"EU (Member States and Institutions of the European Union) changing composition"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"European Union"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"998"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"998"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"B0"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"EU (Member States and Institutions of the European Union) changing composition"}}]}},{"@value":"1C_080","Description":{"@xml:lang":"en","#text":"Export earnings: fuel"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Export earnings: fuel"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"080"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"080"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_080"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Export earnings: fuel"}}]}},{"@value":"1C_092","Description":{"@xml:lang":"en","#text":"Export earnings: nonfuel"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Export earnings: nonfuel"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"092"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"092"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_092"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Export earnings: nonfuel"}}]}},{"@value":"1C_896","Description":{"@xml:lang":"en","#text":"French Countries not specified"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"French Countries not specified"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"896"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"896"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_896"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"French Countries not specified"}}]}},{"@value":"1C_101","Description":{"@xml:lang":"en","#text":"Industrial Countries"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Industrial Countries"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"101"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"101"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_101"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Industrial Countries"}}]}},{"@value":"F97","Description":{"@xml:lang":"en","#text":"Middle East"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Middle East"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"405"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"405"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"F97"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Middle East"}}]}},{"@value":"F98","Description":{"@xml:lang":"en","#text":"Middle East and North Africa (MENA)"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Middle East \u0026 North Africa"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"406"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"406"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"F98"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Middle East and North Africa (MENA)"}}]}},{"@value":"1C_440","Description":{"@xml:lang":"en","#text":"Middle East, North Africa, Afghanistan, and Pakistan"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Middle East, North Africa, Afghanistan, and Pakistan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"440"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"440"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_440"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Middle East, North Africa, Afghanistan, and Pakistan"}}]}},{"@value":"XR44","Description":{"@xml:lang":"en","#text":"Non-oil Developing Countries (IMF)"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Non-Oil Develop. Countries"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"201"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"201"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"XR44"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Non-oil Developing Countries (IMF)"}}]}},{"@value":"XR21","Description":{"@xml:lang":"en","#text":"Oil-exporting Countries (IMF)"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Oil Exporting Countries (STA)"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"999"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"999"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"XR21"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Oil-exporting Countries (IMF)"}}]}},{"@value":"X88","Description":{"@xml:lang":"en","#text":"Other Countries n.i.e. (IMF)"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Other Countries n.i.e."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"910"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"910"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"X88"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Other Countries n.i.e. (IMF)"}}]}},{"@value":"1C_608","Description":{"@xml:lang":"en","#text":"SACCA excluding South Africa"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"SACCA excluding South Africa"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"608"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"608"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_608"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"SACCA excluding South Africa"}}]}},{"@value":"1C_198","Description":{"@xml:lang":"en","#text":"South African Common Customs Area (SACCA)"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"South African Common Customs Area (SACCA)"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"198"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"198"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_198"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"South African Common Customs Area (SACCA)"}}]}},{"@value":"F6","Description":{"@xml:lang":"en","#text":"Sub-Saharan Africa"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Sub-Saharan Africa"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"603"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"603"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"F6"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Sub-Saharan Africa"}}]}},{"@value":"A10","Description":{"@xml:lang":"en","#text":"Western Hemisphere"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Western Hemisphere"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"205"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"205"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"A10"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Western Hemisphere"}}]}},{"@value":"W00","Description":{"@xml:lang":"en","#text":"All Countries, excluding the IO"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"World"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"001"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"001"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"W00"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"All Countries, excluding the IO"}}]}}]},{"@id":"CL_INDICATOR_DOT","@agencyID":"IMF","@version":"1.0","@isFinal":"true","@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/structure","Name":{"@xml:lang":"en","#text":"Indicator"},"Code":[{"@value":"TXG_FOB_USD","Description":{"@xml:lang":"en","#text":"Goods, Value of Exports, Free on board (FOB), US Dollars"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Goods, Value of Exports, Free on board (FOB), US Dollars"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"TXG_FOB_USD"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Goods, Value of Exports, FOB, US Dollars"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"External Trade, Goods, Value of Exports, Free on board (FOB), US Dollars"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Definition","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Concept","AnnotationText":{"@xml:lang":"en","#text":"Goods, Value of Exports, FOB"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Methodology","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Unit","AnnotationText":{"@xml:lang":"en","#text":"US Dollars"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Topic","AnnotationText":{"@xml:lang":"en","#text":"External Sector"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Alternate Publication Codes","AnnotationText":{"@xml:lang":"en","#text":"E-Library Concept: TXG, Unit: L"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"CTS Code","AnnotationText":{"@xml:lang":"en","#text":"TXG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"TXG|L"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Key Indicator","AnnotationText":{"@xml:lang":"en","#text":"Key Indicator"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Flow","AnnotationText":{"@xml:lang":"en","#text":"0"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Arrow Label","AnnotationText":{"@xml:lang":"en","#text":"Exports to"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code - Collection","AnnotationText":{"@xml:lang":"en","#text":"70..DZD|US Dollars"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code - Dissemination","AnnotationText":{"@xml:lang":"en","#text":"70..DZF|US Dollars"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code - EDD","AnnotationText":{"@xml:lang":"en","#text":"TXG|L"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Goods, Value of Exports, Free on board (FOB), US Dollars"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"TXG_FOB_USD"}}]}},{"@value":"TMG_CIF_USD","Description":{"@xml:lang":"en","#text":"Goods, Value of Imports, Cost, Insurance, Freight (CIF), US Dollars"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Goods, Value of Imports, Cost, Insurance, Freight (CIF), US Dollars"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"TMG_CIF_USD"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Goods, Value of Imports, CIF, US Dollars"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"External Trade, Goods, Value of Imports, Cost, Insurance, Freight (CIF), US Dollars"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Definition","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Concept","AnnotationText":{"@xml:lang":"en","#text":"Goods, Value of Imports, CIF"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Methodology","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Unit","AnnotationText":{"@xml:lang":"en","#text":"US Dollars"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Topic","AnnotationText":{"@xml:lang":"en","#text":"External Sector"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Alternate Publication Codes","AnnotationText":{"@xml:lang":"en","#text":"E-Library Concept: TMG, Unit: L"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"CTS Code","AnnotationText":{"@xml:lang":"en","#text":"TMG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"TMG|L"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Key Indicator","AnnotationText":{"@xml:lang":"en","#text":"Key Indicator"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Flow","AnnotationText":{"@xml:lang":"en","#text":"1"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Arrow Label","AnnotationText":{"@xml:lang":"en","#text":"Imports from"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code - Collection","AnnotationText":{"@xml:lang":"en","#text":"71..DZD|US Dollars"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code - Dissemination","AnnotationText":{"@xml:lang":"en","#text":"71..DZF|US Dollars"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code - EDD","AnnotationText":{"@xml:lang":"en","#text":"TMG|L"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Goods, Value of Imports, Cost, Insurance, Freight (CIF), US Dollars"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"TMG_CIF_USD"}}]}},{"@value":"TMG_FOB_USD","Description":{"@xml:lang":"en","#text":"Goods, Value of Imports, Free on board (FOB), US Dollars"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Goods, Value of Imports, Free on board (FOB), US Dollars"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"TMG_FOB_USD"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Goods, Value of Imports, FOB, US Dollars"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"External Trade, Goods, Value of Imports, Free on board (FOB), US Dollars"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Definition","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Concept","AnnotationText":{"@xml:lang":"en","#text":"Goods, Value of Imports, FOB"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Methodology","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Unit","AnnotationText":{"@xml:lang":"en","#text":"US Dollars"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Topic","AnnotationText":{"@xml:lang":"en","#text":"External Sector"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Alternate Publication Codes","AnnotationText":{"@xml:lang":"en","#text":"E-Library Concept: TMG_FOB, Unit: L"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"CTS Code","AnnotationText":{"@xml:lang":"en","#text":"TMG_FOB"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"TMG_FOB|L"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Key Indicator","AnnotationText":{"@xml:lang":"en","#text":"Key Indicator"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Flow","AnnotationText":{"@xml:lang":"en","#text":"1"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Arrow Label","AnnotationText":{"@xml:lang":"en","#text":"Imports from"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code - Collection","AnnotationText":{"@xml:lang":"en","#text":"71.VDZD|US Dollars"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code - Dissemination","AnnotationText":{"@xml:lang":"en","#text":"71.VDZF|US Dollars"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code - EDD","AnnotationText":{"@xml:lang":"en","#text":"TMG_FOB|L"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Goods, Value of Imports, Free on board (FOB), US Dollars"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"TMG_FOB_USD"}}]}},{"@value":"All_Indicators","Description":{"@xml:lang":"en","#text":"All Indicators"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"All Indicators"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"All Indicators"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"All Indicators"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"All Indicators"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Definition","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Concept","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Methodology","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Unit","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Topic","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Alternate Publication Codes","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"CTS Code","AnnotationText":{"@xml:lang":"en","#text":"All Indicators"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"All Indicators"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Key Indicator","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Flow","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Arrow Label","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code - Collection","AnnotationText":{"@xml:lang":"en","#text":"All Indicators"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code - Dissemination","AnnotationText":{"@xml:lang":"en","#text":"All Indicators"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code - EDD","AnnotationText":{"@xml:lang":"en","#text":"All Indicators"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"All Indicators"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"All_Indicators"}}]}}]},{"@id":"CL_COUNTERPART_AREA_DOT","@agencyID":"IMF","@version":"1.0","@isFinal":"true","@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/structure","Name":{"@xml:lang":"en","#text":"Counterpart Geographical Areas"},"Code":[{"@value":"AF","Description":{"@xml:lang":"en","#text":"Afghanistan"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Afghanistan, Islamic Republic of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"512"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"512"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Afghanistan, I.R. of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Afghanistan, Islamic Republic of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"AF"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"AF"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"AFG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=AFG target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Afghanistan"}}]}},{"@value":"AL","Description":{"@xml:lang":"en","#text":"Albania"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Albania"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"914"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"914"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Albania"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Albania"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"AL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"AL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"ALB"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=ALB target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Albania"}}]}},{"@value":"DZ","Description":{"@xml:lang":"en","#text":"Algeria"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Algeria"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"612"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"612"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Algeria"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Algeria"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"DZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"DZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"DZA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Algeria"}}]}},{"@value":"AS","Description":{"@xml:lang":"en","#text":"American Samoa"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"American Samoa"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"859"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"859"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"American Samoa "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"American Samoa"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"AS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"AS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"ASM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"American Samoa"}}]}},{"@value":"AD","Description":{"@xml:lang":"en","#text":"Andorra"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Andorra"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"171"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"171"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Andorra"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Andorra"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"AD"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"AD"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"AND"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Andorra"}}]}},{"@value":"AO","Description":{"@xml:lang":"en","#text":"Angola"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Angola"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"614"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"614"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Angola "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Angola"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"AO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"AO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"AGO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=AGO target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Angola"}}]}},{"@value":"AI","Description":{"@xml:lang":"en","#text":"Anguilla"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Anguilla"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"312"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"312"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Anguilla "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Anguilla"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"AI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"AI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"AIA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Anguilla"}}]}},{"@value":"AG","Description":{"@xml:lang":"en","#text":"Antigua and Barbuda"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Antigua and Barbuda"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"311"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"311"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Antigua and Barbuda "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Antigua and Barbuda"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"AG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"AG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"ATG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=ATG target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Antigua and Barbuda"}}]}},{"@value":"AR","Description":{"@xml:lang":"en","#text":"Argentina"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Argentina"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"213"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"213"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Argentina"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Argentina"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"AR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"AR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"ARG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=ARG target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Argentina"}}]}},{"@value":"AM","Description":{"@xml:lang":"en","#text":"Armenia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Armenia, Republic of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"911"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"911"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Armenia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Republic of Armenia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"AM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"AM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"ARM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=ARM target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Armenia"}}]}},{"@value":"AW","Description":{"@xml:lang":"en","#text":"Aruba"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Aruba"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"314"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"314"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Aruba"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Kingdom of the Netherlands—Aruba"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"AW"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"AW"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"ABW"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Aruba"}}]}},{"@value":"AU","Description":{"@xml:lang":"en","#text":"Australia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Australia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"193"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"193"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Australia "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Australia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"AU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"AU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"AUS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=AUS target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Australia"}}]}},{"@value":"AT","Description":{"@xml:lang":"en","#text":"Austria"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Austria"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"122"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"122"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Austria"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Austria"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"AT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"AT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"AUT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=AUT target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Austria"}}]}},{"@value":"AZ","Description":{"@xml:lang":"en","#text":"Azerbaijan"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Azerbaijan, Republic of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"912"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"912"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Azerbaijan, Rep. of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Republic of Azerbaijan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"AZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"AZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"AZE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=AZE target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Azerbaijan"}}]}},{"@value":"BS","Description":{"@xml:lang":"en","#text":"Bahamas"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Bahamas, The"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"313"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"313"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Bahamas, The "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Bahamas, The"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"BS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"BS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"BHS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=BHS target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Bahamas"}}]}},{"@value":"BH","Description":{"@xml:lang":"en","#text":"Bahrain"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Bahrain, Kingdom of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"419"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"419"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Bahrain, Kingdom of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Bahrain, Kingdom of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"BH"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"BH"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"BHR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Bahrain"}}]}},{"@value":"BD","Description":{"@xml:lang":"en","#text":"Bangladesh"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Bangladesh"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"513"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"513"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Bangladesh "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Bangladesh"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"BD"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"BD"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"BGD"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=BGD target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Bangladesh"}}]}},{"@value":"BB","Description":{"@xml:lang":"en","#text":"Barbados"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Barbados"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"316"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"316"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Barbados "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Barbados"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"BB"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"BB"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"BRB"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=BRB target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Barbados"}}]}},{"@value":"BY","Description":{"@xml:lang":"en","#text":"Belarus"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Belarus"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"913"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"913"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Belarus"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Republic of Belarus"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"BY"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"BY"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"BLR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=BLR target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Belarus"}}]}},{"@value":"BE","Description":{"@xml:lang":"en","#text":"Belgium"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Belgium"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"124"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"124"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Belgium"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Belgium"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"BE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"BE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"BEL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=BEL target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Belgium"}}]}},{"@value":"R1","Description":{"@xml:lang":"en","#text":"Belgo-Luxembourg Economic Union"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Belgium-Luxembourg"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"126"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"126"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Belgium-Luxembourg"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Belgium-Luxembourg"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"R1"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Belgo-Luxembourg Economic Union"}}]}},{"@value":"R109","Description":{"@xml:lang":"en","#text":"Belgium-Luxembourg not allocated"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Belgium-Luxembourg not specified"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"127"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"127"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Bel-Lux n.s."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Belgium-Luxembourg not specified"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"R109"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Belgium-Luxembourg not allocated"}}]}},{"@value":"BZ","Description":{"@xml:lang":"en","#text":"Belize"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Belize"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"339"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"339"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Belize "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Belize"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"BZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"BZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"BLZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=BLZ target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Belize"}}]}},{"@value":"BJ","Description":{"@xml:lang":"en","#text":"Benin"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Benin"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"638"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"638"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Benin "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Benin"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"BJ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"BJ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"BEN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=BEN target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Benin"}}]}},{"@value":"BM","Description":{"@xml:lang":"en","#text":"Bermuda"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Bermuda"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"319"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"319"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Bermuda "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Bermuda"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"BM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"BM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"BMU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Bermuda"}}]}},{"@value":"BT","Description":{"@xml:lang":"en","#text":"Bhutan"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Bhutan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"514"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"514"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Bhutan "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Bhutan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"BT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"BT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"BTN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Bhutan"}}]}},{"@value":"BO","Description":{"@xml:lang":"en","#text":"Bolivia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Bolivia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"218"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"218"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Bolivia "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Bolivia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"BO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"BO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"BOL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=BOL target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Bolivia"}}]}},{"@value":"BA","Description":{"@xml:lang":"en","#text":"Bosnia and Herzegovina"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Bosnia and Herzegovina"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"963"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"963"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Bosnia \u0026 Herzegovina"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Bosnia and Herzegovina"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"BA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"BA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"BIH"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Bosnia and Herzegovina"}}]}},{"@value":"BW","Description":{"@xml:lang":"en","#text":"Botswana"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Botswana"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"616"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"616"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Botswana "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Botswana"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"BW"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"BW"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"BWA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=BWA target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Botswana"}}]}},{"@value":"BR","Description":{"@xml:lang":"en","#text":"Brazil"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Brazil"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"223"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"223"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Brazil"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Brazil"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"BR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"BR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"BRA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=BRA target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Brazil"}}]}},{"@value":"IO","Description":{"@xml:lang":"en","#text":"British Indian Ocean territory"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"British Indian Ocean Territory"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"585"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"585"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Brit. Ind.Ocean Terr"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"British Indian Ocean Territory"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"IO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"IO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"IOQ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"British Indian Ocean territory"}}]}},{"@value":"1C_885","Description":{"@xml:lang":"en","#text":"British Oceania not specified"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"British Oceania not specified"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"885"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"885"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Br Oceania n.s."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"British Oceania not specified"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_885"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"British Oceania not specified"}}]}},{"@value":"BN","Description":{"@xml:lang":"en","#text":"Brunei Darussalam"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Brunei Darussalam"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"516"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"516"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Brunei Darussalam "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Brunei Darussalam"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"BN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"BN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"BRN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=BRN target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Brunei Darussalam"}}]}},{"@value":"BG","Description":{"@xml:lang":"en","#text":"Bulgaria"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Bulgaria"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"918"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"918"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Bulgaria "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Bulgaria"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"BG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"BG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"BGR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=BGR target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Bulgaria"}}]}},{"@value":"BF","Description":{"@xml:lang":"en","#text":"Burkina Faso"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Burkina Faso"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"748"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"748"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Burkina Faso "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Burkina Faso"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"BF"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"BF"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"BFA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=BFA target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Burkina Faso"}}]}},{"@value":"BI","Description":{"@xml:lang":"en","#text":"Burundi"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Burundi"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"618"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"618"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Burundi "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Burundi"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"BI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"BI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"BDI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Burundi"}}]}},{"@value":"KH","Description":{"@xml:lang":"en","#text":"Cambodia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Cambodia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"522"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"522"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Cambodia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Cambodia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"KH"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"KH"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"KHM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=KHM target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Cambodia"}}]}},{"@value":"CM","Description":{"@xml:lang":"en","#text":"Cameroon"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Cameroon"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"622"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"622"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Cameroon"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Cameroon"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"CM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"CM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"CMR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=CMR target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Cameroon"}}]}},{"@value":"CA","Description":{"@xml:lang":"en","#text":"Canada"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Canada"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"156"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"156"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Canada"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Canada"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"CA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"CA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"CAN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=CAN target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Canada"}}]}},{"@value":"CV","Description":{"@xml:lang":"en","#text":"Cape Verde"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Cape Verde"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"624"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"624"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Cabo Verde"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Cabo Verde"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"CV"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"CV"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"CPV"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=CPV target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Cape Verde"}}]}},{"@value":"KY","Description":{"@xml:lang":"en","#text":"Cayman Islands"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Cayman Islands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"377"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"377"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Cayman Islands "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Cayman Islands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"KY"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"KY"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"CYM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Cayman Islands"}}]}},{"@value":"CF","Description":{"@xml:lang":"en","#text":"Central African Republic"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Central African Republic"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"626"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"626"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Central African Rep."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Central African Republic"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"CF"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"CF"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"CAF"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=CAF target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Central African Republic"}}]}},{"@value":"TD","Description":{"@xml:lang":"en","#text":"Chad"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Chad"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"628"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"628"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Chad "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Chad"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"TD"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"TD"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"TCD"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=TCD target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Chad"}}]}},{"@value":"CL","Description":{"@xml:lang":"en","#text":"Chile"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Chile"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"228"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"228"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Chile"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Chile"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"CL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"CL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"CHL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=CHL target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Chile"}}]}},{"@value":"HK","Description":{"@xml:lang":"en","#text":"Hong Kong, China"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"China, P.R.: Hong Kong"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"532"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"532"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"China,P.R.:Hong Kong"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"China, P.R.: Hong Kong"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"HK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"HK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"HKG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=HKG target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Hong Kong, China"}}]}},{"@value":"MO","Description":{"@xml:lang":"en","#text":"Macao"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"China, P.R.: Macao"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"546"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"546"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"China,P.R.:Macao"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"China, P.R.: Macao"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"MO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"MO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"MAC"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Macao"}}]}},{"@value":"CN","Description":{"@xml:lang":"en","#text":"China"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"China, P.R.: Mainland"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"924"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"924"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"China,P.R.: Mainland"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"People’s Republic of China"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"CN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"CN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"CHN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=CHN target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"China"}}]}},{"@value":"CX","Description":{"@xml:lang":"en","#text":"Christmas Island"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Christmas Island"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"814"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"814"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Christmas Island"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Christmas Island"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"CX"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"CX"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"CXQ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Christmas Island"}}]}},{"@value":"CC","Description":{"@xml:lang":"en","#text":"Cocos (Keeling) Islands"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Cocos (Keeling) Islands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"865"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"865"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Cocos Island"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Cocos (Keeling) Islands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"CC"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"CC"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"CCQ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Cocos (Keeling) Islands"}}]}},{"@value":"CO","Description":{"@xml:lang":"en","#text":"Colombia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Colombia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"233"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"233"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Colombia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Colombia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"CO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"CO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"COL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=COL target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Colombia"}}]}},{"@value":"KM","Description":{"@xml:lang":"en","#text":"Comoros"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Comoros"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"632"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"632"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Comoros "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Federal Islamic Republic of the Comoros"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"KM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"KM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"COM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Comoros"}}]}},{"@value":"CD","Description":{"@xml:lang":"en","#text":"Congo, the Democratic Republic of the"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Congo, Democratic Republic of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"636"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"636"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Congo, Dem. Rep. of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Democratic Republic of the Congo"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"CD"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"CD"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"COD"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=COD target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Congo, the Democratic Republic of the"}}]}},{"@value":"CG","Description":{"@xml:lang":"en","#text":"Congo"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Congo, Republic of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"634"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"634"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Congo, Republic of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Republic of Congo"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"CG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"CG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"COG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=COG target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Congo"}}]}},{"@value":"CK","Description":{"@xml:lang":"en","#text":"Cook Islands"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Cook Islands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"815"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"815"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Cook Islands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Cook Islands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"CK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"CK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"COK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Cook Islands"}}]}},{"@value":"CR","Description":{"@xml:lang":"en","#text":"Costa Rica"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Costa Rica"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"238"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"238"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Costa Rica "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Costa Rica"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"CR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"CR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"CRI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=CRI target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Costa Rica"}}]}},{"@value":"CI","Description":{"@xml:lang":"en","#text":"Cote d`Ivoire"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Cote d\u0027Ivoire"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"662"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"662"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Côte d\u0027Ivoire "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Cote d\u0027Ivoire"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"CI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"CI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"CIV"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=CIV target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Cote d`Ivoire"}}]}},{"@value":"HR","Description":{"@xml:lang":"en","#text":"Croatia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Croatia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"960"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"960"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Croatia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Republic of Croatia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"HR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"HR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"HRV"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=HRV target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Croatia"}}]}},{"@value":"CU","Description":{"@xml:lang":"en","#text":"Cuba"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Cuba"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"928"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"928"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Cuba "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Cuba"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"CU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"CU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"CUB"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Cuba"}}]}},{"@value":"CW","Description":{"@xml:lang":"en","#text":"Curacao"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Curacao"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"354"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"354"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Curaçao"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Curacao"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"CW"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"CW"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"CUW"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Curacao"}}]}},{"@value":"CY","Description":{"@xml:lang":"en","#text":"Cyprus"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Cyprus"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"423"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"423"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Cyprus"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Cyprus"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"CY"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"CY"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"CYP"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Cyprus"}}]}},{"@value":"CZ","Description":{"@xml:lang":"en","#text":"Czech Republic"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Czech Republic"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"935"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"935"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Czech Republic"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Czech Republic"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"CZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"CZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"CZE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=CZE target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Czech Republic"}}]}},{"@value":"CSH","Description":{"@xml:lang":"en","#text":"Former Czechoslovakia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Czechoslovakia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"934"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"934"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Czechoslovakia "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Czechoslovakia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"CSH"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"CSK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Former Czechoslovakia"}}]}},{"@value":"CSH9","Description":{"@xml:lang":"en","#text":"Former Czechoslovakia not allocated"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Czechoslovakia not specified"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"937"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"937"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Czechoslovakia n.s."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Czechoslovakia not specified"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"CSH9"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Former Czechoslovakia not allocated"}}]}},{"@value":"DK","Description":{"@xml:lang":"en","#text":"Denmark"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Denmark"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"128"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"128"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Denmark "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Denmark"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"DK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"DK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"DNK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=DNK target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Denmark"}}]}},{"@value":"DJ","Description":{"@xml:lang":"en","#text":"Djibouti"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Djibouti"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"611"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"611"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Djibouti "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Djibouti"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"DJ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"DJ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"DJI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Djibouti"}}]}},{"@value":"DM","Description":{"@xml:lang":"en","#text":"Dominica"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Dominica"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"321"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"321"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Dominica "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Dominica"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"DM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"DM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"DMA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=DMA target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Dominica"}}]}},{"@value":"DO","Description":{"@xml:lang":"en","#text":"Dominican Republic"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Dominican Republic"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"243"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"243"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Dominican Republic"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Dominican Republic"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"DO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"DO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"DOM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=DOM target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Dominican Republic"}}]}},{"@value":"DE2","Description":{"@xml:lang":"en","#text":"East Germany"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Eastern Germany"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"938"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"938"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Eastern Germany "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Eastern Germany"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"DE2"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"East Germany"}}]}},{"@value":"EC","Description":{"@xml:lang":"en","#text":"Ecuador"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Ecuador"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"248"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"248"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Ecuador"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Ecuador"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"EC"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"EC"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"ECU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=ECU target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Ecuador"}}]}},{"@value":"EG","Description":{"@xml:lang":"en","#text":"Egypt"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Egypt"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"469"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"469"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Egypt "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Arab Republic of Egypt"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"EG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"EG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"EGY"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=EGY target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Egypt"}}]}},{"@value":"SV","Description":{"@xml:lang":"en","#text":"El Salvador"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"El Salvador"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"253"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"253"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"El Salvador "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"El Salvador"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"SV"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"SV"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"SLV"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=SLV target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"El Salvador"}}]}},{"@value":"1C_903","Description":{"@xml:lang":"en","#text":"Emerging and Developing Europe"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"EMERGING \u0026 DEVELOPING EUROPE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"903"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"903"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Emer. \u0026 Dev. Europe"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"EMERGING \u0026 DEVELOPING EUROPE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_903"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Emerging and Developing Europe"}}]}},{"@value":"GQ","Description":{"@xml:lang":"en","#text":"Equatorial Guinea"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Equatorial Guinea"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"642"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"642"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Equatorial Guinea "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Equatorial Guinea"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"GQ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"GQ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"GNQ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Equatorial Guinea"}}]}},{"@value":"ER","Description":{"@xml:lang":"en","#text":"Eritrea"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Eritrea"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"643"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"643"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Eritrea"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Eritrea"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"ER"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"ER"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"ERI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Eritrea"}}]}},{"@value":"EE","Description":{"@xml:lang":"en","#text":"Estonia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Estonia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"939"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"939"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Estonia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Republic of Estonia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"EE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"EE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"EST"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=EST target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Estonia"}}]}},{"@value":"ET","Description":{"@xml:lang":"en","#text":"Ethiopia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Ethiopia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"644"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"644"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Ethiopia "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Ethiopia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"ET"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"ET"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"ETH"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=ETH target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Ethiopia"}}]}},{"@value":"FK","Description":{"@xml:lang":"en","#text":"Falkland Islands (Malvinas)"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Falkland Islands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"323"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"323"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Falkland Islands "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Falkland Islands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"FK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"FK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"FLK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Falkland Islands (Malvinas)"}}]}},{"@value":"FO","Description":{"@xml:lang":"en","#text":"Faroe Islands"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Faroe Islands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"816"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"816"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Faroe Islands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Faroe Islands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"FO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"FO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"FRO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Faroe Islands"}}]}},{"@value":"FJ","Description":{"@xml:lang":"en","#text":"Fiji"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Fiji"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"819"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"819"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Fiji "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Fiji"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"FJ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"FJ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"FJI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=FJI target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Fiji"}}]}},{"@value":"FI","Description":{"@xml:lang":"en","#text":"Finland"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Finland"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"172"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"172"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Finland"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Finland"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"FI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"FI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"FIN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=FIN target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Finland"}}]}},{"@value":"FR","Description":{"@xml:lang":"en","#text":"France"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"France"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"132"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"132"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"France"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"France"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"FR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"FR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"FRA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=FRA target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"France"}}]}},{"@value":"TF","Description":{"@xml:lang":"en","#text":"French Southern Territories"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"French Southern Territories"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"876"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"876"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Fr.So.Antarc.Tr."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"French Southern Territories"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"TF"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"TF"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"TFQ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"French Southern Territories"}}]}},{"@value":"PF","Description":{"@xml:lang":"en","#text":"French Polynesia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"French Territories: French Polynesia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"887"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"887"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"French Polynesia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"French Polynesia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"PF"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"PF"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"PYF"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"French Polynesia"}}]}},{"@value":"NC","Description":{"@xml:lang":"en","#text":"New Caledonia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"French Territories: New Caledonia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"839"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"839"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"New Caledonia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"New Caledonia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"NC"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"NC"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"NCL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"New Caledonia"}}]}},{"@value":"GA","Description":{"@xml:lang":"en","#text":"Gabon"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Gabon"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"646"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"646"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Gabon "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Gabon"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"GA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"GA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"GAB"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=GAB target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Gabon"}}]}},{"@value":"GM","Description":{"@xml:lang":"en","#text":"Gambia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Gambia, The"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"648"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"648"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Gambia, The "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Gambia, The"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"GM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"GM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"GMB"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=GMB target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Gambia"}}]}},{"@value":"GE","Description":{"@xml:lang":"en","#text":"Georgia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Georgia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"915"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"915"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Georgia "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Georgia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"GE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"GE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"GEO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=GEO target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Georgia"}}]}},{"@value":"DE","Description":{"@xml:lang":"en","#text":"Germany"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Germany"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"134"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"134"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Germany"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Germany"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"DE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"DE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"DEU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=DEU target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Germany"}}]}},{"@value":"GH","Description":{"@xml:lang":"en","#text":"Ghana"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Ghana"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"652"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"652"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Ghana "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Ghana"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"GH"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"GH"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"GHA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=GHA target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Ghana"}}]}},{"@value":"GI","Description":{"@xml:lang":"en","#text":"Gibraltar"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Gibraltar"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"823"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"823"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Gibraltar "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Gibraltar"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"GI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"GI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"GIB"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Gibraltar"}}]}},{"@value":"GR","Description":{"@xml:lang":"en","#text":"Greece"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Greece"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"174"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"174"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Greece"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Greece"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"GR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"GR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"GRC"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=GRC target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Greece"}}]}},{"@value":"GL","Description":{"@xml:lang":"en","#text":"Greenland"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Greenland"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"326"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"326"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Greenland"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Greenland"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"GL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"GL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"GRL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Greenland"}}]}},{"@value":"GD","Description":{"@xml:lang":"en","#text":"Grenada"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Grenada"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"328"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"328"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Grenada "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Grenada"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"GD"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"GD"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"GRD"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=GRD target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Grenada"}}]}},{"@value":"GP","Description":{"@xml:lang":"en","#text":"Guadeloupe"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Guadeloupe"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"329"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"329"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Guadeloupe"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Guadeloupe"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"GP"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"GP"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"GLP"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Guadeloupe"}}]}},{"@value":"GU","Description":{"@xml:lang":"en","#text":"Guam"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Guam"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"829"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"829"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Guam"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Guam"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"GU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"GU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"GUM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Guam"}}]}},{"@value":"GT","Description":{"@xml:lang":"en","#text":"Guatemala"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Guatemala"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"258"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"258"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Guatemala "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Guatemala"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"GT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"GT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"GTM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=GTM target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Guatemala"}}]}},{"@value":"GF","Description":{"@xml:lang":"en","#text":"French Guiana"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Guiana, French"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"333"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"333"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Guiana, French"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Guiana, French"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"GF"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"GF"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"GUF"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"French Guiana"}}]}},{"@value":"GN","Description":{"@xml:lang":"en","#text":"Guinea"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Guinea"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"656"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"656"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Guinea "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Guinea"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"GN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"GN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"GIN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=GIN target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Guinea"}}]}},{"@value":"GW","Description":{"@xml:lang":"en","#text":"Guinea-Bissau"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Guinea-Bissau"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"654"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"654"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Guinea-Bissau "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Guinea-Bissau"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"GW"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"GW"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"GNB"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=GNB target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Guinea-Bissau"}}]}},{"@value":"GY","Description":{"@xml:lang":"en","#text":"Guyana"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Guyana"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"336"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"336"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Guyana "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Guyana"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"GY"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"GY"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"GUY"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Guyana"}}]}},{"@value":"HT","Description":{"@xml:lang":"en","#text":"Haiti"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Haiti"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"263"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"263"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Haiti "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Haiti"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"HT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"HT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"HTI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Haiti"}}]}},{"@value":"HN","Description":{"@xml:lang":"en","#text":"Honduras"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Honduras"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"268"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"268"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Honduras "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Honduras"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"HN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"HN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"HND"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=HND target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Honduras"}}]}},{"@value":"HU","Description":{"@xml:lang":"en","#text":"Hungary"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Hungary"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"944"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"944"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Hungary "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Hungary"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"HU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"HU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"HUN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=HUN target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Hungary"}}]}},{"@value":"IS","Description":{"@xml:lang":"en","#text":"Iceland"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Iceland"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"176"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"176"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Iceland "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Iceland"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"IS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"IS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"ISL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=ISL target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Iceland"}}]}},{"@value":"IN","Description":{"@xml:lang":"en","#text":"India"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"India"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"534"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"534"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"India"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"India"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"IN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"IN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"IND"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=IND target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"India"}}]}},{"@value":"ID","Description":{"@xml:lang":"en","#text":"Indonesia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Indonesia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"536"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"536"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Indonesia "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Indonesia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"ID"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"ID"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"IDN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=IDN target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Indonesia"}}]}},{"@value":"IR","Description":{"@xml:lang":"en","#text":"Iran, Islamic Republic of"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Iran, Islamic Republic of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"429"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"429"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Iran, I.R. of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Iran, Islamic Republic of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"IR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"IR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"IRN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Iran, Islamic Republic of"}}]}},{"@value":"IQ","Description":{"@xml:lang":"en","#text":"Iraq"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Iraq"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"433"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"433"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Iraq "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Iraq"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"IQ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"IQ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"IRQ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Iraq"}}]}},{"@value":"IE","Description":{"@xml:lang":"en","#text":"Ireland"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Ireland"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"178"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"178"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Ireland"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Ireland"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"IE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"IE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"IRL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=IRL target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Ireland"}}]}},{"@value":"IL","Description":{"@xml:lang":"en","#text":"Israel"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Israel"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"436"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"436"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Israel "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Israel"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"IL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"IL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"ISR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=ISR target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Israel"}}]}},{"@value":"IT","Description":{"@xml:lang":"en","#text":"Italy"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Italy"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"136"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"136"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Italy"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Italy"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"IT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"IT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"ITA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=ITA target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Italy"}}]}},{"@value":"JM","Description":{"@xml:lang":"en","#text":"Jamaica"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Jamaica"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"343"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"343"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Jamaica "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Jamaica"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"JM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"JM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"JAM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=JAM target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Jamaica"}}]}},{"@value":"JP","Description":{"@xml:lang":"en","#text":"Japan"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Japan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"158"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"158"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Japan "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Japan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"JP"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"JP"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"JPN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=JPN target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Japan"}}]}},{"@value":"JO","Description":{"@xml:lang":"en","#text":"Jordan"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Jordan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"439"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"439"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Jordan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Jordan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"JO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"JO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"JOR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=JOR target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Jordan"}}]}},{"@value":"KZ","Description":{"@xml:lang":"en","#text":"Kazakhstan"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Kazakhstan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"916"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"916"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Kazakhstan "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Republic of Kazakhstan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"KZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"KZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"KAZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=KAZ target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Kazakhstan"}}]}},{"@value":"KE","Description":{"@xml:lang":"en","#text":"Kenya"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Kenya"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"664"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"664"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Kenya "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Kenya"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"KE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"KE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"KEN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=KEN target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Kenya"}}]}},{"@value":"KI","Description":{"@xml:lang":"en","#text":"Kiribati"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Kiribati"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"826"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"826"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Kiribati "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Kiribati"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"KI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"KI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"KIR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=KIR target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Kiribati"}}]}},{"@value":"KP","Description":{"@xml:lang":"en","#text":"Korea, Democratic People`s Republic of"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Korea, Democratic People\u0027s Rep. of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"954"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"954"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"North Korea"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Korea, Democratic People\u0027s Republic of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"KP"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"KP"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"PRK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Korea, Democratic People`s Republic of"}}]}},{"@value":"KR","Description":{"@xml:lang":"en","#text":"Korea, Republic of"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Korea, Republic of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"542"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"542"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Korea, Republic of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Korea, Republic of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"KR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"KR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"KOR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=KOR target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Korea, Republic of"}}]}},{"@value":"XK","Description":{"@xml:lang":"en","#text":"Kosovo"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Kosovo, Republic of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"967"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"967"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Kosovo"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Kosovo"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"XK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"KO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"UVK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Kosovo"}}]}},{"@value":"KW","Description":{"@xml:lang":"en","#text":"Kuwait"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Kuwait"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"443"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"443"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Kuwait"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Kuwait"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"KW"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"KW"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"KWT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=KWT target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Kuwait"}}]}},{"@value":"KG","Description":{"@xml:lang":"en","#text":"Kyrgyzstan"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Kyrgyz Republic"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"917"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"917"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Kyrgyz Republic "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Kyrgyz Republic"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"KG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"KG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"KGZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=KGZ target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Kyrgyzstan"}}]}},{"@value":"LA","Description":{"@xml:lang":"en","#text":"Lao People`s Democratic Republic"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Lao People\u0027s Democratic Republic"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"544"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"544"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Lao People\u0027s Dem.Rep"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Lao People\u0027s Democratic Republic"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"LA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"LA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"LAO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Lao People`s Democratic Republic"}}]}},{"@value":"LV","Description":{"@xml:lang":"en","#text":"Latvia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Latvia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"941"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"941"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Latvia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Republic of Latvia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"LV"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"LV"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"LVA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=LVA target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Latvia"}}]}},{"@value":"LB","Description":{"@xml:lang":"en","#text":"Lebanon"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Lebanon"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"446"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"446"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Lebanon "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Lebanon"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"LB"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"LB"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"LBN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=LBN target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Lebanon"}}]}},{"@value":"LS","Description":{"@xml:lang":"en","#text":"Lesotho"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Lesotho"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"666"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"666"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Lesotho "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Lesotho"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"LS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"LS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"LSO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=LSO target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Lesotho"}}]}},{"@value":"LR","Description":{"@xml:lang":"en","#text":"Liberia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Liberia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"668"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"668"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Liberia "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Liberia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"LR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"LR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"LBR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=LBR target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Liberia"}}]}},{"@value":"LY","Description":{"@xml:lang":"en","#text":"Libya"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Libya"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"672"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"672"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Libya "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Socialist People’s Libyan Arab Jamahiriya"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"LY"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"LY"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"LBY"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Libya"}}]}},{"@value":"LI","Description":{"@xml:lang":"en","#text":"Liechtenstein"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Liechtenstein"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"147"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"147"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Liechtenstein "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Liechtenstein"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"LI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"LI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"LIE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Liechtenstein"}}]}},{"@value":"LT","Description":{"@xml:lang":"en","#text":"Lithuania"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Lithuania"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"946"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"946"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Lithuania "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Republic of Lithuania"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"LT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"LT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"LTU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=LTU target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Lithuania"}}]}},{"@value":"LU","Description":{"@xml:lang":"en","#text":"Luxembourg"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Luxembourg"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"137"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"137"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Luxembourg"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Luxembourg"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"LU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"LU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"LUX"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=LUX target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Luxembourg"}}]}},{"@value":"MK","Description":{"@xml:lang":"en","#text":"Macedonia, The Former Yugoslav Republic of"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Macedonia, FYR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"962"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"962"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Macedonia, FYR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Macedonia, former Yugoslav Republic of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"MK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"MK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"MKD"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=MKD target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Macedonia, The Former Yugoslav Republic of"}}]}},{"@value":"MG","Description":{"@xml:lang":"en","#text":"Madagascar"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Madagascar"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"674"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"674"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Madagascar"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Republic of Madagascar  "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"MG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"MG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"MDG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=MDG target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Madagascar"}}]}},{"@value":"MW","Description":{"@xml:lang":"en","#text":"Malawi"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Malawi"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"676"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"676"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Malawi "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Malawi"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"MW"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"MW"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"MWI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=MWI target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Malawi"}}]}},{"@value":"MY","Description":{"@xml:lang":"en","#text":"Malaysia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Malaysia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"548"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"548"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Malaysia "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Malaysia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"MY"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"MY"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"MYS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=MYS target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Malaysia"}}]}},{"@value":"1C_552","Description":{"@xml:lang":"en","#text":"Malaysia-Singapore"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Malaysia-Singapore"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"552"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"552"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Malaysia-Singapore "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Malaysia-Singapore"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_552"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Malaysia-Singapore"}}]}},{"@value":"1C_554","Description":{"@xml:lang":"en","#text":"Malaysia, West"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Malaysia, West"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"554"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"554"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Malaysia, West"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Malaysia, West"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_554"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Malaysia, West"}}]}},{"@value":"MV","Description":{"@xml:lang":"en","#text":"Maldives"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Maldives"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"556"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"556"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Maldives "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Maldives"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"MV"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"MV"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"MDV"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Maldives"}}]}},{"@value":"ML","Description":{"@xml:lang":"en","#text":"Mali"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Mali"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"678"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"678"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Mali "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Mali"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"ML"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"ML"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"MLI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=MLI target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Mali"}}]}},{"@value":"MT","Description":{"@xml:lang":"en","#text":"Malta"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Malta"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"181"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"181"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Malta"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Malta"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"MT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"MT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"MLT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=MLT target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Malta"}}]}},{"@value":"MH","Description":{"@xml:lang":"en","#text":"Marshall islands"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Marshall Islands, Republic of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"867"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"867"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Marshall Islands,Rep"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Republic of the Marshall Islands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"MH"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"MH"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"MHL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Marshall islands"}}]}},{"@value":"MQ","Description":{"@xml:lang":"en","#text":"Martinique"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Martinique"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"349"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"349"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Martinique"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Martinique"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"MQ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"MQ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"MTQ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Martinique"}}]}},{"@value":"MR","Description":{"@xml:lang":"en","#text":"Mauritania"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Mauritania"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"682"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"682"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Mauritania "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Islamic Republic of Mauritania"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"MR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"MR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"MRT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=MRT target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Mauritania"}}]}},{"@value":"MU","Description":{"@xml:lang":"en","#text":"Mauritius"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Mauritius"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"684"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"684"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Mauritius"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Republic of Mauritius"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"MU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"MU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"MUS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=MUS target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Mauritius"}}]}},{"@value":"YT","Description":{"@xml:lang":"en","#text":"Mayotte"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Mayotte"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"920"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"920"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Mayotte"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Mayotte"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"YT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"YT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"MYT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Mayotte"}}]}},{"@value":"MX","Description":{"@xml:lang":"en","#text":"Mexico"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Mexico"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"273"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"273"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Mexico"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Mexico"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"MX"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"MX"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"MEX"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=MEX target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Mexico"}}]}},{"@value":"FM","Description":{"@xml:lang":"en","#text":"Micronesia, Federated States of"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Micronesia, Federated States of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"868"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"868"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Micronesia, Fed.Sts."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Micronesia, Federated States of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"FM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"FM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"FSM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Micronesia, Federated States of"}}]}},{"@value":"MD","Description":{"@xml:lang":"en","#text":"Moldova, Republic of"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Moldova"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"921"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"921"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Moldova "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Republic of Moldova"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"MD"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"MD"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"MDA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=MDA target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Moldova, Republic of"}}]}},{"@value":"MC","Description":{"@xml:lang":"en","#text":"Monaco"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Monaco"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"183"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"183"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Monaco"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Monaco"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"MC"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"MC"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"MCO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Monaco"}}]}},{"@value":"MN","Description":{"@xml:lang":"en","#text":"Mongolia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Mongolia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"948"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"948"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Mongolia "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Mongolia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"MN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"MN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"MNG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=MNG target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Mongolia"}}]}},{"@value":"ME","Description":{"@xml:lang":"en","#text":"Montenegro"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Montenegro"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"943"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"943"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Montenegro"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Montenegro"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"ME"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"ME"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"MNE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Montenegro"}}]}},{"@value":"MS","Description":{"@xml:lang":"en","#text":"Montserrat"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Montserrat"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"351"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"351"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Montserrat "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Montserrat"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"MS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"MS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"MSR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Montserrat"}}]}},{"@value":"MA","Description":{"@xml:lang":"en","#text":"Morocco"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Morocco"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"686"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"686"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Morocco "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Morocco"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"MA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"MA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"MAR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=MAR target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Morocco"}}]}},{"@value":"MZ","Description":{"@xml:lang":"en","#text":"Mozambique"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Mozambique"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"688"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"688"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Mozambique "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Republic of Mozambique"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"MZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"MZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"MOZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=MOZ target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Mozambique"}}]}},{"@value":"MM","Description":{"@xml:lang":"en","#text":"Myanmar"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Myanmar"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"518"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"518"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Myanmar "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Myanmar"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"MM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"MM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"MMR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Myanmar"}}]}},{"@value":"NA","Description":{"@xml:lang":"en","#text":"Namibia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Namibia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"728"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"728"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Namibia "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Namibia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"NA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"NA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"NAM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=NAM target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Namibia"}}]}},{"@value":"NR","Description":{"@xml:lang":"en","#text":"Nauru"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Nauru"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"836"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"836"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Nauru "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Nauru"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"NR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"NR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"NRU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Nauru"}}]}},{"@value":"NP","Description":{"@xml:lang":"en","#text":"Nepal"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Nepal"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"558"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"558"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Nepal"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Nepal"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"NP"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"NP"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"NPL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=NPL target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Nepal"}}]}},{"@value":"NL","Description":{"@xml:lang":"en","#text":"Netherlands"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Netherlands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"138"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"138"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Netherlands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Kingdom of the Netherlands—Netherlands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"NL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"NL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"NLD"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=NLD target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Netherlands"}}]}},{"@value":"AN","Description":{"@xml:lang":"en","#text":"Netherlands Antilles"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Netherlands Antilles"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"353"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"353"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Netherlands Antilles"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Kingdom of the Netherlands—Netherlands Antilles"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"AN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"AN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"ANT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Netherlands Antilles"}}]}},{"@value":"NZ","Description":{"@xml:lang":"en","#text":"New Zealand"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"New Zealand"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"196"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"196"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"New Zealand "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"New Zealand"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"NZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"NZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"NZL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"New Zealand"}}]}},{"@value":"NI","Description":{"@xml:lang":"en","#text":"Nicaragua"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Nicaragua"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"278"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"278"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Nicaragua "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Nicaragua"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"NI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"NI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"NIC"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=NIC target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Nicaragua"}}]}},{"@value":"NE","Description":{"@xml:lang":"en","#text":"Niger"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Niger"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"692"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"692"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Niger "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Niger"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"NE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"NE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"NER"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=NER target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Niger"}}]}},{"@value":"NG","Description":{"@xml:lang":"en","#text":"Nigeria"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Nigeria"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"694"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"694"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Nigeria "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Nigeria"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"NG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"NG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"NGA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=NGA target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Nigeria"}}]}},{"@value":"NU","Description":{"@xml:lang":"en","#text":"Niue"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Niue"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"851"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"851"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Niue"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Niue"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"NU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"NU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"NIU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Niue"}}]}},{"@value":"NF","Description":{"@xml:lang":"en","#text":"Norfolk Island"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Norfolk Island"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"849"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"849"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Norfolk Island"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Norfolk Island"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"NF"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"NF"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"NFK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Norfolk Island"}}]}},{"@value":"1C_958","Description":{"@xml:lang":"en","#text":"North Vietnam"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"North Vietnam"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"958"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"958"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"North Vietnam "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"North Vietnam"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_958"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"North Vietnam"}}]}},{"@value":"MP","Description":{"@xml:lang":"en","#text":"Northern Mariana Islands"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Northern Mariana Isl"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"817"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"817"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Northern Mariana Isl"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Northern Mariana Isl"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"MP"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"MP"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"MNP"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Northern Mariana Islands"}}]}},{"@value":"NO","Description":{"@xml:lang":"en","#text":"Norway"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Norway"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"142"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"142"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Norway"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Norway"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"NO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"NO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"NOR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=NOR target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Norway"}}]}},{"@value":"OM","Description":{"@xml:lang":"en","#text":"Oman"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Oman"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"449"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"449"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Oman "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Oman"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"OM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"OM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"OMN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=OMN target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Oman"}}]}},{"@value":"PK","Description":{"@xml:lang":"en","#text":"Pakistan"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Pakistan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"564"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"564"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Pakistan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Pakistan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"PK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"PK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"PAK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=PAK target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Pakistan"}}]}},{"@value":"PW","Description":{"@xml:lang":"en","#text":"Palau"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Palau"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"565"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"565"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Palau "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Republic of Palau"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"PW"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"PW"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"PLW"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Palau"}}]}},{"@value":"PA","Description":{"@xml:lang":"en","#text":"Panama"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Panama"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"283"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"283"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Panama "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Panama"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"PA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"PA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"PAN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=PAN target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Panama"}}]}},{"@value":"1C_356","Description":{"@xml:lang":"en","#text":"Panama Canal Zone"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Panama Canal Zone"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"356"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"356"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Panama Canal Zone "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Panama Canal Zone"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_356"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Panama Canal Zone"}}]}},{"@value":"PG","Description":{"@xml:lang":"en","#text":"Papua New Guinea"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Papua New Guinea"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"853"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"853"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Papua New Guinea "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Papua New Guinea"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"PG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"PG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"PNG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Papua New Guinea"}}]}},{"@value":"PY","Description":{"@xml:lang":"en","#text":"Paraguay"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Paraguay"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"288"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"288"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Paraguay "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Paraguay"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"PY"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"PY"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"PRY"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=PRY target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Paraguay"}}]}},{"@value":"PE","Description":{"@xml:lang":"en","#text":"Peru"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Peru"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"293"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"293"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Peru"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Peru"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"PE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"PE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"PER"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=PER target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Peru"}}]}},{"@value":"PH","Description":{"@xml:lang":"en","#text":"Philippines"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Philippines"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"566"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"566"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Philippines"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Philippines"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"PH"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"PH"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"PHL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=PHL target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Philippines"}}]}},{"@value":"PN","Description":{"@xml:lang":"en","#text":"Pitcairn"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Pitcairn Islands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"863"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"863"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Pitcairn Islands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Pitcairn Islands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"PN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"PN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"PCN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Pitcairn"}}]}},{"@value":"PL","Description":{"@xml:lang":"en","#text":"Poland"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Poland"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"964"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"964"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Poland "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Republic of Poland"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"PL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"PL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"POL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=POL target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Poland"}}]}},{"@value":"PT","Description":{"@xml:lang":"en","#text":"Portugal"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Portugal"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"182"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"182"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Portugal"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Portugal"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"PT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"PT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"PRT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=PRT target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Portugal"}}]}},{"@value":"PR","Description":{"@xml:lang":"en","#text":"Puerto Rico"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Puerto Rico"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"359"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"359"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Puerto Rico "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Puerto Rico"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"PR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"PR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"PRI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Puerto Rico"}}]}},{"@value":"QA","Description":{"@xml:lang":"en","#text":"Qatar"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Qatar"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"453"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"453"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Qatar"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Qatar"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"QA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"QA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"QAT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=QAT target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Qatar"}}]}},{"@value":"RE","Description":{"@xml:lang":"en","#text":"Reunion"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Reunion"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"696"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"696"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Réunion"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Reunion"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"RE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"RE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"REU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Reunion"}}]}},{"@value":"RO","Description":{"@xml:lang":"en","#text":"Romania"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Romania"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"968"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"968"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Romania"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Romania"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"RO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"RO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"ROU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=ROU target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Romania"}}]}},{"@value":"RU","Description":{"@xml:lang":"en","#text":"Russian Federation"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Russian Federation"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"922"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"922"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Russian Federation"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Russian Federation"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"RU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"RU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"RUS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=RUS target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Russian Federation"}}]}},{"@value":"RW","Description":{"@xml:lang":"en","#text":"Rwanda"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Rwanda"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"714"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"714"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Rwanda "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Rwanda"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"RW"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"RW"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"RWA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=RWA target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Rwanda"}}]}},{"@value":"1C_568","Description":{"@xml:lang":"en","#text":"Ryukyus"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Ryukyus"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"568"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"568"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Ryukyus "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Ryukyus"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_568"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Ryukyus"}}]}},{"@value":"SH","Description":{"@xml:lang":"en","#text":"Saint Helena"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Saint Helena"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"856"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"856"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"St. Helena "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Saint Helena"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"SH"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"SH"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"SHN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Saint Helena"}}]}},{"@value":"PM","Description":{"@xml:lang":"en","#text":"Saint Pierre and Miquelon"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Saint Pierre and Miquelon"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"363"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"363"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"St. Pierre-Miquelon"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Saint Pierre and Miquelon"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"PM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"PM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"SPM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Saint Pierre and Miquelon"}}]}},{"@value":"WS","Description":{"@xml:lang":"en","#text":"Samoa"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Samoa"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"862"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"862"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Samoa"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Samoa"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"WS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"WS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"WSM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Samoa"}}]}},{"@value":"SM","Description":{"@xml:lang":"en","#text":"San Marino"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"San Marino"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"135"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"135"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"San Marino"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Republic of San Marino"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"SM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"SM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"SMR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"San Marino"}}]}},{"@value":"ST","Description":{"@xml:lang":"en","#text":"Sao Tome and Principe"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Sao Tome and Principe"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"716"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"716"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"São Tomé \u0026 Príncipe"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Sao Tome and Principe"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"ST"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"ST"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"STP"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=STP target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Sao Tome and Principe"}}]}},{"@value":"SA","Description":{"@xml:lang":"en","#text":"Saudi Arabia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Saudi Arabia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"456"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"456"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Saudi Arabia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Saudi Arabia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"SA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"SA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"SAU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Saudi Arabia"}}]}},{"@value":"SN","Description":{"@xml:lang":"en","#text":"Senegal"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Senegal"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"722"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"722"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Senegal"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Senegal"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"SN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"SN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"SEN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=SEN target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Senegal"}}]}},{"@value":"CS","Description":{"@xml:lang":"en","#text":"Serbia and Montenegro"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Serbia and Montenegro"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"965"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"965"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Serbia \u0026 Montenegro"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Serbia and Montenegro"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"CS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"CS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"SCG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Serbia and Montenegro"}}]}},{"@value":"CS9","Description":{"@xml:lang":"en","#text":"Serbia and Montenegro not allocated"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Serbia Montenegro not specified"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"945"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"945"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Serbia Montenegro ns"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Serbia Montenegro ns"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"CS9"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Serbia and Montenegro not allocated"}}]}},{"@value":"RS","Description":{"@xml:lang":"en","#text":"Serbia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Serbia, Republic of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"942"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"942"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Serbia, Republic of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Serbia, Republic of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"RS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"RS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"SRB"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Serbia"}}]}},{"@value":"SC","Description":{"@xml:lang":"en","#text":"Seychelles"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Seychelles"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"718"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"718"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Seychelles"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Republic of Seychelles"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"SC"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"SC"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"SYC"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=SYC target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Seychelles"}}]}},{"@value":"SL","Description":{"@xml:lang":"en","#text":"Sierra Leone"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Sierra Leone"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"724"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"724"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Sierra Leone "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Sierra Leone"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"SL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"SL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"SLE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=SLE target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Sierra Leone"}}]}},{"@value":"SG","Description":{"@xml:lang":"en","#text":"Singapore"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Singapore"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"576"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"576"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Singapore "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Singapore"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"SG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"SG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"SGP"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=SGP target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Singapore"}}]}},{"@value":"SK","Description":{"@xml:lang":"en","#text":"Slovakia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Slovak Republic"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"936"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"936"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Slovak Republic"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Slovak Republic"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"SK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"SK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"SVK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=SVK target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Slovakia"}}]}},{"@value":"SI","Description":{"@xml:lang":"en","#text":"Slovenia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Slovenia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"961"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"961"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Slovenia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Republic of Slovenia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"SI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"SI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"SVN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=SVN target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Slovenia"}}]}},{"@value":"SB","Description":{"@xml:lang":"en","#text":"Solomon Islands"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Solomon Islands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"813"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"813"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Solomon Islands "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Solomon Islands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"SB"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"SB"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"SLB"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Solomon Islands"}}]}},{"@value":"SO","Description":{"@xml:lang":"en","#text":"Somalia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Somalia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"726"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"726"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Somalia "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Somalia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"SO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"SO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"SOM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Somalia"}}]}},{"@value":"ZA","Description":{"@xml:lang":"en","#text":"South Africa"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"South Africa"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"199"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"199"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"South Africa "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"South Africa"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"ZA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"ZA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"ZAF"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=ZAF target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"South Africa"}}]}},{"@value":"SS","Description":{"@xml:lang":"en","#text":"South Sudan"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"South Sudan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"733"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"733"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"South Sudan, Rep. of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Republic of South Sudan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"SS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"SS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"SSD"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"South Sudan"}}]}},{"@value":"ES","Description":{"@xml:lang":"en","#text":"Spain"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Spain"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"184"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"184"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Spain"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Spain"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"ES"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"ES"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"ESP"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=ESP target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Spain"}}]}},{"@value":"LK","Description":{"@xml:lang":"en","#text":"Sri Lanka"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Sri Lanka"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"524"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"524"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Sri Lanka"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Sri Lanka"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"LK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"LK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"LKA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=LKA target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Sri Lanka"}}]}},{"@value":"KN","Description":{"@xml:lang":"en","#text":"Saint Kitts and Nevis"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"St. Kitts and Nevis"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"361"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"361"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"St. Kitts and Nevis "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"St. Kitts and Nevis"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"KN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"KN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"KNA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=KNA target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Saint Kitts and Nevis"}}]}},{"@value":"LC","Description":{"@xml:lang":"en","#text":"Saint Lucia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"St. Lucia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"362"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"362"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"St. Lucia "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"St. Lucia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"LC"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"LC"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"LCA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=LCA target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Saint Lucia"}}]}},{"@value":"VC","Description":{"@xml:lang":"en","#text":"Saint Vincent and the Grenadines"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"St. Vincent and the Grenadines"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"364"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"364"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"St. Vincent \u0026 Grens."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"St. Vincent and the Grenadines"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"VC"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"VC"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"VCT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=VCT target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Saint Vincent and the Grenadines"}}]}},{"@value":"SD","Description":{"@xml:lang":"en","#text":"Sudan"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Sudan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"732"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"732"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Sudan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Sudan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"SD"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"SD"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"SDN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=SDN target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Sudan"}}]}},{"@value":"SR","Description":{"@xml:lang":"en","#text":"Suriname"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Suriname"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"366"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"366"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Suriname"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Suriname"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"SR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"SR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"SUR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=SUR target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Suriname"}}]}},{"@value":"SJ","Description":{"@xml:lang":"en","#text":"Svalbard and Jan Mayen"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Svalbard Jan Mayen Islands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"141"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"141"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Svalbard Jan May.Isl"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Svalbard Jan Mayen Islands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"SJ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"SJ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"SJM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Svalbard and Jan Mayen"}}]}},{"@value":"SZ","Description":{"@xml:lang":"en","#text":"Swaziland"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Swaziland"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"734"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"734"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Swaziland "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Swaziland"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"SZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"SZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"SWZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=SWZ target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Swaziland"}}]}},{"@value":"SE","Description":{"@xml:lang":"en","#text":"Sweden"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Sweden"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"144"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"144"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Sweden"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Sweden"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"SE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"SE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"SWE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=SWE target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Sweden"}}]}},{"@value":"CH","Description":{"@xml:lang":"en","#text":"Switzerland"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Switzerland"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"146"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"146"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Switzerland "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Switzerland"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"CH"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"CH"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"CHE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=CHE target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Switzerland"}}]}},{"@value":"SY","Description":{"@xml:lang":"en","#text":"Syrian Arab Republic"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Syrian Arab Republic"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"463"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"463"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Syrian Arab Republic"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Syrian Arab Republic"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"SY"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"SY"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"SYR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Syrian Arab Republic"}}]}},{"@value":"TW","Description":{"@xml:lang":"en","#text":"Taiwan, Province of China"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Taiwan Province of China"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"528"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"528"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Taiwan Prov.of China"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Taiwan Province of China"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"TW"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"TW"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"TWN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Taiwan, Province of China"}}]}},{"@value":"TJ","Description":{"@xml:lang":"en","#text":"Tajikistan"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Tajikistan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"923"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"923"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Tajikistan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Republic of Tajikistan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"TJ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"TJ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"TJK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=TJK target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Tajikistan"}}]}},{"@value":"TZ","Description":{"@xml:lang":"en","#text":"Tanzania, United Republic of"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Tanzania"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"738"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"738"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Tanzania "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Tanzania"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"TZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"TZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"TZA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=TZA target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Tanzania, United Republic of"}}]}},{"@value":"TH","Description":{"@xml:lang":"en","#text":"Thailand"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Thailand"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"578"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"578"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Thailand"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Thailand"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"TH"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"TH"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"THA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=THA target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Thailand"}}]}},{"@value":"TP","Description":{"@xml:lang":"en","#text":"Timor"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Timor"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"579"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"579"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Timor"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Timor"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"TP"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"TP"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"TMP"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Timor"}}]}},{"@value":"TL","Description":{"@xml:lang":"en","#text":"Timor-Leste"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Timor-Leste, Dem. Rep. of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"537"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"537"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Timor-Leste"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"The Democratic Republic of Timor-Leste"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"TL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"TL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"TLS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Timor-Leste"}}]}},{"@value":"TG","Description":{"@xml:lang":"en","#text":"Togo"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Togo"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"742"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"742"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Togo "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Togo"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"TG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"TG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"TGO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=TGO target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Togo"}}]}},{"@value":"TK","Description":{"@xml:lang":"en","#text":"Tokelau"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Tokelau Islands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"818"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"818"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Tokelau Islands "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Tokelau Islands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"TK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"TK"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"TKL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Tokelau"}}]}},{"@value":"TO","Description":{"@xml:lang":"en","#text":"Tonga"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Tonga"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"866"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"866"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Tonga "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Tonga"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"TO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"TO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"TON"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=TON target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Tonga"}}]}},{"@value":"TT","Description":{"@xml:lang":"en","#text":"Trinidad and Tobago"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Trinidad and Tobago"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"369"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"369"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Trinidad and Tobago"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Trinidad and Tobago"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"TT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"TT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"TTO"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=TTO target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Trinidad and Tobago"}}]}},{"@value":"TN","Description":{"@xml:lang":"en","#text":"Tunisia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Tunisia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"744"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"744"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Tunisia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Tunisia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"TN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"TN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"TUN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=TUN target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Tunisia"}}]}},{"@value":"TR","Description":{"@xml:lang":"en","#text":"Turkey"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Turkey"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"186"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"186"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Turkey"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Turkey"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"TR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"TR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"TUR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=TUR target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Turkey"}}]}},{"@value":"TM","Description":{"@xml:lang":"en","#text":"Turkmenistan"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Turkmenistan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"925"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"925"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Turkmenistan "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Turkmenistan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"TM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"TM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"TKM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Turkmenistan"}}]}},{"@value":"TC","Description":{"@xml:lang":"en","#text":"Turks and Caicos Islands"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Turks and Caicos Islands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"381"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"381"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Turks \u0026 Caicos Isl"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Turks and Caicos Islands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"TC"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"TC"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"TCA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Turks and Caicos Islands"}}]}},{"@value":"TV","Description":{"@xml:lang":"en","#text":"Tuvalu"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Tuvalu"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"869"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"869"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Tuvalu "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Tuvalu"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"TV"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"TV"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"TUV"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Tuvalu"}}]}},{"@value":"SUH","Description":{"@xml:lang":"en","#text":"Former U.S.S.R."},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"U.S.S.R."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"974"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"974"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"U.S.S.R. "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"U.S.S.R."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"SUH"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Former U.S.S.R."}}]}},{"@value":"SUH9","Description":{"@xml:lang":"en","#text":"Former U.S.S.R. not allocated"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"U.S.S.R. not specified"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"930"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"930"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"U.S.S.R. n.s."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"U.S.S.R. not specified"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"SUH9"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Former U.S.S.R. not allocated"}}]}},{"@value":"UG","Description":{"@xml:lang":"en","#text":"Uganda"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Uganda"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"746"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"746"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Uganda "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Uganda"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"UG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"UG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"UGA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=UGA target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Uganda"}}]}},{"@value":"UA","Description":{"@xml:lang":"en","#text":"Ukraine"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Ukraine"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"926"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"926"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Ukraine"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Ukraine"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"UA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"UA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"UKR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=UKR target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Ukraine"}}]}},{"@value":"1C_897","Description":{"@xml:lang":"en","#text":"Unallocated Borrowers"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Unallocated Borrowers"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"897"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"897"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Unalloc. Borrowers "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Unallocated Borrowers"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_897"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Unallocated Borrowers"}}]}},{"@value":"AE","Description":{"@xml:lang":"en","#text":"United Arab Emirates"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"United Arab Emirates"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"466"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"466"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"United Arab Emirates"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"United Arab Emirates"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"AE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"AE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"ARE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"United Arab Emirates"}}]}},{"@value":"GB","Description":{"@xml:lang":"en","#text":"United Kingdom"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"United Kingdom"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"112"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"112"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"United Kingdom"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"United Kingdom"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"GB"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"GB"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"GBR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=GBR target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"United Kingdom"}}]}},{"@value":"US","Description":{"@xml:lang":"en","#text":"United States"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"United States"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"111"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"111"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"United States"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"United States"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"US"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"US"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"USA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=USA target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"United States"}}]}},{"@value":"UM","Description":{"@xml:lang":"en","#text":"United States Minor outlying islands"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"United States Minor Outlying Islands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"877"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"877"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"US Poss. in Oceania "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"United States Minor Outlying Islands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"UM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"UM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"United States Minor outlying islands"}}]}},{"@value":"UY","Description":{"@xml:lang":"en","#text":"Uruguay"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Uruguay"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"298"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"298"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Uruguay"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Uruguay"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"UY"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"UY"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"URY"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=URY target=\u0027_blank\u0027\u003ecountry\u0027s Special Data Dissemination Standard (SDDS) page\u003c/a\u003e. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Uruguay"}}]}},{"@value":"VI","Description":{"@xml:lang":"en","#text":"Virgin Islands, U.S."},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"US Virgin Islands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"373"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"373"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"U.S. Virgin Islands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"US Virgin Islands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"VI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"VI"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"VIR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Virgin Islands, U.S."}}]}},{"@value":"UZ","Description":{"@xml:lang":"en","#text":"Uzbekistan"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Uzbekistan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"927"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"927"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Uzbekistan "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Republic of Uzbekistan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"UZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"UZ"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"UZB"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Uzbekistan"}}]}},{"@value":"VU","Description":{"@xml:lang":"en","#text":"Vanuatu"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Vanuatu"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"846"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"846"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Vanuatu "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Vanuatu"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"VU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"VU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"VUT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=VUT target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Vanuatu"}}]}},{"@value":"VA","Description":{"@xml:lang":"en","#text":"Holy See (Vatican City State)"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Vatican"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"187"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"187"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Vatican "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Vatican"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"VA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"VA"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"VAT"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Holy See (Vatican City State)"}}]}},{"@value":"VE","Description":{"@xml:lang":"en","#text":"Venezuela, Bolivarian Republic"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Venezuela, Republica Bolivariana de"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"299"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"299"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Venezuela, Rep. Bol."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Venezuela, República Bolivariana de"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"VE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"VE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"VEN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=VEN target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Venezuela, Bolivarian Republic"}}]}},{"@value":"VN","Description":{"@xml:lang":"en","#text":"Viet Nam"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Vietnam"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"582"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"582"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Vietnam"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Vietnam"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"VN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"VN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"VNM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=VNM target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Viet Nam"}}]}},{"@value":"VG","Description":{"@xml:lang":"en","#text":"Virgin Islands, British"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Virgin Islands, British"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"371"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"371"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Brit Virgin Islands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Virgin Islands, British"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"VG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"VG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"VGB"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Virgin Islands, British"}}]}},{"@value":"WKU","Description":{"@xml:lang":"en","#text":"Wake Islands"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Wake Islands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"861"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"861"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Wake Islands "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Wake Islands"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"WKU"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Wake Islands"}}]}},{"@value":"FR2","Description":{"@xml:lang":"en","#text":"Wallis"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Wallis"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"864"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"864"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Wallis "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Wallis"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"FR2"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Wallis"}}]}},{"@value":"WF","Description":{"@xml:lang":"en","#text":"Wallis and Futuna"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Wallis and Futuna"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"857"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"857"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Wallis-Futuna"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Wallis and Futuna"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"WF"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"WF"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"WLF"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Wallis and Futuna"}}]}},{"@value":"PS","Description":{"@xml:lang":"en","#text":"Palestine, State of"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"West Bank and Gaza"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"487"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"487"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"West Bank and Gaza"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"West Bank and Gaza"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"PS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"PS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"PSE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=PSE target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Palestine, State of"}}]}},{"@value":"EH","Description":{"@xml:lang":"en","#text":"Western Sahara"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Western Sahara"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"793"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"793"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Western Sahara"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Western Sahara"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"EH"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"ESH"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Western Sahara"}}]}},{"@value":"1C_473","Description":{"@xml:lang":"en","#text":"Yemen Arab Rep."},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Yemen Arab Rep."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"473"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"473"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Yemen Arab Rep."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Yemen Arab Rep."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_473"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"YMN"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Yemen Arab Rep."}}]}},{"@value":"1C_459","Description":{"@xml:lang":"en","#text":"Yemen, P.D. Rep."},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Yemen, P.D. Rep."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"459"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"459"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Yemen, P.D. Rep. "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Yemen, P.D. Rep."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_459"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"YMD"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Yemen, P.D. Rep."}}]}},{"@value":"YE","Description":{"@xml:lang":"en","#text":"Yemen"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Yemen, Republic of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"474"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"474"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Yemen, Republic of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Yemen, Republic of"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"YE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"YE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"YEM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=YMN target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Yemen"}}]}},{"@value":"YUC9","Description":{"@xml:lang":"en","#text":"Former Yugoslavia not allocated"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Yugoslavia not specified"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"966"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"966"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Yugoslavia n.s."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Yugoslavia not specified"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"YUC9"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Former Yugoslavia not allocated"}}]}},{"@value":"YUC","Description":{"@xml:lang":"en","#text":"Former Yugoslavia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Yugoslavia, SFR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"188"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"188"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Yugoslavia, SFR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Yugoslavia, SFR"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"YUC"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"YUG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Former Yugoslavia"}}]}},{"@value":"ZM","Description":{"@xml:lang":"en","#text":"Zambia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Zambia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"754"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"754"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Zambia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Zambia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"ZM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"ZM"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"ZMB"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=ZMB target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Zambia"}}]}},{"@value":"ZW","Description":{"@xml:lang":"en","#text":"Zimbabwe"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Zimbabwe"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"698"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"698"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en","#text":"Zimbabwe "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en","#text":"Zimbabwe"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"ZW"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"ZW"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en","#text":"ZWE"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en","#text":"For additional country metadata please refer to the \u003ca href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=ZWE target=\u0027_blank\u0027\u003ecountry\u0027s General Data Dissemination System (GDDS) page\u003c/a\u003e. GDDS provides recommendations on good practice for the production and dissemination of statistics."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Zimbabwe"}}]}},{"@value":"XR29","Description":{"@xml:lang":"en","#text":"Advanced Economies (IMF)"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Advanced Economies"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"110"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"110"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"XR29"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Advanced Economies (IMF)"}}]}},{"@value":"F1","Description":{"@xml:lang":"en","#text":"Africa"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Africa"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"605"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"605"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"F1"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Africa"}}]}},{"@value":"F19","Description":{"@xml:lang":"en","#text":"Africa not allocated"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Africa not specified"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"799"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"799"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"F19"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Africa not allocated"}}]}},{"@value":"1C_ALLC","Description":{"@xml:lang":"en","#text":"All Countries"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"All Countries"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"All Countries"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"All Countries"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_ALLC"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"All Countries"}}]}},{"@value":"1C_ALL","Description":{"@xml:lang":"en","#text":"All Countries and Country Groups"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"All Countries and Country Groups"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"All Countries and Country Groups"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"All Countries and Country Groups"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_ALL"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"All Countries and Country Groups"}}]}},{"@value":"1C_ALLG","Description":{"@xml:lang":"en","#text":"All Country Groups"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"All Country Groups"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"All Country Groups"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"All Country Groups"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_ALLG"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"All Country Groups"}}]}},{"@value":"R16","Description":{"@xml:lang":"en","#text":"APEC (Asia-Pacific Economic Co-operation)"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"APEC"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"050"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"050"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"R16"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"APEC (Asia-Pacific Economic Co-operation)"}}]}},{"@value":"S19","Description":{"@xml:lang":"en","#text":"Asia not allocated"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Asia not specified"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"598"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"598"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"S19"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Asia not allocated"}}]}},{"@value":"1C_792","Description":{"@xml:lang":"en","#text":"British Africa not specified"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"British Africa not specified"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"792"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"792"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_792"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"British Africa not specified"}}]}},{"@value":"1C_893","Description":{"@xml:lang":"en","#text":"British Countries not specified"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"British Countries not specified"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"893"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"893"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_893"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"British Countries not specified"}}]}},{"@value":"1C_904","Description":{"@xml:lang":"en","#text":"Central and eastern Europe"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Central and eastern Europe"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"904"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"904"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_904"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Central and eastern Europe"}}]}},{"@value":"R14","Description":{"@xml:lang":"en","#text":"Community of Independent States (CIS)"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"CIS"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"901"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"901"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"R14"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Community of Independent States (CIS)"}}]}},{"@value":"_X","Description":{"@xml:lang":"en","#text":"Not allocated/ unspecified"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Countries \u0026 Areas not specified"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"898"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"898"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"_X"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Not allocated/ unspecified"}}]}},{"@value":"1C_202","Description":{"@xml:lang":"en","#text":"Developing Countries"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Developing Countries"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"202"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"202"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_202"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Developing Countries"}}]}},{"@value":"1C_607","Description":{"@xml:lang":"en","#text":"Developing Countries: Africa"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Developing Countries: Africa"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"607"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"607"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_607"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Developing Countries: Africa"}}]}},{"@value":"1C_507","Description":{"@xml:lang":"en","#text":"Developing Countries: Asia"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Developing Countries: Asia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"507"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"507"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_507"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Developing Countries: Asia"}}]}},{"@value":"1C_407","Description":{"@xml:lang":"en","#text":"Developing Countries: Middle East"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Developing Countries: Middle East"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"407"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"407"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_407"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Developing Countries: Middle East"}}]}},{"@value":"1C_207","Description":{"@xml:lang":"en","#text":"Developing Countries: Western Hemisphere"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Developing Countries: Western Hemisphere"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"207"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"207"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_207"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Developing Countries: Western Hemisphere"}}]}},{"@value":"XS25","Description":{"@xml:lang":"en","#text":"Developing Asia (IMF)"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Emerging and Developing Asia"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"505"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"505"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"XS25"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"F2"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Developing Asia (IMF)"}}]}},{"@value":"XR43","Description":{"@xml:lang":"en","#text":"Emerging and Developing Countries"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Emerging and Developing Countries"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"200"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"200"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"XR43"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Emerging and Developing Countries"}}]}},{"@value":"1C_995","Description":{"@xml:lang":"en","#text":"Euro Area (WEO)"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Euro Area (WEO)"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"995"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"995"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_995"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Euro Area (WEO)"}}]}},{"@value":"E1","Description":{"@xml:lang":"en","#text":"Europe"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Europe"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"170"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"170"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"E1"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":"E1"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Europe"}}]}},{"@value":"E19","Description":{"@xml:lang":"en","#text":"Europe not allocated"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Europe not specified"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"884"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"884"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"E19"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Europe not allocated"}}]}},{"@value":"B0","Description":{"@xml:lang":"en","#text":"EU (Member States and Institutions of the European Union) changing composition"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"European Union"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"998"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"998"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"B0"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"EU (Member States and Institutions of the European Union) changing composition"}}]}},{"@value":"1C_080","Description":{"@xml:lang":"en","#text":"Export earnings: fuel"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Export earnings: fuel"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"080"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"080"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_080"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Export earnings: fuel"}}]}},{"@value":"1C_092","Description":{"@xml:lang":"en","#text":"Export earnings: nonfuel"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Export earnings: nonfuel"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"092"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"092"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_092"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Export earnings: nonfuel"}}]}},{"@value":"1C_896","Description":{"@xml:lang":"en","#text":"French Countries not specified"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"French Countries not specified"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"896"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"896"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_896"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"French Countries not specified"}}]}},{"@value":"1C_486","Description":{"@xml:lang":"en","#text":"French Middle East not specified"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"French Middle East not specified"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"486"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"486"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_486"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"French Middle East not specified"}}]}},{"@value":"1C_Groups_used_in_validation","Description":{"@xml:lang":"en","#text":"Groups used in validation"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Groups used in validation"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"Groups used in validation"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"Groups used in validation"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_Groups_used_in_validation"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Groups used in validation"}}]}},{"@value":"1C_101","Description":{"@xml:lang":"en","#text":"Industrial Countries"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Industrial Countries"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"101"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"101"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_101"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Industrial Countries"}}]}},{"@value":"F97","Description":{"@xml:lang":"en","#text":"Middle East"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Middle East"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"405"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"405"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"F97"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Middle East"}}]}},{"@value":"F98","Description":{"@xml:lang":"en","#text":"Middle East and North Africa (MENA)"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Middle East \u0026 North Africa"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"406"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"406"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"F98"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Middle East and North Africa (MENA)"}}]}},{"@value":"F979","Description":{"@xml:lang":"en","#text":"Middle East not allocated"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Middle East not specified"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"489"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"489"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"F979"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Middle East not allocated"}}]}},{"@value":"1C_440","Description":{"@xml:lang":"en","#text":"Middle East, North Africa, Afghanistan, and Pakistan"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Middle East, North Africa, Afghanistan, and Pakistan"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"440"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"440"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_440"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Middle East, North Africa, Afghanistan, and Pakistan"}}]}},{"@value":"XR44","Description":{"@xml:lang":"en","#text":"Non-oil Developing Countries (IMF)"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Non-Oil Develop. Countries"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"201"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"201"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"XR44"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Non-oil Developing Countries (IMF)"}}]}},{"@value":"O39","Description":{"@xml:lang":"en","#text":"Oceania not allocated"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Oceania not specified"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"892"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"892"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"O39"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Oceania not allocated"}}]}},{"@value":"XR21","Description":{"@xml:lang":"en","#text":"Oil-exporting Countries (IMF)"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Oil Exporting Countries (STA)"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"999"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"999"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"XR21"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Oil-exporting Countries (IMF)"}}]}},{"@value":"1C_810","Description":{"@xml:lang":"en","#text":"Other Countries"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Other Countries"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"810"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"810"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_810"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Other Countries"}}]}},{"@value":"X88","Description":{"@xml:lang":"en","#text":"Other Countries n.i.e. (IMF)"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Other Countries n.i.e."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"910"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"910"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"X88"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Other Countries n.i.e. (IMF)"}}]}},{"@value":"1C_796","Description":{"@xml:lang":"en","#text":"Portuguese Africa not specified"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Portuguese Africa not specified"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"796"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"796"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_796"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Portuguese Africa not specified"}}]}},{"@value":"1C_608","Description":{"@xml:lang":"en","#text":"SACCA excluding South Africa"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"SACCA excluding South Africa"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"608"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"608"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_608"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"SACCA excluding South Africa"}}]}},{"@value":"1C_198","Description":{"@xml:lang":"en","#text":"South African Common Customs Area (SACCA)"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"South African Common Customs Area (SACCA)"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"198"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"198"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_198"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"South African Common Customs Area (SACCA)"}}]}},{"@value":"1C_797","Description":{"@xml:lang":"en","#text":"Spanish Africa"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Spanish Africa"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"797"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"797"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_797"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Spanish Africa"}}]}},{"@value":"1C_798","Description":{"@xml:lang":"en","#text":"Spanish Sahara"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Spanish Sahara"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"798"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"798"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"1C_798"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Spanish Sahara"}}]}},{"@value":"XR99","Description":{"@xml:lang":"en","#text":"Special Categories and Economic Zones"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Special Categories"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"899"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"899"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"XR99"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Special Categories and Economic Zones"}}]}},{"@value":"F6","Description":{"@xml:lang":"en","#text":"Sub-Saharan Africa"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Sub-Saharan Africa"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"603"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"603"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"F6"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Sub-Saharan Africa"}}]}},{"@value":"A10","Description":{"@xml:lang":"en","#text":"Western Hemisphere"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Western Hemisphere"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"205"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"205"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"A10"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Western Hemisphere"}}]}},{"@value":"A109","Description":{"@xml:lang":"en","#text":"Western Hemisphere not allocated"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Western Hemisphere not specified"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"399"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"399"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"A109"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en","#text":" "}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"Western Hemisphere not allocated"}}]}},{"@value":"W00","Description":{"@xml:lang":"en","#text":"All Countries, excluding the IO"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"World"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"001"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"001"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Short Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Full Name","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Code","AnnotationText":{"@xml:lang":"en","#text":"W00"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 2 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"ISO 3 Code","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Data Quality Assurance Framework","AnnotationText":{"@xml:lang":"en"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"SDMX Name","AnnotationText":{"@xml:lang":"en","#text":"All Countries, excluding the IO"}}]}}]},{"@id":"CL_OBS_STATUS_DOT","@agencyID":"IMF","@version":"1.0","@isFinal":"true","@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/structure","Name":{"@xml:lang":"en","#text":"Observation Status"},"Code":[{"@value":"E_4","Description":{"@xml:lang":"en","#text":"1-5 months of reported data and 7-11 months of estimates"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"1-5 months of reported data and 7-11 months of estimates"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"E_4"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"t"}}]}},{"@value":"E_2","Description":{"@xml:lang":"en","#text":"1 month of reported data and 2 months of estimates"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"1 month of reported data and 2 months of estimates"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"E_2"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"l"}}]}},{"@value":"E_1","Description":{"@xml:lang":"en","#text":"2 months of reported data and 1 month of estimates"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"2 months of reported data and 1 month of estimates"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"E_1"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"g"}}]}},{"@value":"E_3","Description":{"@xml:lang":"en","#text":"6-11 months of reported data and 1-6 months of estimates"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"6-11 months of reported data and 1-6 months of estimates"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"E_3"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"s"}}]}},{"@value":"E_5","Description":{"@xml:lang":"en","#text":"Consolidated data derived solely from partner records"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Consolidated data derived solely from partner records"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"E_5"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"v"}}]}},{"@value":"I_6","Description":{"@xml:lang":"en","#text":"Consolidated data estimated by other methods, sometimes including the use of partner records; also used in world and area totals"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Consolidated data estimated by other methods, sometimes including the use of partner records; also used in world and area totals"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"I_6"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"y"}}]}},{"@value":"I_4","Description":{"@xml:lang":"en","#text":"Derived from estimated partner records"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Derived from estimated partner records"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"I_4"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"q"}}]}},{"@value":"I_7","Description":{"@xml:lang":"en","#text":"Derived from estimated partner records (other)"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Derived from estimated partner records (other)"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"I_7"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"r"}}]}},{"@value":"I_3","Description":{"@xml:lang":"en","#text":"Derived from reported partner records"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Derived from reported partner records"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"I_3"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"p"}}]}},{"@value":"I_1","Description":{"@xml:lang":"en","#text":"Distributed reported data based on total exports pattern"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Distributed reported data based on total exports pattern"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"I_1"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"b"}}]}},{"@value":"I_2","Description":{"@xml:lang":"en","#text":"Evenly distributed reported data"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Evenly distributed reported data"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"I_2"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"d"}}]}},{"@value":"I_5","Description":{"@xml:lang":"en","#text":"Extrapolated from estimates for this month last year, with or without an exogenous extrapolation factor or estimates from this month year before last"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Extrapolated from estimates for this month last year, with or without an exogenous extrapolation factor or estimates from this month year before last"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"I_5"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"x"}}]}},{"@value":"All Observation Statuses","Description":{"@xml:lang":"en","#text":"All Observation Statuses"},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"All Observation Statuses"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"All Observation Statuses"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Source Code","AnnotationText":{"@xml:lang":"en","#text":"All Observation Statuses"}}]}}]},{"@id":"CL_TIME_FORMAT","@agencyID":"IMF","@version":"1.0","@isFinal":"true","@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/structure","Name":{"@xml:lang":"en","#text":"Time format"},"Description":{"@xml:lang":"en","#text":"Time formats based on ISO 8601."},"Code":[{"@value":"P1Y","Description":{"@xml:lang":"en","#text":"Annual"}},{"@value":"P6M","Description":{"@xml:lang":"en","#text":"Bi-annual"}},{"@value":"P3M","Description":{"@xml:lang":"en","#text":"Quarterly"}},{"@value":"P1M","Description":{"@xml:lang":"en","#text":"Monthly"}},{"@value":"P7D","Description":{"@xml:lang":"en","#text":"Weekly"}},{"@value":"P1D","Description":{"@xml:lang":"en","#text":"Daily"}}]}]},"Concepts":{"ConceptScheme":{"@id":"DOT","@agencyID":"IMF","@version":"1.0","@isFinal":"true","@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/structure","Concept":[{"@id":"OBS_VALUE","@agencyID":"IMF","@version":"1.0","Name":{"@xml:lang":"en","#text":"Value"},"TextFormat":{"@textType":"Double"}},{"@id":"UNIT_MULT","@agencyID":"IMF","@version":"1.0","Name":{"@xml:lang":"en","#text":"Scale"}},{"@id":"TIME_FORMAT","@agencyID":"IMF","@version":"1.0","Name":{"@xml:lang":"en","#text":"Time format"},"Description":{"@xml:lang":"en","#text":"Time formats based on ISO 8601."}},{"@id":"FREQ","@agencyID":"IMF","@version":"1.0","Name":{"@xml:lang":"en","#text":"Frequency"}},{"@id":"REF_AREA","@agencyID":"IMF","@version":"1.0","Name":{"@xml:lang":"en","#text":"Reference Area"}},{"@id":"INDICATOR","@agencyID":"IMF","@version":"1.0","Name":{"@xml:lang":"en","#text":"Indicator"}},{"@id":"COUNTERPART_AREA","@agencyID":"IMF","@version":"1.0","Name":{"@xml:lang":"en","#text":"Counterpart Reference Area"}},{"@id":"TIME_PERIOD","@agencyID":"IMF","@version":"1.0","Name":{"@xml:lang":"en","#text":"Date"},"TextFormat":{"@textType":"DateTime"}},{"@id":"CMT","@agencyID":"IMF","@version":"1.0","Name":{"@xml:lang":"en","#text":"Exception explanation"},"TextFormat":{"@textType":"String"}},{"@id":"OBS_STATUS","@agencyID":"IMF","@version":"1.0","Name":{"@xml:lang":"en","#text":"Observation Status (incl. Confidentiality)"}}]}},"KeyFamilies":{"KeyFamily":{"@id":"DOT","@agencyID":"IMF","@version":"1.0","@isFinal":"true","@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/structure","Components":{"Dimension":[{"@conceptRef":"FREQ","@conceptVersion":"1.0","@conceptSchemeRef":"DOT","@conceptSchemeAgency":"IMF","@codelist":"CL_FREQ","@codelistVersion":"1.0","@codelistAgency":"IMF","@isFrequencyDimension":"true"},{"@conceptRef":"REF_AREA","@conceptVersion":"1.0","@conceptSchemeRef":"DOT","@conceptSchemeAgency":"IMF","@codelist":"CL_AREA_DOT","@codelistVersion":"1.0","@codelistAgency":"IMF"},{"@conceptRef":"INDICATOR","@conceptVersion":"1.0","@conceptSchemeRef":"DOT","@conceptSchemeAgency":"IMF","@codelist":"CL_INDICATOR_DOT","@codelistVersion":"1.0","@codelistAgency":"IMF"},{"@conceptRef":"COUNTERPART_AREA","@conceptVersion":"1.0","@conceptSchemeRef":"DOT","@conceptSchemeAgency":"IMF","@codelist":"CL_COUNTERPART_AREA_DOT","@codelistVersion":"1.0","@codelistAgency":"IMF"}],"TimeDimension":{"@conceptRef":"TIME_PERIOD","@conceptVersion":"1.0","@conceptSchemeRef":"DOT","@conceptSchemeAgency":"IMF"},"PrimaryMeasure":{"@conceptRef":"OBS_VALUE","@conceptVersion":"1.0","@conceptSchemeRef":"DOT","@conceptSchemeAgency":"IMF","TextFormat":{"@textType":"Double"}},"Attribute":[{"@conceptRef":"UNIT_MULT","@conceptVersion":"1.0","@conceptSchemeRef":"DOT","@conceptSchemeAgency":"IMF","@codelist":"CL_UNIT_MULT","@codelistVersion":"1.0","@codelistAgency":"IMF","@attachmentLevel":"Series","@assignmentStatus":"Mandatory"},{"@conceptRef":"CMT","@conceptVersion":"1.0","@conceptSchemeRef":"DOT","@conceptSchemeAgency":"IMF","@attachmentLevel":"Observation","@assignmentStatus":"Conditional","TextFormat":{"@textType":"String"}},{"@conceptRef":"OBS_STATUS","@conceptVersion":"1.0","@conceptSchemeRef":"DOT","@conceptSchemeAgency":"IMF","@codelist":"CL_OBS_STATUS_DOT","@codelistVersion":"1.0","@codelistAgency":"IMF","@attachmentLevel":"Observation","@assignmentStatus":"Conditional"},{"@conceptRef":"TIME_FORMAT","@conceptVersion":"1.0","@conceptSchemeRef":"DOT","@conceptSchemeAgency":"IMF","@codelist":"CL_TIME_FORMAT","@codelistVersion":"1.0","@codelistAgency":"IMF","@attachmentLevel":"Series","@assignmentStatus":"Mandatory","@isTimeFormat":"true"}]},"Annotations":{"Annotation":[{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Latest Update Date","AnnotationText":{"@xml:lang":"en","#text":"07/26/2016"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Name","AnnotationText":{"@xml:lang":"en","#text":"Direction of Trade Statistics (DOTS)"}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Temporal Coverage","AnnotationText":{"@xml:lang":"en","#text":"Monthly and quarterly data are available starting 1960. Annual data are available starting 1947."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Geographic Coverage","AnnotationText":{"@xml:lang":"en","#text":"DOTS covers 184 countries, the world, and major areas."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Methodology","AnnotationText":{"@xml:lang":"en","#text":"Guide to Direction of Trade Statistics, 1993. See Documents tab."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Definition","AnnotationText":{"@xml:lang":"en","#text":"The \u003cB\u003eDirection of Trade Statistics (DOTS)\u003c/B\u003e presents current figures on the value of merchandise exports and imports disaggregated according to a country\u0027s primary trading partners. Area and world aggregates are included in the display of trade flows between major areas of the world. Reported data is supplemented by estimates whenever such data is not available or current. Imports are reported on a cost, insurance and freight (CIF) basis and exports are reported on a free on board (FOB) basis, with the exception of a few countries for which imports are also available FOB. Time series data includes estimates derived from reports of partner countries for non-reporting and slow-reporting countries."}},{"@xmlns":"http://www.SDMX.org/resources/SDMXML/schemas/v2_0/common","AnnotationTitle":"Code","AnnotationText":{"@xml:lang":"en","#text":"DOT"}}]}}}}} \ No newline at end of file diff --git a/dlstats/tests/resources/xml_samples.py b/dlstats/tests/resources/xml_samples.py index c9d2f1c..7baa5f8 100644 --- a/dlstats/tests/resources/xml_samples.py +++ b/dlstats/tests/resources/xml_samples.py @@ -90,47 +90,6 @@ def filepath(provider, filename): }, } -DSD_IMF_DOT = { - "provider": "IMF", - "filepaths": { - "datastructure": filepath("imf", "imf-dot-datastructure-2.0.xml"), - }, - "dataset_code": "DOT", - "dataset_name": "Direction of Trade Statistics (DOTS)", - "dsd_id": "DOT", - "dsd_ids": ["DOT"], - "dataflow_keys": ['DOT'], - "is_completed": True, - "categories_key": "DOT", - "categories_parents": None, - "categories_root": None, - "concept_keys": ['CMT', 'FREQ', 'INDICATOR', 'OBS_STATUS', 'REF_AREA', 'SCALE', 'SERIESCODE', 'TIME_FORMAT', 'TIME_PERIOD', 'VALUE', 'VIS_AREA'], - "codelist_keys": ['CL_COUNTERPART_COUNTRY|DOT', 'CL_COUNTRY|DOT', 'CL_FREQ|DOT', 'CL_INDICATOR|DOT', 'CL_OBJ60433867|DOT', 'CL_TIME_FORMAT|DOT', 'CL_UNIT_MULT|DOT'], - "codelist_count": { - "CL_COUNTERPART_COUNTRY|DOT": 311, - "CL_COUNTRY|DOT": 248, - "CL_FREQ|DOT": 3, - "CL_INDICATOR|DOT": 4, - "CL_OBJ60433867|DOT": 13, - "CL_TIME_FORMAT|DOT": 6, - "CL_UNIT_MULT|DOT": 31, - }, - "dimension_keys": ['REF_AREA', 'INDICATOR', 'VIS_AREA', 'FREQ', 'SCALE'], - "dimension_count": { - "REF_AREA": 248, - "INDICATOR": 4, - "VIS_AREA": 311, - "FREQ": 3, - "SCALE": 31, - }, - "attribute_keys": ['SERIESCODE', 'CMT', 'OBS_STATUS', 'TIME_FORMAT'], - "attribute_count": { - "SERIESCODE": 0, - "CMT": 0, - "OBS_STATUS": 13, - "TIME_FORMAT": 6, - }, -} DSD_DESTATIS = { "provider": "DESTATIS", @@ -531,53 +490,6 @@ def filepath(provider, filename): } } -DATA_IMF_DOT = { - "filepath": os.path.abspath(os.path.join(RESOURCES_DIR, "imf", "imf-dot-data-compact-2.0.xml")), - "klass": "XMLCompactData_2_0_IMF", - "DSD": DSD_IMF_DOT, - "kwargs": { - "provider_name": "IMF", - "dataset_code": "DOT", - "dsd_filepath": DSD_IMF_DOT["filepaths"]["datastructure"], - "dsd_id": DSD_IMF_DOT["dsd_id"] - }, - "series_accept": 2, - "series_reject_frequency": 0, - "series_reject_empty": 0, - "series_all_values": 126, - "series_key_first": 'DOT.122TMG_CIF_USD369.A', - "series_key_last": 'DOT.122TXG_FOB_USD369.A', - "series_sample": { - "provider_name": "IMF", - "dataset_code": "DOT", - 'key': 'DOT.122TMG_CIF_USD369.A', - 'name': 'Austria - Goods, Value of Imports, Cost, Insurance, Freight (CIF), US Dollars - Trinidad and Tobago - Annual - Millions', - 'frequency': 'A', - 'last_update': None, - 'first_value': { - 'value': '0', - 'period': '1950', - 'attributes': {}, - }, - 'last_value': { - 'value': '69900', - 'period': '2014', - 'attributes': {}, - }, - 'dimensions': { - 'FREQ': 'A', - 'REF_AREA': '122', - 'INDICATOR': 'TMG_CIF_USD', - 'VIS_AREA': '369', - 'SCALE': '6' - }, - 'attributes': { - 'SERIESCODE': '122TMG_CIF_USD369.A', - 'TIME_FORMAT': 'P1Y' - }, - } -} - DATA_DESTATIS = { "filepath": os.path.abspath(os.path.join(RESOURCES_DIR, "destatis", "destatis-data-compact-2.0.xml")), "klass": "XMLCompactData_2_0_DESTATIS", diff --git a/dlstats/tests/resources/xmlutils/imf/imf-dot-data-compact-2.0.xml b/dlstats/tests/resources/xmlutils/imf/imf-dot-data-compact-2.0.xml deleted file mode 100644 index eea944c..0000000 --- a/dlstats/tests/resources/xmlutils/imf/imf-dot-data-compact-2.0.xml +++ /dev/null @@ -1,148 +0,0 @@ - - -
- - false - 2016-02-17T16:33:36 - - IMF - - http://www.imf.org - + 1 (202) 623-6220 - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
\ No newline at end of file diff --git a/dlstats/tests/resources/xmlutils/imf/imf-dot-datastructure-2.0.xml b/dlstats/tests/resources/xmlutils/imf/imf-dot-datastructure-2.0.xml deleted file mode 100644 index a0b58e6..0000000 --- a/dlstats/tests/resources/xmlutils/imf/imf-dot-datastructure-2.0.xml +++ /dev/null @@ -1,26623 +0,0 @@ - - -
- - false - 2016-02-17T16:32:25 - - IMF - - http://www.imf.org - + 1 (202) 623-6220 - - -
- - - Scale - - Units - - - Name - Units - - - System Measure - Scale - - - System Scale (number) - 1 - - - DMX Scale - Unit - - - Exponent - 0 - - - - - Hundreds - - - Name - Hundreds - - - System Measure - Scale - - - System Scale (number) - 100 - - - DMX Scale - Hundred - - - Exponent - 2 - - - - - Thousands - - - Name - Thousands - - - System Measure - Scale - - - System Scale (number) - 1000 - - - DMX Scale - Thousand - - - Exponent - 3 - - - - - Millions - - - Name - Millions - - - System Measure - Scale - - - System Scale (number) - 1000000 - - - DMX Scale - Million - - - Exponent - 6 - - - - - Billions - - - Name - Billions - - - System Measure - Scale - - - System Scale (number) - 1000000000 - - - DMX Scale - Billion - - - Exponent - 9 - - - - - Trillions - - - Name - Trillions - - - System Measure - Scale - - - System Scale (number) - 1000000000000 - - - DMX Scale - Trillion - - - Exponent - 12 - - - - - Quadrillionths - - - Name - Quadrillionths - - - System Measure - Scale - - - System Scale (number) - 1E-15 - - - DMX Scale - Quadrillionth - - - Exponent - -15 - - - - - Hundred Trillionths - - - Name - Hundred Trillionths - - - System Measure - Scale - - - System Scale (number) - 1E-14 - - - DMX Scale - Hundred Trillionth - - - Exponent - -14 - - - - - Ten Trillionths - - - Name - Ten Trillionths - - - System Measure - Scale - - - System Scale (number) - 1E-13 - - - DMX Scale - Ten Trillionth - - - Exponent - -13 - - - - - Trillionths - - - Name - Trillionths - - - System Measure - Scale - - - System Scale (number) - 1E-12 - - - DMX Scale - Trillionth - - - Exponent - -12 - - - - - Hundred Billionths - - - Name - Hundred Billionths - - - System Measure - Scale - - - System Scale (number) - 1E-11 - - - DMX Scale - Hundred Billionth - - - Exponent - -11 - - - - - Ten Billionths - - - Name - Ten Billionths - - - System Measure - Scale - - - System Scale (number) - 1E-10 - - - DMX Scale - Ten Billionth - - - Exponent - -10 - - - - - Billionths - - - Name - Billionths - - - System Measure - Scale - - - System Scale (number) - 1E-09 - - - DMX Scale - Billionth - - - Exponent - -9 - - - - - Hundred Millionths - - - Name - Hundred Millionths - - - System Measure - Scale - - - System Scale (number) - 1E-08 - - - DMX Scale - Hundred Millionth - - - Exponent - -8 - - - - - Ten Millionths - - - Name - Ten Millionths - - - System Measure - Scale - - - System Scale (number) - 1E-07 - - - DMX Scale - Ten Millionth - - - Exponent - -7 - - - - - Millionths - - - Name - Millionths - - - System Measure - Scale - - - System Scale (number) - 1E-06 - - - DMX Scale - Millionth - - - Exponent - -6 - - - - - Hundred Thousandths - - - Name - Hundred Thousandths - - - System Measure - Scale - - - System Scale (number) - 1E-05 - - - DMX Scale - Hundred Thousandth - - - Exponent - -5 - - - - - Ten Thousandths - - - Name - Ten Thousandths - - - System Measure - Scale - - - System Scale (number) - 0.0001 - - - DMX Scale - Ten Thousandth - - - Exponent - -4 - - - - - Thousandths - - - Name - Thousandths - - - System Measure - Scale - - - System Scale (number) - 0.001 - - - DMX Scale - Thousandth - - - Exponent - -3 - - - - - Hundredths - - - Name - Hundredths - - - System Measure - Scale - - - System Scale (number) - 0.01 - - - DMX Scale - Hundredth - - - Exponent - -2 - - - - - Tenths - - - Name - Tenths - - - System Measure - Scale - - - System Scale (number) - 0.1 - - - DMX Scale - Tenth - - - Exponent - -1 - - - - - Tens - - - Name - Tens - - - System Measure - Scale - - - System Scale (number) - 10 - - - DMX Scale - Ten - - - Exponent - 1 - - - - - Ten Thousands - - - Name - Ten Thousands - - - System Measure - Scale - - - System Scale (number) - 10000 - - - DMX Scale - Ten Thousand - - - Exponent - 4 - - - - - Hundred Thousands - - - Name - Hundred Thousands - - - System Measure - Scale - - - System Scale (number) - 100000 - - - DMX Scale - Hundred Thousand - - - Exponent - 5 - - - - - Ten Millions - - - Name - Ten Millions - - - System Measure - Scale - - - System Scale (number) - 10000000 - - - DMX Scale - Ten Million - - - Exponent - 7 - - - - - Hundred Millions - - - Name - Hundred Millions - - - System Measure - Scale - - - System Scale (number) - 100000000 - - - DMX Scale - Hundred Million - - - Exponent - 8 - - - - - Ten Billions - - - Name - Ten Billions - - - System Measure - Scale - - - System Scale (number) - 10000000000 - - - DMX Scale - Ten Billion - - - Exponent - 10 - - - - - Hundred Billions - - - Name - Hundred Billions - - - System Measure - Scale - - - System Scale (number) - 100000000000 - - - DMX Scale - Hundred Billion - - - Exponent - 11 - - - - - Ten Trillions - - - Name - Ten Trillions - - - System Measure - Scale - - - System Scale (number) - 10000000000000 - - - DMX Scale - Ten Trillion - - - Exponent - 13 - - - - - Hundred Trillions - - - Name - Hundred Trillions - - - System Measure - Scale - - - System Scale (number) - 100000000000000 - - - DMX Scale - Hundred Trillion - - - Exponent - 14 - - - - - Quadrillions - - - Name - Quadrillions - - - System Measure - Scale - - - System Scale (number) - 1E+15 - - - DMX Scale - Quadrillion - - - Exponent - 15 - - - - - - Frequency - Frequency - - Annual - - - Quarterly - - - Monthly - - - - Direction of Trade Statistics (DOTS) Country - - Afghanistan, Islamic Republic of - - - Name - Afghanistan, Islamic Republic of - - - Code - 512 - - - Source Code - 512 - - - Short Name - Afghanistan, I.R. of - - - Full Name - Afghanistan, Islamic Republic of - - - SDMX Code - AF - - - ISO 2 Code - AF - - - ISO 3 Code - AFG - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=AFG target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Afghanistan - - - - - Albania - - - Name - Albania - - - Code - 914 - - - Source Code - 914 - - - Short Name - Albania - - - Full Name - Albania - - - SDMX Code - AL - - - ISO 2 Code - AL - - - ISO 3 Code - ALB - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=ALB target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Albania - - - - - Algeria - - - Name - Algeria - - - Code - 612 - - - Source Code - 612 - - - Short Name - Algeria - - - Full Name - Algeria - - - SDMX Code - DZ - - - ISO 2 Code - DZ - - - ISO 3 Code - DZA - - - Data Quality Assurance Framework - - - - SDMX Name - Algeria - - - - - American Samoa - - - Name - American Samoa - - - Code - 859 - - - Source Code - 859 - - - Short Name - American Samoa - - - Full Name - American Samoa - - - SDMX Code - AS - - - ISO 2 Code - AS - - - ISO 3 Code - ASM - - - Data Quality Assurance Framework - - - - SDMX Name - American Samoa - - - - - Angola - - - Name - Angola - - - Code - 614 - - - Source Code - 614 - - - Short Name - Angola - - - Full Name - Angola - - - SDMX Code - AO - - - ISO 2 Code - AO - - - ISO 3 Code - AGO - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=AGO target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Angola - - - - - Antigua and Barbuda - - - Name - Antigua and Barbuda - - - Code - 311 - - - Source Code - 311 - - - Short Name - Antigua and Barbuda - - - Full Name - Antigua and Barbuda - - - SDMX Code - AG - - - ISO 2 Code - AG - - - ISO 3 Code - ATG - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=ATG target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Antigua and Barbuda - - - - - Argentina - - - Name - Argentina - - - Code - 213 - - - Source Code - 213 - - - Short Name - Argentina - - - Full Name - Argentina - - - SDMX Code - AR - - - ISO 2 Code - AR - - - ISO 3 Code - ARG - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=ARG target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Argentina - - - - - Armenia, Republic of - - - Name - Armenia, Republic of - - - Code - 911 - - - Source Code - 911 - - - Short Name - Armenia - - - Full Name - Republic of Armenia - - - SDMX Code - AM - - - ISO 2 Code - AM - - - ISO 3 Code - ARM - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=ARM target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Armenia - - - - - Aruba - - - Name - Aruba - - - Code - 314 - - - Source Code - 314 - - - Short Name - Aruba - - - Full Name - Kingdom of the Netherlands—Aruba - - - SDMX Code - AW - - - ISO 2 Code - AW - - - ISO 3 Code - ABW - - - Data Quality Assurance Framework - - - - SDMX Name - Aruba - - - - - Australia - - - Name - Australia - - - Code - 193 - - - Source Code - 193 - - - Short Name - Australia - - - Full Name - Australia - - - SDMX Code - AU - - - ISO 2 Code - AU - - - ISO 3 Code - AUS - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=AUS target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Australia - - - - - Austria - - - Name - Austria - - - Code - 122 - - - Source Code - 122 - - - Short Name - Austria - - - Full Name - Austria - - - SDMX Code - AT - - - ISO 2 Code - AT - - - ISO 3 Code - AUT - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=AUT target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Austria - - - - - Azerbaijan, Republic of - - - Name - Azerbaijan, Republic of - - - Code - 912 - - - Source Code - 912 - - - Short Name - Azerbaijan, Rep. of - - - Full Name - Republic of Azerbaijan - - - SDMX Code - AZ - - - ISO 2 Code - AZ - - - ISO 3 Code - AZE - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=AZE target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Azerbaijan - - - - - Bahamas, The - - - Name - Bahamas, The - - - Code - 313 - - - Source Code - 313 - - - Short Name - Bahamas, The - - - Full Name - Bahamas, The - - - SDMX Code - BS - - - ISO 2 Code - BS - - - ISO 3 Code - BHS - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=BHS target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Bahamas - - - - - Bahrain, Kingdom of - - - Name - Bahrain, Kingdom of - - - Code - 419 - - - Source Code - 419 - - - Short Name - Bahrain, Kingdom of - - - Full Name - Bahrain, Kingdom of - - - SDMX Code - BH - - - ISO 2 Code - BH - - - ISO 3 Code - BHR - - - Data Quality Assurance Framework - - - - SDMX Name - Bahrain - - - - - Bangladesh - - - Name - Bangladesh - - - Code - 513 - - - Source Code - 513 - - - Short Name - Bangladesh - - - Full Name - Bangladesh - - - SDMX Code - BD - - - ISO 2 Code - BD - - - ISO 3 Code - BGD - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=BGD target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Bangladesh - - - - - Barbados - - - Name - Barbados - - - Code - 316 - - - Source Code - 316 - - - Short Name - Barbados - - - Full Name - Barbados - - - SDMX Code - BB - - - ISO 2 Code - BB - - - ISO 3 Code - BRB - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=BRB target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Barbados - - - - - Belarus - - - Name - Belarus - - - Code - 913 - - - Source Code - 913 - - - Short Name - Belarus - - - Full Name - Republic of Belarus - - - SDMX Code - BY - - - ISO 2 Code - BY - - - ISO 3 Code - BLR - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=BLR target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Belarus - - - - - Belgium - - - Name - Belgium - - - Code - 124 - - - Source Code - 124 - - - Short Name - Belgium - - - Full Name - Belgium - - - SDMX Code - BE - - - ISO 2 Code - BE - - - ISO 3 Code - BEL - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=BEL target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Belgium - - - - - Belgium-Luxembourg - - - Name - Belgium-Luxembourg - - - Code - 126 - - - Source Code - 126 - - - Short Name - Belgium-Luxembourg - - - Full Name - Belgium-Luxembourg - - - SDMX Code - R1 - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - Belgo-Luxembourg Economic Union - - - - - Belize - - - Name - Belize - - - Code - 339 - - - Source Code - 339 - - - Short Name - Belize - - - Full Name - Belize - - - SDMX Code - BZ - - - ISO 2 Code - BZ - - - ISO 3 Code - BLZ - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=BLZ target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Belize - - - - - Benin - - - Name - Benin - - - Code - 638 - - - Source Code - 638 - - - Short Name - Benin - - - Full Name - Benin - - - SDMX Code - BJ - - - ISO 2 Code - BJ - - - ISO 3 Code - BEN - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=BEN target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Benin - - - - - Bermuda - - - Name - Bermuda - - - Code - 319 - - - Source Code - 319 - - - Short Name - Bermuda - - - Full Name - Bermuda - - - SDMX Code - BM - - - ISO 2 Code - BM - - - ISO 3 Code - BMU - - - Data Quality Assurance Framework - - - - SDMX Name - Bermuda - - - - - Bolivia - - - Name - Bolivia - - - Code - 218 - - - Source Code - 218 - - - Short Name - Bolivia - - - Full Name - Bolivia - - - SDMX Code - BO - - - ISO 2 Code - BO - - - ISO 3 Code - BOL - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=BOL target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Bolivia - - - - - Bosnia and Herzegovina - - - Name - Bosnia and Herzegovina - - - Code - 963 - - - Source Code - 963 - - - Short Name - Bosnia & Herzegovina - - - Full Name - Bosnia and Herzegovina - - - SDMX Code - BA - - - ISO 2 Code - BA - - - ISO 3 Code - BIH - - - Data Quality Assurance Framework - - - - SDMX Name - Bosnia and Herzegovina - - - - - Brazil - - - Name - Brazil - - - Code - 223 - - - Source Code - 223 - - - Short Name - Brazil - - - Full Name - Brazil - - - SDMX Code - BR - - - ISO 2 Code - BR - - - ISO 3 Code - BRA - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=BRA target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Brazil - - - - - Brunei Darussalam - - - Name - Brunei Darussalam - - - Code - 516 - - - Source Code - 516 - - - Short Name - Brunei Darussalam - - - Full Name - Brunei Darussalam - - - SDMX Code - BN - - - ISO 2 Code - BN - - - ISO 3 Code - BRN - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=BRN target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Brunei Darussalam - - - - - Bulgaria - - - Name - Bulgaria - - - Code - 918 - - - Source Code - 918 - - - Short Name - Bulgaria - - - Full Name - Bulgaria - - - SDMX Code - BG - - - ISO 2 Code - BG - - - ISO 3 Code - BGR - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=BGR target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Bulgaria - - - - - Burkina Faso - - - Name - Burkina Faso - - - Code - 748 - - - Source Code - 748 - - - Short Name - Burkina Faso - - - Full Name - Burkina Faso - - - SDMX Code - BF - - - ISO 2 Code - BF - - - ISO 3 Code - BFA - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=BFA target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Burkina Faso - - - - - Burundi - - - Name - Burundi - - - Code - 618 - - - Source Code - 618 - - - Short Name - Burundi - - - Full Name - Burundi - - - SDMX Code - BI - - - ISO 2 Code - BI - - - ISO 3 Code - BDI - - - Data Quality Assurance Framework - - - - SDMX Name - Burundi - - - - - Cambodia - - - Name - Cambodia - - - Code - 522 - - - Source Code - 522 - - - Short Name - Cambodia - - - Full Name - Cambodia - - - SDMX Code - KH - - - ISO 2 Code - KH - - - ISO 3 Code - KHM - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=KHM target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Cambodia - - - - - Cameroon - - - Name - Cameroon - - - Code - 622 - - - Source Code - 622 - - - Short Name - Cameroon - - - Full Name - Cameroon - - - SDMX Code - CM - - - ISO 2 Code - CM - - - ISO 3 Code - CMR - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=CMR target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Cameroon - - - - - Canada - - - Name - Canada - - - Code - 156 - - - Source Code - 156 - - - Short Name - Canada - - - Full Name - Canada - - - SDMX Code - CA - - - ISO 2 Code - CA - - - ISO 3 Code - CAN - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=CAN target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Canada - - - - - Cape Verde - - - Name - Cape Verde - - - Code - 624 - - - Source Code - 624 - - - Short Name - Cabo Verde - - - Full Name - Cabo Verde - - - SDMX Code - CV - - - ISO 2 Code - CV - - - ISO 3 Code - CPV - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=CPV target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Cabo Verde - - - - - Central African Republic - - - Name - Central African Republic - - - Code - 626 - - - Source Code - 626 - - - Short Name - Central African Rep. - - - Full Name - Central African Republic - - - SDMX Code - CF - - - ISO 2 Code - CF - - - ISO 3 Code - CAF - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=CAF target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Central African Republic - - - - - Chad - - - Name - Chad - - - Code - 628 - - - Source Code - 628 - - - Short Name - Chad - - - Full Name - Chad - - - SDMX Code - TD - - - ISO 2 Code - TD - - - ISO 3 Code - TCD - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=TCD target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Chad - - - - - Chile - - - Name - Chile - - - Code - 228 - - - Source Code - 228 - - - Short Name - Chile - - - Full Name - Chile - - - SDMX Code - CL - - - ISO 2 Code - CL - - - ISO 3 Code - CHL - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=CHL target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Chile - - - - - China, P.R.: Hong Kong - - - Name - China, P.R.: Hong Kong - - - Code - 532 - - - Source Code - 532 - - - Short Name - China,P.R.:Hong Kong - - - Full Name - China, P.R.: Hong Kong - - - SDMX Code - HK - - - ISO 2 Code - HK - - - ISO 3 Code - HKG - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=HKG target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Hong Kong - - - - - China, P.R.: Macao - - - Name - China, P.R.: Macao - - - Code - 546 - - - Source Code - 546 - - - Short Name - China,P.R.:Macao - - - Full Name - China, P.R.: Macao - - - SDMX Code - MO - - - ISO 2 Code - MO - - - ISO 3 Code - MAC - - - Data Quality Assurance Framework - - - - SDMX Name - Macao - - - - - China, P.R.: Mainland - - - Name - China, P.R.: Mainland - - - Code - 924 - - - Source Code - 924 - - - Short Name - China,P.R.: Mainland - - - Full Name - People’s Republic of China - - - SDMX Code - CN - - - ISO 2 Code - CN - - - ISO 3 Code - CHN - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=CHN target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - China - - - - - Colombia - - - Name - Colombia - - - Code - 233 - - - Source Code - 233 - - - Short Name - Colombia - - - Full Name - Colombia - - - SDMX Code - CO - - - ISO 2 Code - CO - - - ISO 3 Code - COL - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=COL target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Colombia - - - - - Comoros - - - Name - Comoros - - - Code - 632 - - - Source Code - 632 - - - Short Name - Comoros - - - Full Name - Federal Islamic Republic of the Comoros - - - SDMX Code - KM - - - ISO 2 Code - KM - - - ISO 3 Code - COM - - - Data Quality Assurance Framework - - - - SDMX Name - Comoros - - - - - Congo, Democratic Republic of - - - Name - Congo, Democratic Republic of - - - Code - 636 - - - Source Code - 636 - - - Short Name - Congo, Dem. Rep. of - - - Full Name - Democratic Republic of the Congo - - - SDMX Code - CD - - - ISO 2 Code - CD - - - ISO 3 Code - COD - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=COD target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Congo, the Democratic Republic of the - - - - - Congo, Republic of - - - Name - Congo, Republic of - - - Code - 634 - - - Source Code - 634 - - - Short Name - Congo, Republic of - - - Full Name - Republic of Congo - - - SDMX Code - CG - - - ISO 2 Code - CG - - - ISO 3 Code - COG - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=COG target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Congo - - - - - Costa Rica - - - Name - Costa Rica - - - Code - 238 - - - Source Code - 238 - - - Short Name - Costa Rica - - - Full Name - Costa Rica - - - SDMX Code - CR - - - ISO 2 Code - CR - - - ISO 3 Code - CRI - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=CRI target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Costa Rica - - - - - Cote d'Ivoire - - - Name - Cote d'Ivoire - - - Code - 662 - - - Source Code - 662 - - - Short Name - Côte d'Ivoire - - - Full Name - Cote d'Ivoire - - - SDMX Code - CI - - - ISO 2 Code - CI - - - ISO 3 Code - CIV - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=CIV target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Cote d`Ivoire - - - - - Croatia - - - Name - Croatia - - - Code - 960 - - - Source Code - 960 - - - Short Name - Croatia - - - Full Name - Republic of Croatia - - - SDMX Code - HR - - - ISO 2 Code - HR - - - ISO 3 Code - HRV - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=HRV target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Croatia - - - - - Cuba - - - Name - Cuba - - - Code - 928 - - - Source Code - 928 - - - Short Name - Cuba - - - Full Name - Cuba - - - SDMX Code - CU - - - ISO 2 Code - CU - - - ISO 3 Code - CUB - - - Data Quality Assurance Framework - - - - SDMX Name - Cuba - - - - - Cyprus - - - Name - Cyprus - - - Code - 423 - - - Source Code - 423 - - - Short Name - Cyprus - - - Full Name - Cyprus - - - SDMX Code - CY - - - ISO 2 Code - CY - - - ISO 3 Code - CYP - - - Data Quality Assurance Framework - - - - SDMX Name - Cyprus - - - - - Czech Republic - - - Name - Czech Republic - - - Code - 935 - - - Source Code - 935 - - - Short Name - Czech Republic - - - Full Name - Czech Republic - - - SDMX Code - CZ - - - ISO 2 Code - CZ - - - ISO 3 Code - CZE - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=CZE target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Czech Republic - - - - - Czechoslovakia - - - Name - Czechoslovakia - - - Code - 934 - - - Source Code - 934 - - - Short Name - Czechoslovakia - - - Full Name - Czechoslovakia - - - SDMX Code - CSH - - - ISO 2 Code - - - - ISO 3 Code - CSK - - - Data Quality Assurance Framework - - - - SDMX Name - Former Czechoslovakia - - - - - Czechoslovakia not specified - - - Name - Czechoslovakia not specified - - - Code - 937 - - - Source Code - 937 - - - Short Name - Czechoslovakia n.s. - - - Full Name - Czechoslovakia not specified - - - SDMX Code - CSH9 - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Denmark - - - Name - Denmark - - - Code - 128 - - - Source Code - 128 - - - Short Name - Denmark - - - Full Name - Denmark - - - SDMX Code - DK - - - ISO 2 Code - DK - - - ISO 3 Code - DNK - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=DNK target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Denmark - - - - - Djibouti - - - Name - Djibouti - - - Code - 611 - - - Source Code - 611 - - - Short Name - Djibouti - - - Full Name - Djibouti - - - SDMX Code - DJ - - - ISO 2 Code - DJ - - - ISO 3 Code - DJI - - - Data Quality Assurance Framework - - - - SDMX Name - Djibouti - - - - - Dominica - - - Name - Dominica - - - Code - 321 - - - Source Code - 321 - - - Short Name - Dominica - - - Full Name - Dominica - - - SDMX Code - DM - - - ISO 2 Code - DM - - - ISO 3 Code - DMA - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=DMA target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Dominica - - - - - Dominican Republic - - - Name - Dominican Republic - - - Code - 243 - - - Source Code - 243 - - - Short Name - Dominican Republic - - - Full Name - Dominican Republic - - - SDMX Code - DO - - - ISO 2 Code - DO - - - ISO 3 Code - DOM - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=DOM target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Dominican Republic - - - - - Eastern Germany - - - Name - Eastern Germany - - - Code - 938 - - - Source Code - 938 - - - Short Name - Eastern Germany - - - Full Name - Eastern Germany - - - SDMX Code - DE2 - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - East Germany - - - - - Ecuador - - - Name - Ecuador - - - Code - 248 - - - Source Code - 248 - - - Short Name - Ecuador - - - Full Name - Ecuador - - - SDMX Code - EC - - - ISO 2 Code - EC - - - ISO 3 Code - ECU - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=ECU target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Ecuador - - - - - Egypt - - - Name - Egypt - - - Code - 469 - - - Source Code - 469 - - - Short Name - Egypt - - - Full Name - Arab Republic of Egypt - - - SDMX Code - EG - - - ISO 2 Code - EG - - - ISO 3 Code - EGY - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=EGY target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Egypt - - - - - El Salvador - - - Name - El Salvador - - - Code - 253 - - - Source Code - 253 - - - Short Name - El Salvador - - - Full Name - El Salvador - - - SDMX Code - SV - - - ISO 2 Code - SV - - - ISO 3 Code - SLV - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=SLV target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - El Salvador - - - - - EMERGING & DEVELOPING EUROPE - - - Name - EMERGING & DEVELOPING EUROPE - - - Code - 903 - - - Source Code - 903 - - - Short Name - Emer. & Dev. Europe - - - Full Name - EMERGING & DEVELOPING EUROPE - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Equatorial Guinea - - - Name - Equatorial Guinea - - - Code - 642 - - - Source Code - 642 - - - Short Name - Equatorial Guinea - - - Full Name - Equatorial Guinea - - - SDMX Code - GQ - - - ISO 2 Code - GQ - - - ISO 3 Code - GNQ - - - Data Quality Assurance Framework - - - - SDMX Name - Equatorial Guinea - - - - - Estonia - - - Name - Estonia - - - Code - 939 - - - Source Code - 939 - - - Short Name - Estonia - - - Full Name - Republic of Estonia - - - SDMX Code - EE - - - ISO 2 Code - EE - - - ISO 3 Code - EST - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=EST target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Estonia - - - - - Ethiopia - - - Name - Ethiopia - - - Code - 644 - - - Source Code - 644 - - - Short Name - Ethiopia - - - Full Name - Ethiopia - - - SDMX Code - ET - - - ISO 2 Code - ET - - - ISO 3 Code - ETH - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=ETH target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Ethiopia - - - - - Falkland Islands - - - Name - Falkland Islands - - - Code - 323 - - - Source Code - 323 - - - Short Name - Falkland Islands - - - Full Name - Falkland Islands - - - SDMX Code - FK - - - ISO 2 Code - FK - - - ISO 3 Code - FLK - - - Data Quality Assurance Framework - - - - SDMX Name - Falkland Islands (Malvinas) - - - - - Faroe Islands - - - Name - Faroe Islands - - - Code - 816 - - - Source Code - 816 - - - Short Name - Faroe Islands - - - Full Name - Faroe Islands - - - SDMX Code - FO - - - ISO 2 Code - FO - - - ISO 3 Code - FRO - - - Data Quality Assurance Framework - - - - SDMX Name - Faroe Islands - - - - - Fiji - - - Name - Fiji - - - Code - 819 - - - Source Code - 819 - - - Short Name - Fiji - - - Full Name - Fiji - - - SDMX Code - FJ - - - ISO 2 Code - FJ - - - ISO 3 Code - FJI - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=FJI target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Fiji - - - - - Finland - - - Name - Finland - - - Code - 172 - - - Source Code - 172 - - - Short Name - Finland - - - Full Name - Finland - - - SDMX Code - FI - - - ISO 2 Code - FI - - - ISO 3 Code - FIN - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=FIN target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Finland - - - - - France - - - Name - France - - - Code - 132 - - - Source Code - 132 - - - Short Name - France - - - Full Name - France - - - SDMX Code - FR - - - ISO 2 Code - FR - - - ISO 3 Code - FRA - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=FRA target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - France - - - - - French Territories: French Polynesia - - - Name - French Territories: French Polynesia - - - Code - 887 - - - Source Code - 887 - - - Short Name - French Polynesia - - - Full Name - French Polynesia - - - SDMX Code - PF - - - ISO 2 Code - PF - - - ISO 3 Code - PYF - - - Data Quality Assurance Framework - - - - SDMX Name - French Polynesia - - - - - French Territories: New Caledonia - - - Name - French Territories: New Caledonia - - - Code - 839 - - - Source Code - 839 - - - Short Name - New Caledonia - - - Full Name - New Caledonia - - - SDMX Code - NC - - - ISO 2 Code - NC - - - ISO 3 Code - NCL - - - Data Quality Assurance Framework - - - - SDMX Name - New Caledonia - - - - - Gabon - - - Name - Gabon - - - Code - 646 - - - Source Code - 646 - - - Short Name - Gabon - - - Full Name - Gabon - - - SDMX Code - GA - - - ISO 2 Code - GA - - - ISO 3 Code - GAB - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=GAB target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Gabon - - - - - Gambia, The - - - Name - Gambia, The - - - Code - 648 - - - Source Code - 648 - - - Short Name - Gambia, The - - - Full Name - Gambia, The - - - SDMX Code - GM - - - ISO 2 Code - GM - - - ISO 3 Code - GMB - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=GMB target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Gambia - - - - - Georgia - - - Name - Georgia - - - Code - 915 - - - Source Code - 915 - - - Short Name - Georgia - - - Full Name - Georgia - - - SDMX Code - GE - - - ISO 2 Code - GE - - - ISO 3 Code - GEO - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=GEO target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Georgia - - - - - Germany - - - Name - Germany - - - Code - 134 - - - Source Code - 134 - - - Short Name - Germany - - - Full Name - Germany - - - SDMX Code - DE - - - ISO 2 Code - DE - - - ISO 3 Code - DEU - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=DEU target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Germany - - - - - Ghana - - - Name - Ghana - - - Code - 652 - - - Source Code - 652 - - - Short Name - Ghana - - - Full Name - Ghana - - - SDMX Code - GH - - - ISO 2 Code - GH - - - ISO 3 Code - GHA - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=GHA target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Ghana - - - - - Gibraltar - - - Name - Gibraltar - - - Code - 823 - - - Source Code - 823 - - - Short Name - Gibraltar - - - Full Name - Gibraltar - - - SDMX Code - GI - - - ISO 2 Code - GI - - - ISO 3 Code - GIB - - - Data Quality Assurance Framework - - - - SDMX Name - Gibraltar - - - - - Greece - - - Name - Greece - - - Code - 174 - - - Source Code - 174 - - - Short Name - Greece - - - Full Name - Greece - - - SDMX Code - GR - - - ISO 2 Code - GR - - - ISO 3 Code - GRC - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=GRC target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Greece - - - - - Greenland - - - Name - Greenland - - - Code - 326 - - - Source Code - 326 - - - Short Name - Greenland - - - Full Name - Greenland - - - SDMX Code - GL - - - ISO 2 Code - GL - - - ISO 3 Code - GRL - - - Data Quality Assurance Framework - - - - SDMX Name - Greenland - - - - - Grenada - - - Name - Grenada - - - Code - 328 - - - Source Code - 328 - - - Short Name - Grenada - - - Full Name - Grenada - - - SDMX Code - GD - - - ISO 2 Code - GD - - - ISO 3 Code - GRD - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=GRD target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Grenada - - - - - Guadeloupe - - - Name - Guadeloupe - - - Code - 329 - - - Source Code - 329 - - - Short Name - Guadeloupe - - - Full Name - Guadeloupe - - - SDMX Code - GP - - - ISO 2 Code - GP - - - ISO 3 Code - GLP - - - Data Quality Assurance Framework - - - - SDMX Name - Guadeloupe - - - - - Guam - - - Name - Guam - - - Code - 829 - - - Source Code - 829 - - - Short Name - Guam - - - Full Name - Guam - - - SDMX Code - GU - - - ISO 2 Code - GU - - - ISO 3 Code - GUM - - - Data Quality Assurance Framework - - - - SDMX Name - Guam - - - - - Guatemala - - - Name - Guatemala - - - Code - 258 - - - Source Code - 258 - - - Short Name - Guatemala - - - Full Name - Guatemala - - - SDMX Code - GT - - - ISO 2 Code - GT - - - ISO 3 Code - GTM - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=GTM target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Guatemala - - - - - Guiana, French - - - Name - Guiana, French - - - Code - 333 - - - Source Code - 333 - - - Short Name - Guiana, French - - - Full Name - Guiana, French - - - SDMX Code - GF - - - ISO 2 Code - GF - - - ISO 3 Code - GUF - - - Data Quality Assurance Framework - - - - SDMX Name - French Guiana - - - - - Guinea - - - Name - Guinea - - - Code - 656 - - - Source Code - 656 - - - Short Name - Guinea - - - Full Name - Guinea - - - SDMX Code - GN - - - ISO 2 Code - GN - - - ISO 3 Code - GIN - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=GIN target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Guinea - - - - - Guinea-Bissau - - - Name - Guinea-Bissau - - - Code - 654 - - - Source Code - 654 - - - Short Name - Guinea-Bissau - - - Full Name - Guinea-Bissau - - - SDMX Code - GW - - - ISO 2 Code - GW - - - ISO 3 Code - GNB - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=GNB target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Guinea-Bissau - - - - - Guyana - - - Name - Guyana - - - Code - 336 - - - Source Code - 336 - - - Short Name - Guyana - - - Full Name - Guyana - - - SDMX Code - GY - - - ISO 2 Code - GY - - - ISO 3 Code - GUY - - - Data Quality Assurance Framework - - - - SDMX Name - Guyana - - - - - Haiti - - - Name - Haiti - - - Code - 263 - - - Source Code - 263 - - - Short Name - Haiti - - - Full Name - Haiti - - - SDMX Code - HT - - - ISO 2 Code - HT - - - ISO 3 Code - HTI - - - Data Quality Assurance Framework - - - - SDMX Name - Haiti - - - - - Honduras - - - Name - Honduras - - - Code - 268 - - - Source Code - 268 - - - Short Name - Honduras - - - Full Name - Honduras - - - SDMX Code - HN - - - ISO 2 Code - HN - - - ISO 3 Code - HND - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=HND target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Honduras - - - - - Hungary - - - Name - Hungary - - - Code - 944 - - - Source Code - 944 - - - Short Name - Hungary - - - Full Name - Hungary - - - SDMX Code - HU - - - ISO 2 Code - HU - - - ISO 3 Code - HUN - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=HUN target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Hungary - - - - - Iceland - - - Name - Iceland - - - Code - 176 - - - Source Code - 176 - - - Short Name - Iceland - - - Full Name - Iceland - - - SDMX Code - IS - - - ISO 2 Code - IS - - - ISO 3 Code - ISL - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=ISL target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Iceland - - - - - India - - - Name - India - - - Code - 534 - - - Source Code - 534 - - - Short Name - India - - - Full Name - India - - - SDMX Code - IN - - - ISO 2 Code - IN - - - ISO 3 Code - IND - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=IND target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - India - - - - - Indonesia - - - Name - Indonesia - - - Code - 536 - - - Source Code - 536 - - - Short Name - Indonesia - - - Full Name - Indonesia - - - SDMX Code - ID - - - ISO 2 Code - ID - - - ISO 3 Code - IDN - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=IDN target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Indonesia - - - - - Iran, Islamic Republic of - - - Name - Iran, Islamic Republic of - - - Code - 429 - - - Source Code - 429 - - - Short Name - Iran, I.R. of - - - Full Name - Iran, Islamic Republic of - - - SDMX Code - IR - - - ISO 2 Code - IR - - - ISO 3 Code - IRN - - - Data Quality Assurance Framework - - - - SDMX Name - Iran, Islamic Republic of - - - - - Iraq - - - Name - Iraq - - - Code - 433 - - - Source Code - 433 - - - Short Name - Iraq - - - Full Name - Iraq - - - SDMX Code - IQ - - - ISO 2 Code - IQ - - - ISO 3 Code - IRQ - - - Data Quality Assurance Framework - - - - SDMX Name - Iraq - - - - - Ireland - - - Name - Ireland - - - Code - 178 - - - Source Code - 178 - - - Short Name - Ireland - - - Full Name - Ireland - - - SDMX Code - IE - - - ISO 2 Code - IE - - - ISO 3 Code - IRL - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=IRL target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Ireland - - - - - Israel - - - Name - Israel - - - Code - 436 - - - Source Code - 436 - - - Short Name - Israel - - - Full Name - Israel - - - SDMX Code - IL - - - ISO 2 Code - IL - - - ISO 3 Code - ISR - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=ISR target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Israel - - - - - Italy - - - Name - Italy - - - Code - 136 - - - Source Code - 136 - - - Short Name - Italy - - - Full Name - Italy - - - SDMX Code - IT - - - ISO 2 Code - IT - - - ISO 3 Code - ITA - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=ITA target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Italy - - - - - Jamaica - - - Name - Jamaica - - - Code - 343 - - - Source Code - 343 - - - Short Name - Jamaica - - - Full Name - Jamaica - - - SDMX Code - JM - - - ISO 2 Code - JM - - - ISO 3 Code - JAM - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=JAM target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Jamaica - - - - - Japan - - - Name - Japan - - - Code - 158 - - - Source Code - 158 - - - Short Name - Japan - - - Full Name - Japan - - - SDMX Code - JP - - - ISO 2 Code - JP - - - ISO 3 Code - JPN - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=JPN target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Japan - - - - - Jordan - - - Name - Jordan - - - Code - 439 - - - Source Code - 439 - - - Short Name - Jordan - - - Full Name - Jordan - - - SDMX Code - JO - - - ISO 2 Code - JO - - - ISO 3 Code - JOR - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=JOR target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Jordan - - - - - Kazakhstan - - - Name - Kazakhstan - - - Code - 916 - - - Source Code - 916 - - - Short Name - Kazakhstan - - - Full Name - Republic of Kazakhstan - - - SDMX Code - KZ - - - ISO 2 Code - KZ - - - ISO 3 Code - KAZ - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=KAZ target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Kazakhstan - - - - - Kenya - - - Name - Kenya - - - Code - 664 - - - Source Code - 664 - - - Short Name - Kenya - - - Full Name - Kenya - - - SDMX Code - KE - - - ISO 2 Code - KE - - - ISO 3 Code - KEN - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=KEN target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Kenya - - - - - Kiribati - - - Name - Kiribati - - - Code - 826 - - - Source Code - 826 - - - Short Name - Kiribati - - - Full Name - Kiribati - - - SDMX Code - KI - - - ISO 2 Code - KI - - - ISO 3 Code - KIR - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=KIR target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Kiribati - - - - - Korea, Democratic People's Rep. of - - - Name - Korea, Democratic People's Rep. of - - - Code - 954 - - - Source Code - 954 - - - Short Name - North Korea - - - Full Name - Korea, Democratic People's Republic of - - - SDMX Code - KP - - - ISO 2 Code - KP - - - ISO 3 Code - PRK - - - Data Quality Assurance Framework - - - - SDMX Name - Korea, Democratic People`s Republic of - - - - - Korea, Republic of - - - Name - Korea, Republic of - - - Code - 542 - - - Source Code - 542 - - - Short Name - Korea, Republic of - - - Full Name - Korea, Republic of - - - SDMX Code - KR - - - ISO 2 Code - KR - - - ISO 3 Code - KOR - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=KOR target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Korea, Republic of - - - - - Kosovo, Republic of - - - Name - Kosovo, Republic of - - - Code - 967 - - - Source Code - 967 - - - Short Name - Kosovo - - - Full Name - Kosovo - - - SDMX Code - XK - - - ISO 2 Code - KO - - - ISO 3 Code - UVK - - - Data Quality Assurance Framework - - - - SDMX Name - Kosovo - - - - - Kuwait - - - Name - Kuwait - - - Code - 443 - - - Source Code - 443 - - - Short Name - Kuwait - - - Full Name - Kuwait - - - SDMX Code - KW - - - ISO 2 Code - KW - - - ISO 3 Code - KWT - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=KWT target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Kuwait - - - - - Kyrgyz Republic - - - Name - Kyrgyz Republic - - - Code - 917 - - - Source Code - 917 - - - Short Name - Kyrgyz Republic - - - Full Name - Kyrgyz Republic - - - SDMX Code - KG - - - ISO 2 Code - KG - - - ISO 3 Code - KGZ - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=KGZ target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Kyrgyzstan - - - - - Lao People's Democratic Republic - - - Name - Lao People's Democratic Republic - - - Code - 544 - - - Source Code - 544 - - - Short Name - Lao People's Dem.Rep - - - Full Name - Lao People's Democratic Republic - - - SDMX Code - LA - - - ISO 2 Code - LA - - - ISO 3 Code - LAO - - - Data Quality Assurance Framework - - - - SDMX Name - Lao People`s Democratic Republic - - - - - Latvia - - - Name - Latvia - - - Code - 941 - - - Source Code - 941 - - - Short Name - Latvia - - - Full Name - Republic of Latvia - - - SDMX Code - LV - - - ISO 2 Code - LV - - - ISO 3 Code - LVA - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=LVA target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Latvia - - - - - Lebanon - - - Name - Lebanon - - - Code - 446 - - - Source Code - 446 - - - Short Name - Lebanon - - - Full Name - Lebanon - - - SDMX Code - LB - - - ISO 2 Code - LB - - - ISO 3 Code - LBN - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=LBN target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Lebanon - - - - - Liberia - - - Name - Liberia - - - Code - 668 - - - Source Code - 668 - - - Short Name - Liberia - - - Full Name - Liberia - - - SDMX Code - LR - - - ISO 2 Code - LR - - - ISO 3 Code - LBR - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=LBR target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Liberia - - - - - Libya - - - Name - Libya - - - Code - 672 - - - Source Code - 672 - - - Short Name - Libya - - - Full Name - Socialist People’s Libyan Arab Jamahiriya - - - SDMX Code - LY - - - ISO 2 Code - LY - - - ISO 3 Code - LBY - - - Data Quality Assurance Framework - - - - SDMX Name - Libya - - - - - Lithuania - - - Name - Lithuania - - - Code - 946 - - - Source Code - 946 - - - Short Name - Lithuania - - - Full Name - Republic of Lithuania - - - SDMX Code - LT - - - ISO 2 Code - LT - - - ISO 3 Code - LTU - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=LTU target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Lithuania - - - - - Luxembourg - - - Name - Luxembourg - - - Code - 137 - - - Source Code - 137 - - - Short Name - Luxembourg - - - Full Name - Luxembourg - - - SDMX Code - LU - - - ISO 2 Code - LU - - - ISO 3 Code - LUX - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=LUX target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Luxembourg - - - - - Macedonia, FYR - - - Name - Macedonia, FYR - - - Code - 962 - - - Source Code - 962 - - - Short Name - Macedonia, FYR - - - Full Name - Macedonia, former Yugoslav Republic of - - - SDMX Code - MK - - - ISO 2 Code - MK - - - ISO 3 Code - MKD - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=MKD target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Macedonia, The Former Yugoslav Republic of - - - - - Madagascar - - - Name - Madagascar - - - Code - 674 - - - Source Code - 674 - - - Short Name - Madagascar - - - Full Name - Republic of Madagascar   - - - SDMX Code - MG - - - ISO 2 Code - MG - - - ISO 3 Code - MDG - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=MDG target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Madagascar - - - - - Malawi - - - Name - Malawi - - - Code - 676 - - - Source Code - 676 - - - Short Name - Malawi - - - Full Name - Malawi - - - SDMX Code - MW - - - ISO 2 Code - MW - - - ISO 3 Code - MWI - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=MWI target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Malawi - - - - - Malaysia - - - Name - Malaysia - - - Code - 548 - - - Source Code - 548 - - - Short Name - Malaysia - - - Full Name - Malaysia - - - SDMX Code - MY - - - ISO 2 Code - MY - - - ISO 3 Code - MYS - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=MYS target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Malaysia - - - - - Malaysia-Singapore - - - Name - Malaysia-Singapore - - - Code - 552 - - - Source Code - 552 - - - Short Name - Malaysia-Singapore - - - Full Name - Malaysia-Singapore - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Malaysia, West - - - Name - Malaysia, West - - - Code - 554 - - - Source Code - 554 - - - Short Name - Malaysia, West - - - Full Name - Malaysia, West - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Maldives - - - Name - Maldives - - - Code - 556 - - - Source Code - 556 - - - Short Name - Maldives - - - Full Name - Maldives - - - SDMX Code - MV - - - ISO 2 Code - MV - - - ISO 3 Code - MDV - - - Data Quality Assurance Framework - - - - SDMX Name - Maldives - - - - - Mali - - - Name - Mali - - - Code - 678 - - - Source Code - 678 - - - Short Name - Mali - - - Full Name - Mali - - - SDMX Code - ML - - - ISO 2 Code - ML - - - ISO 3 Code - MLI - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=MLI target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Mali - - - - - Malta - - - Name - Malta - - - Code - 181 - - - Source Code - 181 - - - Short Name - Malta - - - Full Name - Malta - - - SDMX Code - MT - - - ISO 2 Code - MT - - - ISO 3 Code - MLT - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=MLT target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Malta - - - - - Martinique - - - Name - Martinique - - - Code - 349 - - - Source Code - 349 - - - Short Name - Martinique - - - Full Name - Martinique - - - SDMX Code - MQ - - - ISO 2 Code - MQ - - - ISO 3 Code - MTQ - - - Data Quality Assurance Framework - - - - SDMX Name - Martinique - - - - - Mauritania - - - Name - Mauritania - - - Code - 682 - - - Source Code - 682 - - - Short Name - Mauritania - - - Full Name - Islamic Republic of Mauritania - - - SDMX Code - MR - - - ISO 2 Code - MR - - - ISO 3 Code - MRT - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=MRT target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Mauritania - - - - - Mauritius - - - Name - Mauritius - - - Code - 684 - - - Source Code - 684 - - - Short Name - Mauritius - - - Full Name - Republic of Mauritius - - - SDMX Code - MU - - - ISO 2 Code - MU - - - ISO 3 Code - MUS - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=MUS target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Mauritius - - - - - Mexico - - - Name - Mexico - - - Code - 273 - - - Source Code - 273 - - - Short Name - Mexico - - - Full Name - Mexico - - - SDMX Code - MX - - - ISO 2 Code - MX - - - ISO 3 Code - MEX - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=MEX target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Mexico - - - - - Moldova - - - Name - Moldova - - - Code - 921 - - - Source Code - 921 - - - Short Name - Moldova - - - Full Name - Republic of Moldova - - - SDMX Code - MD - - - ISO 2 Code - MD - - - ISO 3 Code - MDA - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=MDA target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Moldova, Republic of - - - - - Mongolia - - - Name - Mongolia - - - Code - 948 - - - Source Code - 948 - - - Short Name - Mongolia - - - Full Name - Mongolia - - - SDMX Code - MN - - - ISO 2 Code - MN - - - ISO 3 Code - MNG - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=MNG target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Mongolia - - - - - Montenegro - - - Name - Montenegro - - - Code - 943 - - - Source Code - 943 - - - Short Name - Montenegro - - - Full Name - Montenegro - - - SDMX Code - ME - - - ISO 2 Code - ME - - - ISO 3 Code - MNE - - - Data Quality Assurance Framework - - - - SDMX Name - Montenegro - - - - - Morocco - - - Name - Morocco - - - Code - 686 - - - Source Code - 686 - - - Short Name - Morocco - - - Full Name - Morocco - - - SDMX Code - MA - - - ISO 2 Code - MA - - - ISO 3 Code - MAR - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=MAR target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Morocco - - - - - Mozambique - - - Name - Mozambique - - - Code - 688 - - - Source Code - 688 - - - Short Name - Mozambique - - - Full Name - Republic of Mozambique - - - SDMX Code - MZ - - - ISO 2 Code - MZ - - - ISO 3 Code - MOZ - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=MOZ target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Mozambique - - - - - Myanmar - - - Name - Myanmar - - - Code - 518 - - - Source Code - 518 - - - Short Name - Myanmar - - - Full Name - Myanmar - - - SDMX Code - MM - - - ISO 2 Code - MM - - - ISO 3 Code - MMR - - - Data Quality Assurance Framework - - - - SDMX Name - Myanmar - - - - - Nauru - - - Name - Nauru - - - Code - 836 - - - Source Code - 836 - - - Short Name - Nauru - - - Full Name - Nauru - - - SDMX Code - NR - - - ISO 2 Code - NR - - - ISO 3 Code - NRU - - - Data Quality Assurance Framework - - - - SDMX Name - Nauru - - - - - Nepal - - - Name - Nepal - - - Code - 558 - - - Source Code - 558 - - - Short Name - Nepal - - - Full Name - Nepal - - - SDMX Code - NP - - - ISO 2 Code - NP - - - ISO 3 Code - NPL - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=NPL target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Nepal - - - - - Netherlands - - - Name - Netherlands - - - Code - 138 - - - Source Code - 138 - - - Short Name - Netherlands - - - Full Name - Kingdom of the Netherlands—Netherlands - - - SDMX Code - NL - - - ISO 2 Code - NL - - - ISO 3 Code - NLD - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=NLD target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Netherlands - - - - - Netherlands Antilles - - - Name - Netherlands Antilles - - - Code - 353 - - - Source Code - 353 - - - Short Name - Netherlands Antilles - - - Full Name - Kingdom of the Netherlands—Netherlands Antilles - - - SDMX Code - AN - - - ISO 2 Code - AN - - - ISO 3 Code - ANT - - - Data Quality Assurance Framework - - - - SDMX Name - Netherlands Antilles - - - - - New Zealand - - - Name - New Zealand - - - Code - 196 - - - Source Code - 196 - - - Short Name - New Zealand - - - Full Name - New Zealand - - - SDMX Code - NZ - - - ISO 2 Code - NZ - - - ISO 3 Code - NZL - - - Data Quality Assurance Framework - - - - SDMX Name - New Zealand - - - - - Nicaragua - - - Name - Nicaragua - - - Code - 278 - - - Source Code - 278 - - - Short Name - Nicaragua - - - Full Name - Nicaragua - - - SDMX Code - NI - - - ISO 2 Code - NI - - - ISO 3 Code - NIC - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=NIC target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Nicaragua - - - - - Niger - - - Name - Niger - - - Code - 692 - - - Source Code - 692 - - - Short Name - Niger - - - Full Name - Niger - - - SDMX Code - NE - - - ISO 2 Code - NE - - - ISO 3 Code - NER - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=NER target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Niger - - - - - Nigeria - - - Name - Nigeria - - - Code - 694 - - - Source Code - 694 - - - Short Name - Nigeria - - - Full Name - Nigeria - - - SDMX Code - NG - - - ISO 2 Code - NG - - - ISO 3 Code - NGA - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=NGA target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Nigeria - - - - - Norway - - - Name - Norway - - - Code - 142 - - - Source Code - 142 - - - Short Name - Norway - - - Full Name - Norway - - - SDMX Code - NO - - - ISO 2 Code - NO - - - ISO 3 Code - NOR - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=NOR target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Norway - - - - - Oman - - - Name - Oman - - - Code - 449 - - - Source Code - 449 - - - Short Name - Oman - - - Full Name - Oman - - - SDMX Code - OM - - - ISO 2 Code - OM - - - ISO 3 Code - OMN - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=OMN target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Oman - - - - - Pakistan - - - Name - Pakistan - - - Code - 564 - - - Source Code - 564 - - - Short Name - Pakistan - - - Full Name - Pakistan - - - SDMX Code - PK - - - ISO 2 Code - PK - - - ISO 3 Code - PAK - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=PAK target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Pakistan - - - - - Panama - - - Name - Panama - - - Code - 283 - - - Source Code - 283 - - - Short Name - Panama - - - Full Name - Panama - - - SDMX Code - PA - - - ISO 2 Code - PA - - - ISO 3 Code - PAN - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=PAN target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Panama - - - - - Papua New Guinea - - - Name - Papua New Guinea - - - Code - 853 - - - Source Code - 853 - - - Short Name - Papua New Guinea - - - Full Name - Papua New Guinea - - - SDMX Code - PG - - - ISO 2 Code - PG - - - ISO 3 Code - PNG - - - Data Quality Assurance Framework - - - - SDMX Name - Papua New Guinea - - - - - Paraguay - - - Name - Paraguay - - - Code - 288 - - - Source Code - 288 - - - Short Name - Paraguay - - - Full Name - Paraguay - - - SDMX Code - PY - - - ISO 2 Code - PY - - - ISO 3 Code - PRY - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=PRY target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Paraguay - - - - - Peru - - - Name - Peru - - - Code - 293 - - - Source Code - 293 - - - Short Name - Peru - - - Full Name - Peru - - - SDMX Code - PE - - - ISO 2 Code - PE - - - ISO 3 Code - PER - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=PER target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Peru - - - - - Philippines - - - Name - Philippines - - - Code - 566 - - - Source Code - 566 - - - Short Name - Philippines - - - Full Name - Philippines - - - SDMX Code - PH - - - ISO 2 Code - PH - - - ISO 3 Code - PHL - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=PHL target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Philippines - - - - - Poland - - - Name - Poland - - - Code - 964 - - - Source Code - 964 - - - Short Name - Poland - - - Full Name - Republic of Poland - - - SDMX Code - PL - - - ISO 2 Code - PL - - - ISO 3 Code - POL - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=POL target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Poland - - - - - Portugal - - - Name - Portugal - - - Code - 182 - - - Source Code - 182 - - - Short Name - Portugal - - - Full Name - Portugal - - - SDMX Code - PT - - - ISO 2 Code - PT - - - ISO 3 Code - PRT - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=PRT target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Portugal - - - - - Qatar - - - Name - Qatar - - - Code - 453 - - - Source Code - 453 - - - Short Name - Qatar - - - Full Name - Qatar - - - SDMX Code - QA - - - ISO 2 Code - QA - - - ISO 3 Code - QAT - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=QAT target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Qatar - - - - - Reunion - - - Name - Reunion - - - Code - 696 - - - Source Code - 696 - - - Short Name - Réunion - - - Full Name - Reunion - - - SDMX Code - RE - - - ISO 2 Code - RE - - - ISO 3 Code - REU - - - Data Quality Assurance Framework - - - - SDMX Name - Reunion - - - - - Romania - - - Name - Romania - - - Code - 968 - - - Source Code - 968 - - - Short Name - Romania - - - Full Name - Romania - - - SDMX Code - RO - - - ISO 2 Code - RO - - - ISO 3 Code - ROU - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=ROU target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Romania - - - - - Russian Federation - - - Name - Russian Federation - - - Code - 922 - - - Source Code - 922 - - - Short Name - Russian Federation - - - Full Name - Russian Federation - - - SDMX Code - RU - - - ISO 2 Code - RU - - - ISO 3 Code - RUS - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=RUS target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Russian Federation - - - - - Rwanda - - - Name - Rwanda - - - Code - 714 - - - Source Code - 714 - - - Short Name - Rwanda - - - Full Name - Rwanda - - - SDMX Code - RW - - - ISO 2 Code - RW - - - ISO 3 Code - RWA - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=RWA target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Rwanda - - - - - Saint Helena - - - Name - Saint Helena - - - Code - 856 - - - Source Code - 856 - - - Short Name - St. Helena - - - Full Name - Saint Helena - - - SDMX Code - SH - - - ISO 2 Code - SH - - - ISO 3 Code - SHN - - - Data Quality Assurance Framework - - - - SDMX Name - Saint Helena - - - - - Saint Pierre and Miquelon - - - Name - Saint Pierre and Miquelon - - - Code - 363 - - - Source Code - 363 - - - Short Name - St. Pierre-Miquelon - - - Full Name - Saint Pierre and Miquelon - - - SDMX Code - PM - - - ISO 2 Code - PM - - - ISO 3 Code - SPM - - - Data Quality Assurance Framework - - - - SDMX Name - Saint Pierre and Miquelon - - - - - Samoa - - - Name - Samoa - - - Code - 862 - - - Source Code - 862 - - - Short Name - Samoa - - - Full Name - Samoa - - - SDMX Code - WS - - - ISO 2 Code - WS - - - ISO 3 Code - WSM - - - Data Quality Assurance Framework - - - - SDMX Name - Samoa - - - - - Sao Tome and Principe - - - Name - Sao Tome and Principe - - - Code - 716 - - - Source Code - 716 - - - Short Name - São Tomé & Príncipe - - - Full Name - Sao Tome and Principe - - - SDMX Code - ST - - - ISO 2 Code - ST - - - ISO 3 Code - STP - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=STP target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Sao Tome and Principe - - - - - Saudi Arabia - - - Name - Saudi Arabia - - - Code - 456 - - - Source Code - 456 - - - Short Name - Saudi Arabia - - - Full Name - Saudi Arabia - - - SDMX Code - SA - - - ISO 2 Code - SA - - - ISO 3 Code - SAU - - - Data Quality Assurance Framework - - - - SDMX Name - Saudi Arabia - - - - - Senegal - - - Name - Senegal - - - Code - 722 - - - Source Code - 722 - - - Short Name - Senegal - - - Full Name - Senegal - - - SDMX Code - SN - - - ISO 2 Code - SN - - - ISO 3 Code - SEN - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=SEN target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Senegal - - - - - Serbia and Montenegro - - - Name - Serbia and Montenegro - - - Code - 965 - - - Source Code - 965 - - - Short Name - Serbia & Montenegro - - - Full Name - Serbia and Montenegro - - - SDMX Code - CS - - - ISO 2 Code - CS - - - ISO 3 Code - SCG - - - Data Quality Assurance Framework - - - - SDMX Name - Serbia and Montenegro - - - - - Serbia, Republic of - - - Name - Serbia, Republic of - - - Code - 942 - - - Source Code - 942 - - - Short Name - Serbia, Republic of - - - Full Name - Serbia, Republic of - - - SDMX Code - RS - - - ISO 2 Code - RS - - - ISO 3 Code - SRB - - - Data Quality Assurance Framework - - - - SDMX Name - Serbia - - - - - Seychelles - - - Name - Seychelles - - - Code - 718 - - - Source Code - 718 - - - Short Name - Seychelles - - - Full Name - Republic of Seychelles - - - SDMX Code - SC - - - ISO 2 Code - SC - - - ISO 3 Code - SYC - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=SYC target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Seychelles - - - - - Sierra Leone - - - Name - Sierra Leone - - - Code - 724 - - - Source Code - 724 - - - Short Name - Sierra Leone - - - Full Name - Sierra Leone - - - SDMX Code - SL - - - ISO 2 Code - SL - - - ISO 3 Code - SLE - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=SLE target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Sierra Leone - - - - - Singapore - - - Name - Singapore - - - Code - 576 - - - Source Code - 576 - - - Short Name - Singapore - - - Full Name - Singapore - - - SDMX Code - SG - - - ISO 2 Code - SG - - - ISO 3 Code - SGP - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=SGP target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Singapore - - - - - Slovak Republic - - - Name - Slovak Republic - - - Code - 936 - - - Source Code - 936 - - - Short Name - Slovak Republic - - - Full Name - Slovak Republic - - - SDMX Code - SK - - - ISO 2 Code - SK - - - ISO 3 Code - SVK - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=SVK target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Slovakia - - - - - Slovenia - - - Name - Slovenia - - - Code - 961 - - - Source Code - 961 - - - Short Name - Slovenia - - - Full Name - Republic of Slovenia - - - SDMX Code - SI - - - ISO 2 Code - SI - - - ISO 3 Code - SVN - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=SVN target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Slovenia - - - - - Solomon Islands - - - Name - Solomon Islands - - - Code - 813 - - - Source Code - 813 - - - Short Name - Solomon Islands - - - Full Name - Solomon Islands - - - SDMX Code - SB - - - ISO 2 Code - SB - - - ISO 3 Code - SLB - - - Data Quality Assurance Framework - - - - SDMX Name - Solomon Islands - - - - - Somalia - - - Name - Somalia - - - Code - 726 - - - Source Code - 726 - - - Short Name - Somalia - - - Full Name - Somalia - - - SDMX Code - SO - - - ISO 2 Code - SO - - - ISO 3 Code - SOM - - - Data Quality Assurance Framework - - - - SDMX Name - Somalia - - - - - South Africa - - - Name - South Africa - - - Code - 199 - - - Source Code - 199 - - - Short Name - South Africa - - - Full Name - South Africa - - - SDMX Code - ZA - - - ISO 2 Code - ZA - - - ISO 3 Code - ZAF - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=ZAF target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - South Africa - - - - - Spain - - - Name - Spain - - - Code - 184 - - - Source Code - 184 - - - Short Name - Spain - - - Full Name - Spain - - - SDMX Code - ES - - - ISO 2 Code - ES - - - ISO 3 Code - ESP - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=ESP target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Spain - - - - - Sri Lanka - - - Name - Sri Lanka - - - Code - 524 - - - Source Code - 524 - - - Short Name - Sri Lanka - - - Full Name - Sri Lanka - - - SDMX Code - LK - - - ISO 2 Code - LK - - - ISO 3 Code - LKA - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=LKA target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Sri Lanka - - - - - St. Kitts and Nevis - - - Name - St. Kitts and Nevis - - - Code - 361 - - - Source Code - 361 - - - Short Name - St. Kitts and Nevis - - - Full Name - St. Kitts and Nevis - - - SDMX Code - KN - - - ISO 2 Code - KN - - - ISO 3 Code - KNA - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=KNA target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Saint Kitts and Nevis - - - - - St. Lucia - - - Name - St. Lucia - - - Code - 362 - - - Source Code - 362 - - - Short Name - St. Lucia - - - Full Name - St. Lucia - - - SDMX Code - LC - - - ISO 2 Code - LC - - - ISO 3 Code - LCA - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=LCA target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Saint Lucia - - - - - St. Vincent and the Grenadines - - - Name - St. Vincent and the Grenadines - - - Code - 364 - - - Source Code - 364 - - - Short Name - St. Vincent & Grens. - - - Full Name - St. Vincent and the Grenadines - - - SDMX Code - VC - - - ISO 2 Code - VC - - - ISO 3 Code - VCT - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=VCT target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Saint Vincent and the Grenadines - - - - - Sudan - - - Name - Sudan - - - Code - 732 - - - Source Code - 732 - - - Short Name - Sudan - - - Full Name - Sudan - - - SDMX Code - SD - - - ISO 2 Code - SD - - - ISO 3 Code - SDN - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=SDN target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Sudan - - - - - Suriname - - - Name - Suriname - - - Code - 366 - - - Source Code - 366 - - - Short Name - Suriname - - - Full Name - Suriname - - - SDMX Code - SR - - - ISO 2 Code - SR - - - ISO 3 Code - SUR - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=SUR target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Suriname - - - - - Sweden - - - Name - Sweden - - - Code - 144 - - - Source Code - 144 - - - Short Name - Sweden - - - Full Name - Sweden - - - SDMX Code - SE - - - ISO 2 Code - SE - - - ISO 3 Code - SWE - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=SWE target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Sweden - - - - - Switzerland - - - Name - Switzerland - - - Code - 146 - - - Source Code - 146 - - - Short Name - Switzerland - - - Full Name - Switzerland - - - SDMX Code - CH - - - ISO 2 Code - CH - - - ISO 3 Code - CHE - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=CHE target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Switzerland - - - - - Syrian Arab Republic - - - Name - Syrian Arab Republic - - - Code - 463 - - - Source Code - 463 - - - Short Name - Syrian Arab Republic - - - Full Name - Syrian Arab Republic - - - SDMX Code - SY - - - ISO 2 Code - SY - - - ISO 3 Code - SYR - - - Data Quality Assurance Framework - - - - SDMX Name - Syrian Arab Republic - - - - - Taiwan Province of China - - - Name - Taiwan Province of China - - - Code - 528 - - - Source Code - 528 - - - Short Name - Taiwan Prov.of China - - - Full Name - Taiwan Province of China - - - SDMX Code - TW - - - ISO 2 Code - TW - - - ISO 3 Code - TWN - - - Data Quality Assurance Framework - - - - SDMX Name - Taiwan, Province of China - - - - - Tajikistan - - - Name - Tajikistan - - - Code - 923 - - - Source Code - 923 - - - Short Name - Tajikistan - - - Full Name - Republic of Tajikistan - - - SDMX Code - TJ - - - ISO 2 Code - TJ - - - ISO 3 Code - TJK - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=TJK target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Tajikistan - - - - - Tanzania - - - Name - Tanzania - - - Code - 738 - - - Source Code - 738 - - - Short Name - Tanzania - - - Full Name - Tanzania - - - SDMX Code - TZ - - - ISO 2 Code - TZ - - - ISO 3 Code - TZA - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=TZA target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Tanzania, United Republic of - - - - - Thailand - - - Name - Thailand - - - Code - 578 - - - Source Code - 578 - - - Short Name - Thailand - - - Full Name - Thailand - - - SDMX Code - TH - - - ISO 2 Code - TH - - - ISO 3 Code - THA - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=THA target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Thailand - - - - - Togo - - - Name - Togo - - - Code - 742 - - - Source Code - 742 - - - Short Name - Togo - - - Full Name - Togo - - - SDMX Code - TG - - - ISO 2 Code - TG - - - ISO 3 Code - TGO - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=TGO target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Togo - - - - - Tonga - - - Name - Tonga - - - Code - 866 - - - Source Code - 866 - - - Short Name - Tonga - - - Full Name - Tonga - - - SDMX Code - TO - - - ISO 2 Code - TO - - - ISO 3 Code - TON - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=TON target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Tonga - - - - - Trinidad and Tobago - - - Name - Trinidad and Tobago - - - Code - 369 - - - Source Code - 369 - - - Short Name - Trinidad and Tobago - - - Full Name - Trinidad and Tobago - - - SDMX Code - TT - - - ISO 2 Code - TT - - - ISO 3 Code - TTO - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=TTO target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Trinidad and Tobago - - - - - Tunisia - - - Name - Tunisia - - - Code - 744 - - - Source Code - 744 - - - Short Name - Tunisia - - - Full Name - Tunisia - - - SDMX Code - TN - - - ISO 2 Code - TN - - - ISO 3 Code - TUN - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=TUN target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Tunisia - - - - - Turkey - - - Name - Turkey - - - Code - 186 - - - Source Code - 186 - - - Short Name - Turkey - - - Full Name - Turkey - - - SDMX Code - TR - - - ISO 2 Code - TR - - - ISO 3 Code - TUR - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=TUR target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Turkey - - - - - Turkmenistan - - - Name - Turkmenistan - - - Code - 925 - - - Source Code - 925 - - - Short Name - Turkmenistan - - - Full Name - Turkmenistan - - - SDMX Code - TM - - - ISO 2 Code - TM - - - ISO 3 Code - TKM - - - Data Quality Assurance Framework - - - - SDMX Name - Turkmenistan - - - - - Tuvalu - - - Name - Tuvalu - - - Code - 869 - - - Source Code - 869 - - - Short Name - Tuvalu - - - Full Name - Tuvalu - - - SDMX Code - TV - - - ISO 2 Code - TV - - - ISO 3 Code - TUV - - - Data Quality Assurance Framework - - - - SDMX Name - Tuvalu - - - - - U.S.S.R. - - - Name - U.S.S.R. - - - Code - 974 - - - Source Code - 974 - - - Short Name - U.S.S.R. - - - Full Name - U.S.S.R. - - - SDMX Code - SUH - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - Former U.S.S.R. - - - - - U.S.S.R. not specified - - - Name - U.S.S.R. not specified - - - Code - 930 - - - Source Code - 930 - - - Short Name - U.S.S.R. n.s. - - - Full Name - U.S.S.R. not specified - - - SDMX Code - SUH9 - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Uganda - - - Name - Uganda - - - Code - 746 - - - Source Code - 746 - - - Short Name - Uganda - - - Full Name - Uganda - - - SDMX Code - UG - - - ISO 2 Code - UG - - - ISO 3 Code - UGA - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=UGA target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Uganda - - - - - Ukraine - - - Name - Ukraine - - - Code - 926 - - - Source Code - 926 - - - Short Name - Ukraine - - - Full Name - Ukraine - - - SDMX Code - UA - - - ISO 2 Code - UA - - - ISO 3 Code - UKR - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=UKR target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Ukraine - - - - - United Arab Emirates - - - Name - United Arab Emirates - - - Code - 466 - - - Source Code - 466 - - - Short Name - United Arab Emirates - - - Full Name - United Arab Emirates - - - SDMX Code - AE - - - ISO 2 Code - AE - - - ISO 3 Code - ARE - - - Data Quality Assurance Framework - - - - SDMX Name - United Arab Emirates - - - - - United Kingdom - - - Name - United Kingdom - - - Code - 112 - - - Source Code - 112 - - - Short Name - United Kingdom - - - Full Name - United Kingdom - - - SDMX Code - GB - - - ISO 2 Code - GB - - - ISO 3 Code - GBR - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=GBR target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - United Kingdom - - - - - United States - - - Name - United States - - - Code - 111 - - - Source Code - 111 - - - Short Name - United States - - - Full Name - United States - - - SDMX Code - US - - - ISO 2 Code - US - - - ISO 3 Code - USA - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=USA target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - United States - - - - - Uruguay - - - Name - Uruguay - - - Code - 298 - - - Source Code - 298 - - - Short Name - Uruguay - - - Full Name - Uruguay - - - SDMX Code - UY - - - ISO 2 Code - UY - - - ISO 3 Code - URY - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=URY target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Uruguay - - - - - Uzbekistan - - - Name - Uzbekistan - - - Code - 927 - - - Source Code - 927 - - - Short Name - Uzbekistan - - - Full Name - Republic of Uzbekistan - - - SDMX Code - UZ - - - ISO 2 Code - UZ - - - ISO 3 Code - UZB - - - Data Quality Assurance Framework - - - - SDMX Name - Uzbekistan - - - - - Vanuatu - - - Name - Vanuatu - - - Code - 846 - - - Source Code - 846 - - - Short Name - Vanuatu - - - Full Name - Vanuatu - - - SDMX Code - VU - - - ISO 2 Code - VU - - - ISO 3 Code - VUT - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=VUT target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Vanuatu - - - - - Venezuela, Republica Bolivariana de - - - Name - Venezuela, Republica Bolivariana de - - - Code - 299 - - - Source Code - 299 - - - Short Name - Venezuela, Rep. Bol. - - - Full Name - Venezuela, República Bolivariana de - - - SDMX Code - VE - - - ISO 2 Code - VE - - - ISO 3 Code - VEN - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=VEN target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Venezuela, Bolivarian Republic - - - - - Vietnam - - - Name - Vietnam - - - Code - 582 - - - Source Code - 582 - - - Short Name - Vietnam - - - Full Name - Vietnam - - - SDMX Code - VN - - - ISO 2 Code - VN - - - ISO 3 Code - VNM - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=VNM target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Viet Nam - - - - - Yemen Arab Rep. - - - Name - Yemen Arab Rep. - - - Code - 473 - - - Source Code - 473 - - - Short Name - Yemen Arab Rep. - - - Full Name - Yemen Arab Rep. - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - YMN - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Yemen, P.D. Rep. - - - Name - Yemen, P.D. Rep. - - - Code - 459 - - - Source Code - 459 - - - Short Name - Yemen, P.D. Rep. - - - Full Name - Yemen, P.D. Rep. - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - YMD - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Yemen, Republic of - - - Name - Yemen, Republic of - - - Code - 474 - - - Source Code - 474 - - - Short Name - Yemen, Republic of - - - Full Name - Yemen, Republic of - - - SDMX Code - YE - - - ISO 2 Code - YE - - - ISO 3 Code - YEM - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=YMN target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Yemen - - - - - Yugoslavia not specified - - - Name - Yugoslavia not specified - - - Code - 966 - - - Source Code - 966 - - - Short Name - Yugoslavia n.s. - - - Full Name - Yugoslavia not specified - - - SDMX Code - YUC9 - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Yugoslavia, SFR - - - Name - Yugoslavia, SFR - - - Code - 188 - - - Source Code - 188 - - - Short Name - Yugoslavia, SFR - - - Full Name - Yugoslavia, SFR - - - SDMX Code - YUC - - - ISO 2 Code - - - - ISO 3 Code - YUG - - - Data Quality Assurance Framework - - - - SDMX Name - Former Yugoslavia - - - - - Zambia - - - Name - Zambia - - - Code - 754 - - - Source Code - 754 - - - Short Name - Zambia - - - Full Name - Zambia - - - SDMX Code - ZM - - - ISO 2 Code - ZM - - - ISO 3 Code - ZMB - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=ZMB target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Zambia - - - - - Zimbabwe - - - Name - Zimbabwe - - - Code - 698 - - - Source Code - 698 - - - Short Name - Zimbabwe - - - Full Name - Zimbabwe - - - SDMX Code - ZW - - - ISO 2 Code - ZW - - - ISO 3 Code - ZWE - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=ZWE target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Zimbabwe - - - - - Advanced Economies - - - Name - Advanced Economies - - - Code - 110 - - - Source Code - 110 - - - Short Name - - - - Full Name - - - - SDMX Code - XR29 - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Africa - - - Name - Africa - - - Code - 605 - - - Source Code - 605 - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - E4 - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - All Countries - - - Name - All Countries - - - Code - All Countries - - - Source Code - All Countries - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - All Countries and Country Groups - - - Name - All Countries and Country Groups - - - Code - All Countries and Country Groups - - - Source Code - All Countries and Country Groups - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - All Country Groups - - - Name - All Country Groups - - - Code - All Country Groups - - - Source Code - All Country Groups - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - APEC - - - Name - APEC - - - Code - 050 - - - Source Code - 050 - - - Short Name - - - - Full Name - - - - SDMX Code - R16 - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - British Countries not specified - - - Name - British Countries not specified - - - Code - 893 - - - Source Code - 893 - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Central and eastern Europe - - - Name - Central and eastern Europe - - - Code - 904 - - - Source Code - 904 - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - CIS - - - Name - CIS - - - Code - 901 - - - Source Code - 901 - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Developing Asia - - - Name - Developing Asia - - - Code - 505 - - - Source Code - 505 - - - Short Name - - - - Full Name - - - - SDMX Code - XS25 - - - ISO 2 Code - F2 - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Developing Countries - - - Name - Developing Countries - - - Code - 202 - - - Source Code - 202 - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Developing Countries: Africa - - - Name - Developing Countries: Africa - - - Code - 607 - - - Source Code - 607 - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Developing Countries: Asia - - - Name - Developing Countries: Asia - - - Code - 507 - - - Source Code - 507 - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Developing Countries: Middle East - - - Name - Developing Countries: Middle East - - - Code - 407 - - - Source Code - 407 - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Developing Countries: Western Hemisphere - - - Name - Developing Countries: Western Hemisphere - - - Code - 207 - - - Source Code - 207 - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - DOTS Countries - - - Name - DOTS Countries - - - Code - DOTS countries - - - Source Code - DOTS countries - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Emerging and Developing Countries - - - Name - Emerging and Developing Countries - - - Code - 200 - - - Source Code - 200 - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Euro Area (WEO) - - - Name - Euro Area (WEO) - - - Code - 995 - - - Source Code - 995 - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Europe - - - Name - Europe - - - Code - 170 - - - Source Code - 170 - - - Short Name - - - - Full Name - - - - SDMX Code - E1 - - - ISO 2 Code - E1 - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - European Union - - - Name - European Union - - - Code - 998 - - - Source Code - 998 - - - Short Name - - - - Full Name - - - - SDMX Code - B0 - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Export earnings: fuel - - - Name - Export earnings: fuel - - - Code - 080 - - - Source Code - 080 - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Export earnings: nonfuel - - - Name - Export earnings: nonfuel - - - Code - 092 - - - Source Code - 092 - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - French Countries not specified - - - Name - French Countries not specified - - - Code - 896 - - - Source Code - 896 - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Industrial Countries - - - Name - Industrial Countries - - - Code - 101 - - - Source Code - 101 - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Middle East - - - Name - Middle East - - - Code - 405 - - - Source Code - 405 - - - Short Name - - - - Full Name - - - - SDMX Code - F97 - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Middle East and North Africa - - - Name - Middle East and North Africa - - - Code - 406 - - - Source Code - 406 - - - Short Name - - - - Full Name - - - - SDMX Code - F98 - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Middle East, North Africa, Afghanistan, and Pakistan - - - Name - Middle East, North Africa, Afghanistan, and Pakistan - - - Code - 440 - - - Source Code - 440 - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Non-Oil Develop. Countries - - - Name - Non-Oil Develop. Countries - - - Code - 201 - - - Source Code - 201 - - - Short Name - - - - Full Name - - - - SDMX Code - XR44 - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Oil Exporting Countries (STA) - - - Name - Oil Exporting Countries (STA) - - - Code - 999 - - - Source Code - 999 - - - Short Name - - - - Full Name - - - - SDMX Code - XR21 - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Other Countries n.i.e. - - - Name - Other Countries n.i.e. - - - Code - 910 - - - Source Code - 910 - - - Short Name - - - - Full Name - - - - SDMX Code - X88 - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - SACCA excluding South Africa - - - Name - SACCA excluding South Africa - - - Code - 608 - - - Source Code - 608 - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - South African Common Customs Area (SACCA) - - - Name - South African Common Customs Area (SACCA) - - - Code - 198 - - - Source Code - 198 - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Sub-Saharan Africa - - - Name - Sub-Saharan Africa - - - Code - 603 - - - Source Code - 603 - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Western Hemisphere - - - Name - Western Hemisphere - - - Code - 205 - - - Source Code - 205 - - - Short Name - - - - Full Name - - - - SDMX Code - A10 - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - World - - - Name - World - - - Code - 001 - - - Source Code - 001 - - - Short Name - - - - Full Name - - - - SDMX Code - W00 - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - - Direction of Trade Statistics (DOTS) Indicator - - Goods, Value of Exports, Free on board (FOB), US Dollars - - - Name - Goods, Value of Exports, Free on board (FOB), US Dollars - - - Code - TXG_FOB_USD - - - Short Name - Goods, Value of Exports, FOB, US Dollars - - - Full Name - External Trade, Goods, Value of Exports, Free on board (FOB), US Dollars - - - Definition - - - - Concept - Goods, Value of Exports, FOB - - - Methodology - - - - Unit - US Dollars - - - Topic - External Sector - - - Alternate Publication Codes - E-Library Concept: TXG, Unit: L - - - CTS Code - TXG - - - Source Code - TXG|L - - - Key Indicator - Key Indicator - - - Flow - 0 - - - Arrow Label - Exports to - - - Source Code - Collection - 70..DZD|US Dollars - - - Source Code - Dissemination - 70..DZF|US Dollars - - - Source Code - EDD - TXG|L - - - - - Goods, Value of Imports, Cost, Insurance, Freight (CIF), US Dollars - - - Name - Goods, Value of Imports, Cost, Insurance, Freight (CIF), US Dollars - - - Code - TMG_CIF_USD - - - Short Name - Goods, Value of Imports, CIF, US Dollars - - - Full Name - External Trade, Goods, Value of Imports, Cost, Insurance, Freight (CIF), US Dollars - - - Definition - - - - Concept - Goods, Value of Imports, CIF - - - Methodology - - - - Unit - US Dollars - - - Topic - External Sector - - - Alternate Publication Codes - E-Library Concept: TMG, Unit: L - - - CTS Code - TMG - - - Source Code - TMG|L - - - Key Indicator - Key Indicator - - - Flow - 1 - - - Arrow Label - Imports from - - - Source Code - Collection - 71..DZD|US Dollars - - - Source Code - Dissemination - 71..DZF|US Dollars - - - Source Code - EDD - TMG|L - - - - - Goods, Value of Imports, Free on board (FOB), US Dollars - - - Name - Goods, Value of Imports, Free on board (FOB), US Dollars - - - Code - TMG_FOB_USD - - - Short Name - Goods, Value of Imports, FOB, US Dollars - - - Full Name - External Trade, Goods, Value of Imports, Free on board (FOB), US Dollars - - - Definition - - - - Concept - Goods, Value of Imports, FOB - - - Methodology - - - - Unit - US Dollars - - - Topic - External Sector - - - Alternate Publication Codes - E-Library Concept: TMG_FOB, Unit: L - - - CTS Code - TMG_FOB - - - Source Code - TMG_FOB|L - - - Key Indicator - Key Indicator - - - Flow - 1 - - - Arrow Label - Imports from - - - Source Code - Collection - 71.VDZD|US Dollars - - - Source Code - Dissemination - 71.VDZF|US Dollars - - - Source Code - EDD - TMG_FOB|L - - - - - All Indicators - - - Name - All Indicators - - - Code - All Indicators - - - Short Name - All Indicators - - - Full Name - All Indicators - - - Definition - - - - Concept - - - - Methodology - - - - Unit - - - - Topic - - - - Alternate Publication Codes - - - - CTS Code - All Indicators - - - Source Code - All Indicators - - - Key Indicator - - - - Flow - - - - Arrow Label - - - - Source Code - Collection - All Indicators - - - Source Code - Dissemination - All Indicators - - - Source Code - EDD - All Indicators - - - - - - Direction of Trade Statistics (DOTS) Counterpart Country - - Afghanistan, Islamic Republic of - - - Name - Afghanistan, Islamic Republic of - - - Code - 512 - - - Source Code - 512 - - - Short Name - Afghanistan, I.R. of - - - Full Name - Afghanistan, Islamic Republic of - - - SDMX Code - AF - - - ISO 2 Code - AF - - - ISO 3 Code - AFG - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=AFG target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Afghanistan - - - - - Albania - - - Name - Albania - - - Code - 914 - - - Source Code - 914 - - - Short Name - Albania - - - Full Name - Albania - - - SDMX Code - AL - - - ISO 2 Code - AL - - - ISO 3 Code - ALB - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=ALB target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Albania - - - - - Algeria - - - Name - Algeria - - - Code - 612 - - - Source Code - 612 - - - Short Name - Algeria - - - Full Name - Algeria - - - SDMX Code - DZ - - - ISO 2 Code - DZ - - - ISO 3 Code - DZA - - - Data Quality Assurance Framework - - - - SDMX Name - Algeria - - - - - American Samoa - - - Name - American Samoa - - - Code - 859 - - - Source Code - 859 - - - Short Name - American Samoa - - - Full Name - American Samoa - - - SDMX Code - AS - - - ISO 2 Code - AS - - - ISO 3 Code - ASM - - - Data Quality Assurance Framework - - - - SDMX Name - American Samoa - - - - - Andorra - - - Name - Andorra - - - Code - 171 - - - Source Code - 171 - - - Short Name - Andorra - - - Full Name - Andorra - - - SDMX Code - AD - - - ISO 2 Code - AD - - - ISO 3 Code - AND - - - Data Quality Assurance Framework - - - - SDMX Name - Andorra - - - - - Angola - - - Name - Angola - - - Code - 614 - - - Source Code - 614 - - - Short Name - Angola - - - Full Name - Angola - - - SDMX Code - AO - - - ISO 2 Code - AO - - - ISO 3 Code - AGO - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=AGO target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Angola - - - - - Anguilla - - - Name - Anguilla - - - Code - 312 - - - Source Code - 312 - - - Short Name - Anguilla - - - Full Name - Anguilla - - - SDMX Code - AI - - - ISO 2 Code - AI - - - ISO 3 Code - AIA - - - Data Quality Assurance Framework - - - - SDMX Name - Anguilla - - - - - Antigua and Barbuda - - - Name - Antigua and Barbuda - - - Code - 311 - - - Source Code - 311 - - - Short Name - Antigua and Barbuda - - - Full Name - Antigua and Barbuda - - - SDMX Code - AG - - - ISO 2 Code - AG - - - ISO 3 Code - ATG - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=ATG target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Antigua and Barbuda - - - - - Argentina - - - Name - Argentina - - - Code - 213 - - - Source Code - 213 - - - Short Name - Argentina - - - Full Name - Argentina - - - SDMX Code - AR - - - ISO 2 Code - AR - - - ISO 3 Code - ARG - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=ARG target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Argentina - - - - - Armenia, Republic of - - - Name - Armenia, Republic of - - - Code - 911 - - - Source Code - 911 - - - Short Name - Armenia - - - Full Name - Republic of Armenia - - - SDMX Code - AM - - - ISO 2 Code - AM - - - ISO 3 Code - ARM - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=ARM target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Armenia - - - - - Aruba - - - Name - Aruba - - - Code - 314 - - - Source Code - 314 - - - Short Name - Aruba - - - Full Name - Kingdom of the Netherlands—Aruba - - - SDMX Code - AW - - - ISO 2 Code - AW - - - ISO 3 Code - ABW - - - Data Quality Assurance Framework - - - - SDMX Name - Aruba - - - - - Australia - - - Name - Australia - - - Code - 193 - - - Source Code - 193 - - - Short Name - Australia - - - Full Name - Australia - - - SDMX Code - AU - - - ISO 2 Code - AU - - - ISO 3 Code - AUS - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=AUS target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Australia - - - - - Austria - - - Name - Austria - - - Code - 122 - - - Source Code - 122 - - - Short Name - Austria - - - Full Name - Austria - - - SDMX Code - AT - - - ISO 2 Code - AT - - - ISO 3 Code - AUT - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=AUT target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Austria - - - - - Azerbaijan, Republic of - - - Name - Azerbaijan, Republic of - - - Code - 912 - - - Source Code - 912 - - - Short Name - Azerbaijan, Rep. of - - - Full Name - Republic of Azerbaijan - - - SDMX Code - AZ - - - ISO 2 Code - AZ - - - ISO 3 Code - AZE - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=AZE target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Azerbaijan - - - - - Bahamas, The - - - Name - Bahamas, The - - - Code - 313 - - - Source Code - 313 - - - Short Name - Bahamas, The - - - Full Name - Bahamas, The - - - SDMX Code - BS - - - ISO 2 Code - BS - - - ISO 3 Code - BHS - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=BHS target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Bahamas - - - - - Bahrain, Kingdom of - - - Name - Bahrain, Kingdom of - - - Code - 419 - - - Source Code - 419 - - - Short Name - Bahrain, Kingdom of - - - Full Name - Bahrain, Kingdom of - - - SDMX Code - BH - - - ISO 2 Code - BH - - - ISO 3 Code - BHR - - - Data Quality Assurance Framework - - - - SDMX Name - Bahrain - - - - - Bangladesh - - - Name - Bangladesh - - - Code - 513 - - - Source Code - 513 - - - Short Name - Bangladesh - - - Full Name - Bangladesh - - - SDMX Code - BD - - - ISO 2 Code - BD - - - ISO 3 Code - BGD - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=BGD target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Bangladesh - - - - - Barbados - - - Name - Barbados - - - Code - 316 - - - Source Code - 316 - - - Short Name - Barbados - - - Full Name - Barbados - - - SDMX Code - BB - - - ISO 2 Code - BB - - - ISO 3 Code - BRB - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=BRB target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Barbados - - - - - Belarus - - - Name - Belarus - - - Code - 913 - - - Source Code - 913 - - - Short Name - Belarus - - - Full Name - Republic of Belarus - - - SDMX Code - BY - - - ISO 2 Code - BY - - - ISO 3 Code - BLR - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=BLR target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Belarus - - - - - Belgium - - - Name - Belgium - - - Code - 124 - - - Source Code - 124 - - - Short Name - Belgium - - - Full Name - Belgium - - - SDMX Code - BE - - - ISO 2 Code - BE - - - ISO 3 Code - BEL - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=BEL target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Belgium - - - - - Belgium-Luxembourg - - - Name - Belgium-Luxembourg - - - Code - 126 - - - Source Code - 126 - - - Short Name - Belgium-Luxembourg - - - Full Name - Belgium-Luxembourg - - - SDMX Code - R1 - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - Belgo-Luxembourg Economic Union - - - - - Belgium-Luxembourg not specified - - - Name - Belgium-Luxembourg not specified - - - Code - 127 - - - Source Code - 127 - - - Short Name - Bel-Lux n.s. - - - Full Name - Belgium-Luxembourg not specified - - - SDMX Code - R109 - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Belize - - - Name - Belize - - - Code - 339 - - - Source Code - 339 - - - Short Name - Belize - - - Full Name - Belize - - - SDMX Code - BZ - - - ISO 2 Code - BZ - - - ISO 3 Code - BLZ - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=BLZ target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Belize - - - - - Benin - - - Name - Benin - - - Code - 638 - - - Source Code - 638 - - - Short Name - Benin - - - Full Name - Benin - - - SDMX Code - BJ - - - ISO 2 Code - BJ - - - ISO 3 Code - BEN - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=BEN target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Benin - - - - - Bermuda - - - Name - Bermuda - - - Code - 319 - - - Source Code - 319 - - - Short Name - Bermuda - - - Full Name - Bermuda - - - SDMX Code - BM - - - ISO 2 Code - BM - - - ISO 3 Code - BMU - - - Data Quality Assurance Framework - - - - SDMX Name - Bermuda - - - - - Bhutan - - - Name - Bhutan - - - Code - 514 - - - Source Code - 514 - - - Short Name - Bhutan - - - Full Name - Bhutan - - - SDMX Code - BT - - - ISO 2 Code - BT - - - ISO 3 Code - BTN - - - Data Quality Assurance Framework - - - - SDMX Name - Bhutan - - - - - Bolivia - - - Name - Bolivia - - - Code - 218 - - - Source Code - 218 - - - Short Name - Bolivia - - - Full Name - Bolivia - - - SDMX Code - BO - - - ISO 2 Code - BO - - - ISO 3 Code - BOL - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=BOL target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Bolivia - - - - - Bosnia and Herzegovina - - - Name - Bosnia and Herzegovina - - - Code - 963 - - - Source Code - 963 - - - Short Name - Bosnia & Herzegovina - - - Full Name - Bosnia and Herzegovina - - - SDMX Code - BA - - - ISO 2 Code - BA - - - ISO 3 Code - BIH - - - Data Quality Assurance Framework - - - - SDMX Name - Bosnia and Herzegovina - - - - - Botswana - - - Name - Botswana - - - Code - 616 - - - Source Code - 616 - - - Short Name - Botswana - - - Full Name - Botswana - - - SDMX Code - BW - - - ISO 2 Code - BW - - - ISO 3 Code - BWA - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=BWA target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Botswana - - - - - Brazil - - - Name - Brazil - - - Code - 223 - - - Source Code - 223 - - - Short Name - Brazil - - - Full Name - Brazil - - - SDMX Code - BR - - - ISO 2 Code - BR - - - ISO 3 Code - BRA - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=BRA target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Brazil - - - - - British Indian Ocean Territory - - - Name - British Indian Ocean Territory - - - Code - 585 - - - Source Code - 585 - - - Short Name - Brit. Ind.Ocean Terr - - - Full Name - British Indian Ocean Territory - - - SDMX Code - IO - - - ISO 2 Code - IO - - - ISO 3 Code - IOQ - - - Data Quality Assurance Framework - - - - SDMX Name - British Indian Ocean territory - - - - - British Oceania not specified - - - Name - British Oceania not specified - - - Code - 885 - - - Source Code - 885 - - - Short Name - Br Oceania n.s. - - - Full Name - British Oceania not specified - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Brunei Darussalam - - - Name - Brunei Darussalam - - - Code - 516 - - - Source Code - 516 - - - Short Name - Brunei Darussalam - - - Full Name - Brunei Darussalam - - - SDMX Code - BN - - - ISO 2 Code - BN - - - ISO 3 Code - BRN - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=BRN target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Brunei Darussalam - - - - - Bulgaria - - - Name - Bulgaria - - - Code - 918 - - - Source Code - 918 - - - Short Name - Bulgaria - - - Full Name - Bulgaria - - - SDMX Code - BG - - - ISO 2 Code - BG - - - ISO 3 Code - BGR - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=BGR target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Bulgaria - - - - - Burkina Faso - - - Name - Burkina Faso - - - Code - 748 - - - Source Code - 748 - - - Short Name - Burkina Faso - - - Full Name - Burkina Faso - - - SDMX Code - BF - - - ISO 2 Code - BF - - - ISO 3 Code - BFA - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=BFA target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Burkina Faso - - - - - Burundi - - - Name - Burundi - - - Code - 618 - - - Source Code - 618 - - - Short Name - Burundi - - - Full Name - Burundi - - - SDMX Code - BI - - - ISO 2 Code - BI - - - ISO 3 Code - BDI - - - Data Quality Assurance Framework - - - - SDMX Name - Burundi - - - - - Cambodia - - - Name - Cambodia - - - Code - 522 - - - Source Code - 522 - - - Short Name - Cambodia - - - Full Name - Cambodia - - - SDMX Code - KH - - - ISO 2 Code - KH - - - ISO 3 Code - KHM - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=KHM target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Cambodia - - - - - Cameroon - - - Name - Cameroon - - - Code - 622 - - - Source Code - 622 - - - Short Name - Cameroon - - - Full Name - Cameroon - - - SDMX Code - CM - - - ISO 2 Code - CM - - - ISO 3 Code - CMR - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=CMR target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Cameroon - - - - - Canada - - - Name - Canada - - - Code - 156 - - - Source Code - 156 - - - Short Name - Canada - - - Full Name - Canada - - - SDMX Code - CA - - - ISO 2 Code - CA - - - ISO 3 Code - CAN - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=CAN target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Canada - - - - - Cape Verde - - - Name - Cape Verde - - - Code - 624 - - - Source Code - 624 - - - Short Name - Cabo Verde - - - Full Name - Cabo Verde - - - SDMX Code - CV - - - ISO 2 Code - CV - - - ISO 3 Code - CPV - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=CPV target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Cabo Verde - - - - - Cayman Islands - - - Name - Cayman Islands - - - Code - 377 - - - Source Code - 377 - - - Short Name - Cayman Islands - - - Full Name - Cayman Islands - - - SDMX Code - KY - - - ISO 2 Code - KY - - - ISO 3 Code - CYM - - - Data Quality Assurance Framework - - - - SDMX Name - Cayman Islands - - - - - Central African Republic - - - Name - Central African Republic - - - Code - 626 - - - Source Code - 626 - - - Short Name - Central African Rep. - - - Full Name - Central African Republic - - - SDMX Code - CF - - - ISO 2 Code - CF - - - ISO 3 Code - CAF - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=CAF target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Central African Republic - - - - - Chad - - - Name - Chad - - - Code - 628 - - - Source Code - 628 - - - Short Name - Chad - - - Full Name - Chad - - - SDMX Code - TD - - - ISO 2 Code - TD - - - ISO 3 Code - TCD - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=TCD target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Chad - - - - - Chile - - - Name - Chile - - - Code - 228 - - - Source Code - 228 - - - Short Name - Chile - - - Full Name - Chile - - - SDMX Code - CL - - - ISO 2 Code - CL - - - ISO 3 Code - CHL - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=CHL target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Chile - - - - - China, P.R.: Hong Kong - - - Name - China, P.R.: Hong Kong - - - Code - 532 - - - Source Code - 532 - - - Short Name - China,P.R.:Hong Kong - - - Full Name - China, P.R.: Hong Kong - - - SDMX Code - HK - - - ISO 2 Code - HK - - - ISO 3 Code - HKG - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=HKG target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Hong Kong - - - - - China, P.R.: Macao - - - Name - China, P.R.: Macao - - - Code - 546 - - - Source Code - 546 - - - Short Name - China,P.R.:Macao - - - Full Name - China, P.R.: Macao - - - SDMX Code - MO - - - ISO 2 Code - MO - - - ISO 3 Code - MAC - - - Data Quality Assurance Framework - - - - SDMX Name - Macao - - - - - China, P.R.: Mainland - - - Name - China, P.R.: Mainland - - - Code - 924 - - - Source Code - 924 - - - Short Name - China,P.R.: Mainland - - - Full Name - People’s Republic of China - - - SDMX Code - CN - - - ISO 2 Code - CN - - - ISO 3 Code - CHN - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=CHN target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - China - - - - - Christmas Island - - - Name - Christmas Island - - - Code - 814 - - - Source Code - 814 - - - Short Name - Christmas Island - - - Full Name - Christmas Island - - - SDMX Code - CX - - - ISO 2 Code - CX - - - ISO 3 Code - CXQ - - - Data Quality Assurance Framework - - - - SDMX Name - Christmas Island - - - - - Cocos (Keeling) Islands - - - Name - Cocos (Keeling) Islands - - - Code - 865 - - - Source Code - 865 - - - Short Name - Cocos Island - - - Full Name - Cocos (Keeling) Islands - - - SDMX Code - CC - - - ISO 2 Code - CC - - - ISO 3 Code - CCQ - - - Data Quality Assurance Framework - - - - SDMX Name - Cocos (Keeling) Islands - - - - - Colombia - - - Name - Colombia - - - Code - 233 - - - Source Code - 233 - - - Short Name - Colombia - - - Full Name - Colombia - - - SDMX Code - CO - - - ISO 2 Code - CO - - - ISO 3 Code - COL - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=COL target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Colombia - - - - - Comoros - - - Name - Comoros - - - Code - 632 - - - Source Code - 632 - - - Short Name - Comoros - - - Full Name - Federal Islamic Republic of the Comoros - - - SDMX Code - KM - - - ISO 2 Code - KM - - - ISO 3 Code - COM - - - Data Quality Assurance Framework - - - - SDMX Name - Comoros - - - - - Congo, Democratic Republic of - - - Name - Congo, Democratic Republic of - - - Code - 636 - - - Source Code - 636 - - - Short Name - Congo, Dem. Rep. of - - - Full Name - Democratic Republic of the Congo - - - SDMX Code - CD - - - ISO 2 Code - CD - - - ISO 3 Code - COD - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=COD target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Congo, the Democratic Republic of the - - - - - Congo, Republic of - - - Name - Congo, Republic of - - - Code - 634 - - - Source Code - 634 - - - Short Name - Congo, Republic of - - - Full Name - Republic of Congo - - - SDMX Code - CG - - - ISO 2 Code - CG - - - ISO 3 Code - COG - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=COG target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Congo - - - - - Cook Islands - - - Name - Cook Islands - - - Code - 815 - - - Source Code - 815 - - - Short Name - Cook Islands - - - Full Name - Cook Islands - - - SDMX Code - CK - - - ISO 2 Code - CK - - - ISO 3 Code - COK - - - Data Quality Assurance Framework - - - - SDMX Name - Cook Islands - - - - - Costa Rica - - - Name - Costa Rica - - - Code - 238 - - - Source Code - 238 - - - Short Name - Costa Rica - - - Full Name - Costa Rica - - - SDMX Code - CR - - - ISO 2 Code - CR - - - ISO 3 Code - CRI - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=CRI target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Costa Rica - - - - - Cote d'Ivoire - - - Name - Cote d'Ivoire - - - Code - 662 - - - Source Code - 662 - - - Short Name - Côte d'Ivoire - - - Full Name - Cote d'Ivoire - - - SDMX Code - CI - - - ISO 2 Code - CI - - - ISO 3 Code - CIV - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=CIV target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Cote d`Ivoire - - - - - Croatia - - - Name - Croatia - - - Code - 960 - - - Source Code - 960 - - - Short Name - Croatia - - - Full Name - Republic of Croatia - - - SDMX Code - HR - - - ISO 2 Code - HR - - - ISO 3 Code - HRV - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=HRV target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Croatia - - - - - Cuba - - - Name - Cuba - - - Code - 928 - - - Source Code - 928 - - - Short Name - Cuba - - - Full Name - Cuba - - - SDMX Code - CU - - - ISO 2 Code - CU - - - ISO 3 Code - CUB - - - Data Quality Assurance Framework - - - - SDMX Name - Cuba - - - - - Curacao - - - Name - Curacao - - - Code - 354 - - - Source Code - 354 - - - Short Name - Curaçao - - - Full Name - Curacao - - - SDMX Code - CW - - - ISO 2 Code - CW - - - ISO 3 Code - CUW - - - Data Quality Assurance Framework - - - - SDMX Name - Curacao - - - - - Cyprus - - - Name - Cyprus - - - Code - 423 - - - Source Code - 423 - - - Short Name - Cyprus - - - Full Name - Cyprus - - - SDMX Code - CY - - - ISO 2 Code - CY - - - ISO 3 Code - CYP - - - Data Quality Assurance Framework - - - - SDMX Name - Cyprus - - - - - Czech Republic - - - Name - Czech Republic - - - Code - 935 - - - Source Code - 935 - - - Short Name - Czech Republic - - - Full Name - Czech Republic - - - SDMX Code - CZ - - - ISO 2 Code - CZ - - - ISO 3 Code - CZE - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=CZE target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Czech Republic - - - - - Czechoslovakia - - - Name - Czechoslovakia - - - Code - 934 - - - Source Code - 934 - - - Short Name - Czechoslovakia - - - Full Name - Czechoslovakia - - - SDMX Code - CSH - - - ISO 2 Code - - - - ISO 3 Code - CSK - - - Data Quality Assurance Framework - - - - SDMX Name - Former Czechoslovakia - - - - - Czechoslovakia not specified - - - Name - Czechoslovakia not specified - - - Code - 937 - - - Source Code - 937 - - - Short Name - Czechoslovakia n.s. - - - Full Name - Czechoslovakia not specified - - - SDMX Code - CSH9 - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Denmark - - - Name - Denmark - - - Code - 128 - - - Source Code - 128 - - - Short Name - Denmark - - - Full Name - Denmark - - - SDMX Code - DK - - - ISO 2 Code - DK - - - ISO 3 Code - DNK - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=DNK target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Denmark - - - - - Djibouti - - - Name - Djibouti - - - Code - 611 - - - Source Code - 611 - - - Short Name - Djibouti - - - Full Name - Djibouti - - - SDMX Code - DJ - - - ISO 2 Code - DJ - - - ISO 3 Code - DJI - - - Data Quality Assurance Framework - - - - SDMX Name - Djibouti - - - - - Dominica - - - Name - Dominica - - - Code - 321 - - - Source Code - 321 - - - Short Name - Dominica - - - Full Name - Dominica - - - SDMX Code - DM - - - ISO 2 Code - DM - - - ISO 3 Code - DMA - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=DMA target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Dominica - - - - - Dominican Republic - - - Name - Dominican Republic - - - Code - 243 - - - Source Code - 243 - - - Short Name - Dominican Republic - - - Full Name - Dominican Republic - - - SDMX Code - DO - - - ISO 2 Code - DO - - - ISO 3 Code - DOM - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=DOM target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Dominican Republic - - - - - Eastern Germany - - - Name - Eastern Germany - - - Code - 938 - - - Source Code - 938 - - - Short Name - Eastern Germany - - - Full Name - Eastern Germany - - - SDMX Code - DE2 - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - East Germany - - - - - Ecuador - - - Name - Ecuador - - - Code - 248 - - - Source Code - 248 - - - Short Name - Ecuador - - - Full Name - Ecuador - - - SDMX Code - EC - - - ISO 2 Code - EC - - - ISO 3 Code - ECU - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=ECU target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Ecuador - - - - - Egypt - - - Name - Egypt - - - Code - 469 - - - Source Code - 469 - - - Short Name - Egypt - - - Full Name - Arab Republic of Egypt - - - SDMX Code - EG - - - ISO 2 Code - EG - - - ISO 3 Code - EGY - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=EGY target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Egypt - - - - - El Salvador - - - Name - El Salvador - - - Code - 253 - - - Source Code - 253 - - - Short Name - El Salvador - - - Full Name - El Salvador - - - SDMX Code - SV - - - ISO 2 Code - SV - - - ISO 3 Code - SLV - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=SLV target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - El Salvador - - - - - EMERGING & DEVELOPING EUROPE - - - Name - EMERGING & DEVELOPING EUROPE - - - Code - 903 - - - Source Code - 903 - - - Short Name - Emer. & Dev. Europe - - - Full Name - EMERGING & DEVELOPING EUROPE - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Equatorial Guinea - - - Name - Equatorial Guinea - - - Code - 642 - - - Source Code - 642 - - - Short Name - Equatorial Guinea - - - Full Name - Equatorial Guinea - - - SDMX Code - GQ - - - ISO 2 Code - GQ - - - ISO 3 Code - GNQ - - - Data Quality Assurance Framework - - - - SDMX Name - Equatorial Guinea - - - - - Eritrea - - - Name - Eritrea - - - Code - 643 - - - Source Code - 643 - - - Short Name - Eritrea - - - Full Name - Eritrea - - - SDMX Code - ER - - - ISO 2 Code - ER - - - ISO 3 Code - ERI - - - Data Quality Assurance Framework - - - - SDMX Name - Eritrea - - - - - Estonia - - - Name - Estonia - - - Code - 939 - - - Source Code - 939 - - - Short Name - Estonia - - - Full Name - Republic of Estonia - - - SDMX Code - EE - - - ISO 2 Code - EE - - - ISO 3 Code - EST - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=EST target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Estonia - - - - - Ethiopia - - - Name - Ethiopia - - - Code - 644 - - - Source Code - 644 - - - Short Name - Ethiopia - - - Full Name - Ethiopia - - - SDMX Code - ET - - - ISO 2 Code - ET - - - ISO 3 Code - ETH - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=ETH target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Ethiopia - - - - - Falkland Islands - - - Name - Falkland Islands - - - Code - 323 - - - Source Code - 323 - - - Short Name - Falkland Islands - - - Full Name - Falkland Islands - - - SDMX Code - FK - - - ISO 2 Code - FK - - - ISO 3 Code - FLK - - - Data Quality Assurance Framework - - - - SDMX Name - Falkland Islands (Malvinas) - - - - - Faroe Islands - - - Name - Faroe Islands - - - Code - 816 - - - Source Code - 816 - - - Short Name - Faroe Islands - - - Full Name - Faroe Islands - - - SDMX Code - FO - - - ISO 2 Code - FO - - - ISO 3 Code - FRO - - - Data Quality Assurance Framework - - - - SDMX Name - Faroe Islands - - - - - Fiji - - - Name - Fiji - - - Code - 819 - - - Source Code - 819 - - - Short Name - Fiji - - - Full Name - Fiji - - - SDMX Code - FJ - - - ISO 2 Code - FJ - - - ISO 3 Code - FJI - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=FJI target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Fiji - - - - - Finland - - - Name - Finland - - - Code - 172 - - - Source Code - 172 - - - Short Name - Finland - - - Full Name - Finland - - - SDMX Code - FI - - - ISO 2 Code - FI - - - ISO 3 Code - FIN - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=FIN target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Finland - - - - - France - - - Name - France - - - Code - 132 - - - Source Code - 132 - - - Short Name - France - - - Full Name - France - - - SDMX Code - FR - - - ISO 2 Code - FR - - - ISO 3 Code - FRA - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=FRA target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - France - - - - - French Southern Territories - - - Name - French Southern Territories - - - Code - 876 - - - Source Code - 876 - - - Short Name - Fr.So.Antarc.Tr. - - - Full Name - French Southern Territories - - - SDMX Code - TF - - - ISO 2 Code - TF - - - ISO 3 Code - TFQ - - - Data Quality Assurance Framework - - - - SDMX Name - French Southern Territories - - - - - French Territories: French Polynesia - - - Name - French Territories: French Polynesia - - - Code - 887 - - - Source Code - 887 - - - Short Name - French Polynesia - - - Full Name - French Polynesia - - - SDMX Code - PF - - - ISO 2 Code - PF - - - ISO 3 Code - PYF - - - Data Quality Assurance Framework - - - - SDMX Name - French Polynesia - - - - - French Territories: New Caledonia - - - Name - French Territories: New Caledonia - - - Code - 839 - - - Source Code - 839 - - - Short Name - New Caledonia - - - Full Name - New Caledonia - - - SDMX Code - NC - - - ISO 2 Code - NC - - - ISO 3 Code - NCL - - - Data Quality Assurance Framework - - - - SDMX Name - New Caledonia - - - - - Gabon - - - Name - Gabon - - - Code - 646 - - - Source Code - 646 - - - Short Name - Gabon - - - Full Name - Gabon - - - SDMX Code - GA - - - ISO 2 Code - GA - - - ISO 3 Code - GAB - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=GAB target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Gabon - - - - - Gambia, The - - - Name - Gambia, The - - - Code - 648 - - - Source Code - 648 - - - Short Name - Gambia, The - - - Full Name - Gambia, The - - - SDMX Code - GM - - - ISO 2 Code - GM - - - ISO 3 Code - GMB - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=GMB target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Gambia - - - - - Georgia - - - Name - Georgia - - - Code - 915 - - - Source Code - 915 - - - Short Name - Georgia - - - Full Name - Georgia - - - SDMX Code - GE - - - ISO 2 Code - GE - - - ISO 3 Code - GEO - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=GEO target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Georgia - - - - - Germany - - - Name - Germany - - - Code - 134 - - - Source Code - 134 - - - Short Name - Germany - - - Full Name - Germany - - - SDMX Code - DE - - - ISO 2 Code - DE - - - ISO 3 Code - DEU - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=DEU target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Germany - - - - - Ghana - - - Name - Ghana - - - Code - 652 - - - Source Code - 652 - - - Short Name - Ghana - - - Full Name - Ghana - - - SDMX Code - GH - - - ISO 2 Code - GH - - - ISO 3 Code - GHA - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=GHA target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Ghana - - - - - Gibraltar - - - Name - Gibraltar - - - Code - 823 - - - Source Code - 823 - - - Short Name - Gibraltar - - - Full Name - Gibraltar - - - SDMX Code - GI - - - ISO 2 Code - GI - - - ISO 3 Code - GIB - - - Data Quality Assurance Framework - - - - SDMX Name - Gibraltar - - - - - Greece - - - Name - Greece - - - Code - 174 - - - Source Code - 174 - - - Short Name - Greece - - - Full Name - Greece - - - SDMX Code - GR - - - ISO 2 Code - GR - - - ISO 3 Code - GRC - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=GRC target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Greece - - - - - Greenland - - - Name - Greenland - - - Code - 326 - - - Source Code - 326 - - - Short Name - Greenland - - - Full Name - Greenland - - - SDMX Code - GL - - - ISO 2 Code - GL - - - ISO 3 Code - GRL - - - Data Quality Assurance Framework - - - - SDMX Name - Greenland - - - - - Grenada - - - Name - Grenada - - - Code - 328 - - - Source Code - 328 - - - Short Name - Grenada - - - Full Name - Grenada - - - SDMX Code - GD - - - ISO 2 Code - GD - - - ISO 3 Code - GRD - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=GRD target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Grenada - - - - - Guadeloupe - - - Name - Guadeloupe - - - Code - 329 - - - Source Code - 329 - - - Short Name - Guadeloupe - - - Full Name - Guadeloupe - - - SDMX Code - GP - - - ISO 2 Code - GP - - - ISO 3 Code - GLP - - - Data Quality Assurance Framework - - - - SDMX Name - Guadeloupe - - - - - Guam - - - Name - Guam - - - Code - 829 - - - Source Code - 829 - - - Short Name - Guam - - - Full Name - Guam - - - SDMX Code - GU - - - ISO 2 Code - GU - - - ISO 3 Code - GUM - - - Data Quality Assurance Framework - - - - SDMX Name - Guam - - - - - Guatemala - - - Name - Guatemala - - - Code - 258 - - - Source Code - 258 - - - Short Name - Guatemala - - - Full Name - Guatemala - - - SDMX Code - GT - - - ISO 2 Code - GT - - - ISO 3 Code - GTM - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=GTM target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Guatemala - - - - - Guiana, French - - - Name - Guiana, French - - - Code - 333 - - - Source Code - 333 - - - Short Name - Guiana, French - - - Full Name - Guiana, French - - - SDMX Code - GF - - - ISO 2 Code - GF - - - ISO 3 Code - GUF - - - Data Quality Assurance Framework - - - - SDMX Name - French Guiana - - - - - Guinea - - - Name - Guinea - - - Code - 656 - - - Source Code - 656 - - - Short Name - Guinea - - - Full Name - Guinea - - - SDMX Code - GN - - - ISO 2 Code - GN - - - ISO 3 Code - GIN - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=GIN target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Guinea - - - - - Guinea-Bissau - - - Name - Guinea-Bissau - - - Code - 654 - - - Source Code - 654 - - - Short Name - Guinea-Bissau - - - Full Name - Guinea-Bissau - - - SDMX Code - GW - - - ISO 2 Code - GW - - - ISO 3 Code - GNB - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=GNB target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Guinea-Bissau - - - - - Guyana - - - Name - Guyana - - - Code - 336 - - - Source Code - 336 - - - Short Name - Guyana - - - Full Name - Guyana - - - SDMX Code - GY - - - ISO 2 Code - GY - - - ISO 3 Code - GUY - - - Data Quality Assurance Framework - - - - SDMX Name - Guyana - - - - - Haiti - - - Name - Haiti - - - Code - 263 - - - Source Code - 263 - - - Short Name - Haiti - - - Full Name - Haiti - - - SDMX Code - HT - - - ISO 2 Code - HT - - - ISO 3 Code - HTI - - - Data Quality Assurance Framework - - - - SDMX Name - Haiti - - - - - Honduras - - - Name - Honduras - - - Code - 268 - - - Source Code - 268 - - - Short Name - Honduras - - - Full Name - Honduras - - - SDMX Code - HN - - - ISO 2 Code - HN - - - ISO 3 Code - HND - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=HND target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Honduras - - - - - Hungary - - - Name - Hungary - - - Code - 944 - - - Source Code - 944 - - - Short Name - Hungary - - - Full Name - Hungary - - - SDMX Code - HU - - - ISO 2 Code - HU - - - ISO 3 Code - HUN - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=HUN target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Hungary - - - - - Iceland - - - Name - Iceland - - - Code - 176 - - - Source Code - 176 - - - Short Name - Iceland - - - Full Name - Iceland - - - SDMX Code - IS - - - ISO 2 Code - IS - - - ISO 3 Code - ISL - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=ISL target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Iceland - - - - - India - - - Name - India - - - Code - 534 - - - Source Code - 534 - - - Short Name - India - - - Full Name - India - - - SDMX Code - IN - - - ISO 2 Code - IN - - - ISO 3 Code - IND - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=IND target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - India - - - - - Indonesia - - - Name - Indonesia - - - Code - 536 - - - Source Code - 536 - - - Short Name - Indonesia - - - Full Name - Indonesia - - - SDMX Code - ID - - - ISO 2 Code - ID - - - ISO 3 Code - IDN - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=IDN target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Indonesia - - - - - Iran, Islamic Republic of - - - Name - Iran, Islamic Republic of - - - Code - 429 - - - Source Code - 429 - - - Short Name - Iran, I.R. of - - - Full Name - Iran, Islamic Republic of - - - SDMX Code - IR - - - ISO 2 Code - IR - - - ISO 3 Code - IRN - - - Data Quality Assurance Framework - - - - SDMX Name - Iran, Islamic Republic of - - - - - Iraq - - - Name - Iraq - - - Code - 433 - - - Source Code - 433 - - - Short Name - Iraq - - - Full Name - Iraq - - - SDMX Code - IQ - - - ISO 2 Code - IQ - - - ISO 3 Code - IRQ - - - Data Quality Assurance Framework - - - - SDMX Name - Iraq - - - - - Ireland - - - Name - Ireland - - - Code - 178 - - - Source Code - 178 - - - Short Name - Ireland - - - Full Name - Ireland - - - SDMX Code - IE - - - ISO 2 Code - IE - - - ISO 3 Code - IRL - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=IRL target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Ireland - - - - - Israel - - - Name - Israel - - - Code - 436 - - - Source Code - 436 - - - Short Name - Israel - - - Full Name - Israel - - - SDMX Code - IL - - - ISO 2 Code - IL - - - ISO 3 Code - ISR - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=ISR target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Israel - - - - - Italy - - - Name - Italy - - - Code - 136 - - - Source Code - 136 - - - Short Name - Italy - - - Full Name - Italy - - - SDMX Code - IT - - - ISO 2 Code - IT - - - ISO 3 Code - ITA - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=ITA target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Italy - - - - - Jamaica - - - Name - Jamaica - - - Code - 343 - - - Source Code - 343 - - - Short Name - Jamaica - - - Full Name - Jamaica - - - SDMX Code - JM - - - ISO 2 Code - JM - - - ISO 3 Code - JAM - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=JAM target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Jamaica - - - - - Japan - - - Name - Japan - - - Code - 158 - - - Source Code - 158 - - - Short Name - Japan - - - Full Name - Japan - - - SDMX Code - JP - - - ISO 2 Code - JP - - - ISO 3 Code - JPN - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=JPN target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Japan - - - - - Jordan - - - Name - Jordan - - - Code - 439 - - - Source Code - 439 - - - Short Name - Jordan - - - Full Name - Jordan - - - SDMX Code - JO - - - ISO 2 Code - JO - - - ISO 3 Code - JOR - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=JOR target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Jordan - - - - - Kazakhstan - - - Name - Kazakhstan - - - Code - 916 - - - Source Code - 916 - - - Short Name - Kazakhstan - - - Full Name - Republic of Kazakhstan - - - SDMX Code - KZ - - - ISO 2 Code - KZ - - - ISO 3 Code - KAZ - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=KAZ target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Kazakhstan - - - - - Kenya - - - Name - Kenya - - - Code - 664 - - - Source Code - 664 - - - Short Name - Kenya - - - Full Name - Kenya - - - SDMX Code - KE - - - ISO 2 Code - KE - - - ISO 3 Code - KEN - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=KEN target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Kenya - - - - - Kiribati - - - Name - Kiribati - - - Code - 826 - - - Source Code - 826 - - - Short Name - Kiribati - - - Full Name - Kiribati - - - SDMX Code - KI - - - ISO 2 Code - KI - - - ISO 3 Code - KIR - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=KIR target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Kiribati - - - - - Korea, Democratic People's Rep. of - - - Name - Korea, Democratic People's Rep. of - - - Code - 954 - - - Source Code - 954 - - - Short Name - North Korea - - - Full Name - Korea, Democratic People's Republic of - - - SDMX Code - KP - - - ISO 2 Code - KP - - - ISO 3 Code - PRK - - - Data Quality Assurance Framework - - - - SDMX Name - Korea, Democratic People`s Republic of - - - - - Korea, Republic of - - - Name - Korea, Republic of - - - Code - 542 - - - Source Code - 542 - - - Short Name - Korea, Republic of - - - Full Name - Korea, Republic of - - - SDMX Code - KR - - - ISO 2 Code - KR - - - ISO 3 Code - KOR - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=KOR target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Korea, Republic of - - - - - Kosovo, Republic of - - - Name - Kosovo, Republic of - - - Code - 967 - - - Source Code - 967 - - - Short Name - Kosovo - - - Full Name - Kosovo - - - SDMX Code - XK - - - ISO 2 Code - KO - - - ISO 3 Code - UVK - - - Data Quality Assurance Framework - - - - SDMX Name - Kosovo - - - - - Kuwait - - - Name - Kuwait - - - Code - 443 - - - Source Code - 443 - - - Short Name - Kuwait - - - Full Name - Kuwait - - - SDMX Code - KW - - - ISO 2 Code - KW - - - ISO 3 Code - KWT - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=KWT target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Kuwait - - - - - Kyrgyz Republic - - - Name - Kyrgyz Republic - - - Code - 917 - - - Source Code - 917 - - - Short Name - Kyrgyz Republic - - - Full Name - Kyrgyz Republic - - - SDMX Code - KG - - - ISO 2 Code - KG - - - ISO 3 Code - KGZ - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=KGZ target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Kyrgyzstan - - - - - Lao People's Democratic Republic - - - Name - Lao People's Democratic Republic - - - Code - 544 - - - Source Code - 544 - - - Short Name - Lao People's Dem.Rep - - - Full Name - Lao People's Democratic Republic - - - SDMX Code - LA - - - ISO 2 Code - LA - - - ISO 3 Code - LAO - - - Data Quality Assurance Framework - - - - SDMX Name - Lao People`s Democratic Republic - - - - - Latvia - - - Name - Latvia - - - Code - 941 - - - Source Code - 941 - - - Short Name - Latvia - - - Full Name - Republic of Latvia - - - SDMX Code - LV - - - ISO 2 Code - LV - - - ISO 3 Code - LVA - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=LVA target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Latvia - - - - - Lebanon - - - Name - Lebanon - - - Code - 446 - - - Source Code - 446 - - - Short Name - Lebanon - - - Full Name - Lebanon - - - SDMX Code - LB - - - ISO 2 Code - LB - - - ISO 3 Code - LBN - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=LBN target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Lebanon - - - - - Lesotho - - - Name - Lesotho - - - Code - 666 - - - Source Code - 666 - - - Short Name - Lesotho - - - Full Name - Lesotho - - - SDMX Code - LS - - - ISO 2 Code - LS - - - ISO 3 Code - LSO - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=LSO target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Lesotho - - - - - Liberia - - - Name - Liberia - - - Code - 668 - - - Source Code - 668 - - - Short Name - Liberia - - - Full Name - Liberia - - - SDMX Code - LR - - - ISO 2 Code - LR - - - ISO 3 Code - LBR - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=LBR target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Liberia - - - - - Libya - - - Name - Libya - - - Code - 672 - - - Source Code - 672 - - - Short Name - Libya - - - Full Name - Socialist People’s Libyan Arab Jamahiriya - - - SDMX Code - LY - - - ISO 2 Code - LY - - - ISO 3 Code - LBY - - - Data Quality Assurance Framework - - - - SDMX Name - Libya - - - - - Liechtenstein - - - Name - Liechtenstein - - - Code - 147 - - - Source Code - 147 - - - Short Name - Liechtenstein - - - Full Name - Liechtenstein - - - SDMX Code - LI - - - ISO 2 Code - LI - - - ISO 3 Code - LIE - - - Data Quality Assurance Framework - - - - SDMX Name - Liechtenstein - - - - - Lithuania - - - Name - Lithuania - - - Code - 946 - - - Source Code - 946 - - - Short Name - Lithuania - - - Full Name - Republic of Lithuania - - - SDMX Code - LT - - - ISO 2 Code - LT - - - ISO 3 Code - LTU - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=LTU target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Lithuania - - - - - Luxembourg - - - Name - Luxembourg - - - Code - 137 - - - Source Code - 137 - - - Short Name - Luxembourg - - - Full Name - Luxembourg - - - SDMX Code - LU - - - ISO 2 Code - LU - - - ISO 3 Code - LUX - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=LUX target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Luxembourg - - - - - Macedonia, FYR - - - Name - Macedonia, FYR - - - Code - 962 - - - Source Code - 962 - - - Short Name - Macedonia, FYR - - - Full Name - Macedonia, former Yugoslav Republic of - - - SDMX Code - MK - - - ISO 2 Code - MK - - - ISO 3 Code - MKD - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=MKD target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Macedonia, The Former Yugoslav Republic of - - - - - Madagascar - - - Name - Madagascar - - - Code - 674 - - - Source Code - 674 - - - Short Name - Madagascar - - - Full Name - Republic of Madagascar   - - - SDMX Code - MG - - - ISO 2 Code - MG - - - ISO 3 Code - MDG - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=MDG target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Madagascar - - - - - Malawi - - - Name - Malawi - - - Code - 676 - - - Source Code - 676 - - - Short Name - Malawi - - - Full Name - Malawi - - - SDMX Code - MW - - - ISO 2 Code - MW - - - ISO 3 Code - MWI - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=MWI target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Malawi - - - - - Malaysia - - - Name - Malaysia - - - Code - 548 - - - Source Code - 548 - - - Short Name - Malaysia - - - Full Name - Malaysia - - - SDMX Code - MY - - - ISO 2 Code - MY - - - ISO 3 Code - MYS - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=MYS target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Malaysia - - - - - Malaysia-Singapore - - - Name - Malaysia-Singapore - - - Code - 552 - - - Source Code - 552 - - - Short Name - Malaysia-Singapore - - - Full Name - Malaysia-Singapore - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Malaysia, West - - - Name - Malaysia, West - - - Code - 554 - - - Source Code - 554 - - - Short Name - Malaysia, West - - - Full Name - Malaysia, West - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Maldives - - - Name - Maldives - - - Code - 556 - - - Source Code - 556 - - - Short Name - Maldives - - - Full Name - Maldives - - - SDMX Code - MV - - - ISO 2 Code - MV - - - ISO 3 Code - MDV - - - Data Quality Assurance Framework - - - - SDMX Name - Maldives - - - - - Mali - - - Name - Mali - - - Code - 678 - - - Source Code - 678 - - - Short Name - Mali - - - Full Name - Mali - - - SDMX Code - ML - - - ISO 2 Code - ML - - - ISO 3 Code - MLI - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=MLI target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Mali - - - - - Malta - - - Name - Malta - - - Code - 181 - - - Source Code - 181 - - - Short Name - Malta - - - Full Name - Malta - - - SDMX Code - MT - - - ISO 2 Code - MT - - - ISO 3 Code - MLT - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=MLT target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Malta - - - - - Marshall Islands, Republic of - - - Name - Marshall Islands, Republic of - - - Code - 867 - - - Source Code - 867 - - - Short Name - Marshall Islands,Rep - - - Full Name - Republic of the Marshall Islands - - - SDMX Code - MH - - - ISO 2 Code - MH - - - ISO 3 Code - MHL - - - Data Quality Assurance Framework - - - - SDMX Name - Marshall islands - - - - - Martinique - - - Name - Martinique - - - Code - 349 - - - Source Code - 349 - - - Short Name - Martinique - - - Full Name - Martinique - - - SDMX Code - MQ - - - ISO 2 Code - MQ - - - ISO 3 Code - MTQ - - - Data Quality Assurance Framework - - - - SDMX Name - Martinique - - - - - Mauritania - - - Name - Mauritania - - - Code - 682 - - - Source Code - 682 - - - Short Name - Mauritania - - - Full Name - Islamic Republic of Mauritania - - - SDMX Code - MR - - - ISO 2 Code - MR - - - ISO 3 Code - MRT - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=MRT target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Mauritania - - - - - Mauritius - - - Name - Mauritius - - - Code - 684 - - - Source Code - 684 - - - Short Name - Mauritius - - - Full Name - Republic of Mauritius - - - SDMX Code - MU - - - ISO 2 Code - MU - - - ISO 3 Code - MUS - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=MUS target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Mauritius - - - - - Mayotte - - - Name - Mayotte - - - Code - 920 - - - Source Code - 920 - - - Short Name - Mayotte - - - Full Name - Mayotte - - - SDMX Code - YT - - - ISO 2 Code - YT - - - ISO 3 Code - MYT - - - Data Quality Assurance Framework - - - - SDMX Name - Mayotte - - - - - Mexico - - - Name - Mexico - - - Code - 273 - - - Source Code - 273 - - - Short Name - Mexico - - - Full Name - Mexico - - - SDMX Code - MX - - - ISO 2 Code - MX - - - ISO 3 Code - MEX - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=MEX target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Mexico - - - - - Micronesia, Federated States of - - - Name - Micronesia, Federated States of - - - Code - 868 - - - Source Code - 868 - - - Short Name - Micronesia, Fed.Sts. - - - Full Name - Micronesia, Federated States of - - - SDMX Code - FM - - - ISO 2 Code - FM - - - ISO 3 Code - FSM - - - Data Quality Assurance Framework - - - - SDMX Name - Micronesia, Federated States of - - - - - Moldova - - - Name - Moldova - - - Code - 921 - - - Source Code - 921 - - - Short Name - Moldova - - - Full Name - Republic of Moldova - - - SDMX Code - MD - - - ISO 2 Code - MD - - - ISO 3 Code - MDA - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=MDA target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Moldova, Republic of - - - - - Monaco - - - Name - Monaco - - - Code - 183 - - - Source Code - 183 - - - Short Name - Monaco - - - Full Name - Monaco - - - SDMX Code - MC - - - ISO 2 Code - MC - - - ISO 3 Code - MCO - - - Data Quality Assurance Framework - - - - SDMX Name - Monaco - - - - - Mongolia - - - Name - Mongolia - - - Code - 948 - - - Source Code - 948 - - - Short Name - Mongolia - - - Full Name - Mongolia - - - SDMX Code - MN - - - ISO 2 Code - MN - - - ISO 3 Code - MNG - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=MNG target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Mongolia - - - - - Montenegro - - - Name - Montenegro - - - Code - 943 - - - Source Code - 943 - - - Short Name - Montenegro - - - Full Name - Montenegro - - - SDMX Code - ME - - - ISO 2 Code - ME - - - ISO 3 Code - MNE - - - Data Quality Assurance Framework - - - - SDMX Name - Montenegro - - - - - Montserrat - - - Name - Montserrat - - - Code - 351 - - - Source Code - 351 - - - Short Name - Montserrat - - - Full Name - Montserrat - - - SDMX Code - MS - - - ISO 2 Code - MS - - - ISO 3 Code - MSR - - - Data Quality Assurance Framework - - - - SDMX Name - Montserrat - - - - - Morocco - - - Name - Morocco - - - Code - 686 - - - Source Code - 686 - - - Short Name - Morocco - - - Full Name - Morocco - - - SDMX Code - MA - - - ISO 2 Code - MA - - - ISO 3 Code - MAR - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=MAR target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Morocco - - - - - Mozambique - - - Name - Mozambique - - - Code - 688 - - - Source Code - 688 - - - Short Name - Mozambique - - - Full Name - Republic of Mozambique - - - SDMX Code - MZ - - - ISO 2 Code - MZ - - - ISO 3 Code - MOZ - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=MOZ target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Mozambique - - - - - Myanmar - - - Name - Myanmar - - - Code - 518 - - - Source Code - 518 - - - Short Name - Myanmar - - - Full Name - Myanmar - - - SDMX Code - MM - - - ISO 2 Code - MM - - - ISO 3 Code - MMR - - - Data Quality Assurance Framework - - - - SDMX Name - Myanmar - - - - - Namibia - - - Name - Namibia - - - Code - 728 - - - Source Code - 728 - - - Short Name - Namibia - - - Full Name - Namibia - - - SDMX Code - NA - - - ISO 2 Code - NA - - - ISO 3 Code - NAM - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=NAM target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Namibia - - - - - Nauru - - - Name - Nauru - - - Code - 836 - - - Source Code - 836 - - - Short Name - Nauru - - - Full Name - Nauru - - - SDMX Code - NR - - - ISO 2 Code - NR - - - ISO 3 Code - NRU - - - Data Quality Assurance Framework - - - - SDMX Name - Nauru - - - - - Nepal - - - Name - Nepal - - - Code - 558 - - - Source Code - 558 - - - Short Name - Nepal - - - Full Name - Nepal - - - SDMX Code - NP - - - ISO 2 Code - NP - - - ISO 3 Code - NPL - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=NPL target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Nepal - - - - - Netherlands - - - Name - Netherlands - - - Code - 138 - - - Source Code - 138 - - - Short Name - Netherlands - - - Full Name - Kingdom of the Netherlands—Netherlands - - - SDMX Code - NL - - - ISO 2 Code - NL - - - ISO 3 Code - NLD - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=NLD target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Netherlands - - - - - Netherlands Antilles - - - Name - Netherlands Antilles - - - Code - 353 - - - Source Code - 353 - - - Short Name - Netherlands Antilles - - - Full Name - Kingdom of the Netherlands—Netherlands Antilles - - - SDMX Code - AN - - - ISO 2 Code - AN - - - ISO 3 Code - ANT - - - Data Quality Assurance Framework - - - - SDMX Name - Netherlands Antilles - - - - - New Zealand - - - Name - New Zealand - - - Code - 196 - - - Source Code - 196 - - - Short Name - New Zealand - - - Full Name - New Zealand - - - SDMX Code - NZ - - - ISO 2 Code - NZ - - - ISO 3 Code - NZL - - - Data Quality Assurance Framework - - - - SDMX Name - New Zealand - - - - - Nicaragua - - - Name - Nicaragua - - - Code - 278 - - - Source Code - 278 - - - Short Name - Nicaragua - - - Full Name - Nicaragua - - - SDMX Code - NI - - - ISO 2 Code - NI - - - ISO 3 Code - NIC - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=NIC target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Nicaragua - - - - - Niger - - - Name - Niger - - - Code - 692 - - - Source Code - 692 - - - Short Name - Niger - - - Full Name - Niger - - - SDMX Code - NE - - - ISO 2 Code - NE - - - ISO 3 Code - NER - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=NER target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Niger - - - - - Nigeria - - - Name - Nigeria - - - Code - 694 - - - Source Code - 694 - - - Short Name - Nigeria - - - Full Name - Nigeria - - - SDMX Code - NG - - - ISO 2 Code - NG - - - ISO 3 Code - NGA - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=NGA target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Nigeria - - - - - Niue - - - Name - Niue - - - Code - 851 - - - Source Code - 851 - - - Short Name - Niue - - - Full Name - Niue - - - SDMX Code - NU - - - ISO 2 Code - NU - - - ISO 3 Code - NIU - - - Data Quality Assurance Framework - - - - SDMX Name - Niue - - - - - Norfolk Island - - - Name - Norfolk Island - - - Code - 849 - - - Source Code - 849 - - - Short Name - Norfolk Island - - - Full Name - Norfolk Island - - - SDMX Code - NF - - - ISO 2 Code - NF - - - ISO 3 Code - NFK - - - Data Quality Assurance Framework - - - - SDMX Name - Norfolk Island - - - - - North Vietnam - - - Name - North Vietnam - - - Code - 958 - - - Source Code - 958 - - - Short Name - North Vietnam - - - Full Name - North Vietnam - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Northern Mariana Isl - - - Name - Northern Mariana Isl - - - Code - 817 - - - Source Code - 817 - - - Short Name - Northern Mariana Isl - - - Full Name - Northern Mariana Isl - - - SDMX Code - MP - - - ISO 2 Code - MP - - - ISO 3 Code - MNP - - - Data Quality Assurance Framework - - - - SDMX Name - Northern Mariana Islands - - - - - Norway - - - Name - Norway - - - Code - 142 - - - Source Code - 142 - - - Short Name - Norway - - - Full Name - Norway - - - SDMX Code - NO - - - ISO 2 Code - NO - - - ISO 3 Code - NOR - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=NOR target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Norway - - - - - Oman - - - Name - Oman - - - Code - 449 - - - Source Code - 449 - - - Short Name - Oman - - - Full Name - Oman - - - SDMX Code - OM - - - ISO 2 Code - OM - - - ISO 3 Code - OMN - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=OMN target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Oman - - - - - Pakistan - - - Name - Pakistan - - - Code - 564 - - - Source Code - 564 - - - Short Name - Pakistan - - - Full Name - Pakistan - - - SDMX Code - PK - - - ISO 2 Code - PK - - - ISO 3 Code - PAK - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=PAK target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Pakistan - - - - - Palau - - - Name - Palau - - - Code - 565 - - - Source Code - 565 - - - Short Name - Palau - - - Full Name - Republic of Palau - - - SDMX Code - PW - - - ISO 2 Code - PW - - - ISO 3 Code - PLW - - - Data Quality Assurance Framework - - - - SDMX Name - Palau - - - - - Panama - - - Name - Panama - - - Code - 283 - - - Source Code - 283 - - - Short Name - Panama - - - Full Name - Panama - - - SDMX Code - PA - - - ISO 2 Code - PA - - - ISO 3 Code - PAN - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=PAN target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Panama - - - - - Panama Canal Zone - - - Name - Panama Canal Zone - - - Code - 356 - - - Source Code - 356 - - - Short Name - Panama Canal Zone - - - Full Name - Panama Canal Zone - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Papua New Guinea - - - Name - Papua New Guinea - - - Code - 853 - - - Source Code - 853 - - - Short Name - Papua New Guinea - - - Full Name - Papua New Guinea - - - SDMX Code - PG - - - ISO 2 Code - PG - - - ISO 3 Code - PNG - - - Data Quality Assurance Framework - - - - SDMX Name - Papua New Guinea - - - - - Paraguay - - - Name - Paraguay - - - Code - 288 - - - Source Code - 288 - - - Short Name - Paraguay - - - Full Name - Paraguay - - - SDMX Code - PY - - - ISO 2 Code - PY - - - ISO 3 Code - PRY - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=PRY target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Paraguay - - - - - Peru - - - Name - Peru - - - Code - 293 - - - Source Code - 293 - - - Short Name - Peru - - - Full Name - Peru - - - SDMX Code - PE - - - ISO 2 Code - PE - - - ISO 3 Code - PER - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=PER target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Peru - - - - - Philippines - - - Name - Philippines - - - Code - 566 - - - Source Code - 566 - - - Short Name - Philippines - - - Full Name - Philippines - - - SDMX Code - PH - - - ISO 2 Code - PH - - - ISO 3 Code - PHL - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=PHL target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Philippines - - - - - Pitcairn Islands - - - Name - Pitcairn Islands - - - Code - 863 - - - Source Code - 863 - - - Short Name - Pitcairn Islands - - - Full Name - Pitcairn Islands - - - SDMX Code - PN - - - ISO 2 Code - PN - - - ISO 3 Code - PCN - - - Data Quality Assurance Framework - - - - SDMX Name - Pitcairn - - - - - Poland - - - Name - Poland - - - Code - 964 - - - Source Code - 964 - - - Short Name - Poland - - - Full Name - Republic of Poland - - - SDMX Code - PL - - - ISO 2 Code - PL - - - ISO 3 Code - POL - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=POL target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Poland - - - - - Portugal - - - Name - Portugal - - - Code - 182 - - - Source Code - 182 - - - Short Name - Portugal - - - Full Name - Portugal - - - SDMX Code - PT - - - ISO 2 Code - PT - - - ISO 3 Code - PRT - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=PRT target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Portugal - - - - - Puerto Rico - - - Name - Puerto Rico - - - Code - 359 - - - Source Code - 359 - - - Short Name - Puerto Rico - - - Full Name - Puerto Rico - - - SDMX Code - PR - - - ISO 2 Code - PR - - - ISO 3 Code - PRI - - - Data Quality Assurance Framework - - - - SDMX Name - Puerto Rico - - - - - Qatar - - - Name - Qatar - - - Code - 453 - - - Source Code - 453 - - - Short Name - Qatar - - - Full Name - Qatar - - - SDMX Code - QA - - - ISO 2 Code - QA - - - ISO 3 Code - QAT - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=QAT target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Qatar - - - - - Reunion - - - Name - Reunion - - - Code - 696 - - - Source Code - 696 - - - Short Name - Réunion - - - Full Name - Reunion - - - SDMX Code - RE - - - ISO 2 Code - RE - - - ISO 3 Code - REU - - - Data Quality Assurance Framework - - - - SDMX Name - Reunion - - - - - Romania - - - Name - Romania - - - Code - 968 - - - Source Code - 968 - - - Short Name - Romania - - - Full Name - Romania - - - SDMX Code - RO - - - ISO 2 Code - RO - - - ISO 3 Code - ROU - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=ROU target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Romania - - - - - Russian Federation - - - Name - Russian Federation - - - Code - 922 - - - Source Code - 922 - - - Short Name - Russian Federation - - - Full Name - Russian Federation - - - SDMX Code - RU - - - ISO 2 Code - RU - - - ISO 3 Code - RUS - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=RUS target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Russian Federation - - - - - Rwanda - - - Name - Rwanda - - - Code - 714 - - - Source Code - 714 - - - Short Name - Rwanda - - - Full Name - Rwanda - - - SDMX Code - RW - - - ISO 2 Code - RW - - - ISO 3 Code - RWA - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=RWA target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Rwanda - - - - - Ryukyus - - - Name - Ryukyus - - - Code - 568 - - - Source Code - 568 - - - Short Name - Ryukyus - - - Full Name - Ryukyus - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Saint Helena - - - Name - Saint Helena - - - Code - 856 - - - Source Code - 856 - - - Short Name - St. Helena - - - Full Name - Saint Helena - - - SDMX Code - SH - - - ISO 2 Code - SH - - - ISO 3 Code - SHN - - - Data Quality Assurance Framework - - - - SDMX Name - Saint Helena - - - - - Saint Pierre and Miquelon - - - Name - Saint Pierre and Miquelon - - - Code - 363 - - - Source Code - 363 - - - Short Name - St. Pierre-Miquelon - - - Full Name - Saint Pierre and Miquelon - - - SDMX Code - PM - - - ISO 2 Code - PM - - - ISO 3 Code - SPM - - - Data Quality Assurance Framework - - - - SDMX Name - Saint Pierre and Miquelon - - - - - Samoa - - - Name - Samoa - - - Code - 862 - - - Source Code - 862 - - - Short Name - Samoa - - - Full Name - Samoa - - - SDMX Code - WS - - - ISO 2 Code - WS - - - ISO 3 Code - WSM - - - Data Quality Assurance Framework - - - - SDMX Name - Samoa - - - - - San Marino - - - Name - San Marino - - - Code - 135 - - - Source Code - 135 - - - Short Name - San Marino - - - Full Name - Republic of San Marino - - - SDMX Code - SM - - - ISO 2 Code - SM - - - ISO 3 Code - SMR - - - Data Quality Assurance Framework - - - - SDMX Name - San Marino - - - - - Sao Tome and Principe - - - Name - Sao Tome and Principe - - - Code - 716 - - - Source Code - 716 - - - Short Name - São Tomé & Príncipe - - - Full Name - Sao Tome and Principe - - - SDMX Code - ST - - - ISO 2 Code - ST - - - ISO 3 Code - STP - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=STP target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Sao Tome and Principe - - - - - Saudi Arabia - - - Name - Saudi Arabia - - - Code - 456 - - - Source Code - 456 - - - Short Name - Saudi Arabia - - - Full Name - Saudi Arabia - - - SDMX Code - SA - - - ISO 2 Code - SA - - - ISO 3 Code - SAU - - - Data Quality Assurance Framework - - - - SDMX Name - Saudi Arabia - - - - - Senegal - - - Name - Senegal - - - Code - 722 - - - Source Code - 722 - - - Short Name - Senegal - - - Full Name - Senegal - - - SDMX Code - SN - - - ISO 2 Code - SN - - - ISO 3 Code - SEN - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=SEN target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Senegal - - - - - Serbia and Montenegro - - - Name - Serbia and Montenegro - - - Code - 965 - - - Source Code - 965 - - - Short Name - Serbia & Montenegro - - - Full Name - Serbia and Montenegro - - - SDMX Code - CS - - - ISO 2 Code - CS - - - ISO 3 Code - SCG - - - Data Quality Assurance Framework - - - - SDMX Name - Serbia and Montenegro - - - - - Serbia Montenegro not specified - - - Name - Serbia Montenegro not specified - - - Code - 945 - - - Source Code - 945 - - - Short Name - Serbia Montenegro ns - - - Full Name - Serbia Montenegro ns - - - SDMX Code - CS9 - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Serbia, Republic of - - - Name - Serbia, Republic of - - - Code - 942 - - - Source Code - 942 - - - Short Name - Serbia, Republic of - - - Full Name - Serbia, Republic of - - - SDMX Code - RS - - - ISO 2 Code - RS - - - ISO 3 Code - SRB - - - Data Quality Assurance Framework - - - - SDMX Name - Serbia - - - - - Seychelles - - - Name - Seychelles - - - Code - 718 - - - Source Code - 718 - - - Short Name - Seychelles - - - Full Name - Republic of Seychelles - - - SDMX Code - SC - - - ISO 2 Code - SC - - - ISO 3 Code - SYC - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=SYC target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Seychelles - - - - - Sierra Leone - - - Name - Sierra Leone - - - Code - 724 - - - Source Code - 724 - - - Short Name - Sierra Leone - - - Full Name - Sierra Leone - - - SDMX Code - SL - - - ISO 2 Code - SL - - - ISO 3 Code - SLE - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=SLE target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Sierra Leone - - - - - Singapore - - - Name - Singapore - - - Code - 576 - - - Source Code - 576 - - - Short Name - Singapore - - - Full Name - Singapore - - - SDMX Code - SG - - - ISO 2 Code - SG - - - ISO 3 Code - SGP - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=SGP target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Singapore - - - - - Slovak Republic - - - Name - Slovak Republic - - - Code - 936 - - - Source Code - 936 - - - Short Name - Slovak Republic - - - Full Name - Slovak Republic - - - SDMX Code - SK - - - ISO 2 Code - SK - - - ISO 3 Code - SVK - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=SVK target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Slovakia - - - - - Slovenia - - - Name - Slovenia - - - Code - 961 - - - Source Code - 961 - - - Short Name - Slovenia - - - Full Name - Republic of Slovenia - - - SDMX Code - SI - - - ISO 2 Code - SI - - - ISO 3 Code - SVN - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=SVN target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Slovenia - - - - - Solomon Islands - - - Name - Solomon Islands - - - Code - 813 - - - Source Code - 813 - - - Short Name - Solomon Islands - - - Full Name - Solomon Islands - - - SDMX Code - SB - - - ISO 2 Code - SB - - - ISO 3 Code - SLB - - - Data Quality Assurance Framework - - - - SDMX Name - Solomon Islands - - - - - Somalia - - - Name - Somalia - - - Code - 726 - - - Source Code - 726 - - - Short Name - Somalia - - - Full Name - Somalia - - - SDMX Code - SO - - - ISO 2 Code - SO - - - ISO 3 Code - SOM - - - Data Quality Assurance Framework - - - - SDMX Name - Somalia - - - - - South Africa - - - Name - South Africa - - - Code - 199 - - - Source Code - 199 - - - Short Name - South Africa - - - Full Name - South Africa - - - SDMX Code - ZA - - - ISO 2 Code - ZA - - - ISO 3 Code - ZAF - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=ZAF target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - South Africa - - - - - South Sudan - - - Name - South Sudan - - - Code - 733 - - - Source Code - 733 - - - Short Name - South Sudan, Rep. of - - - Full Name - Republic of South Sudan - - - SDMX Code - SS - - - ISO 2 Code - SS - - - ISO 3 Code - SSD - - - Data Quality Assurance Framework - - - - SDMX Name - South Sudan - - - - - Spain - - - Name - Spain - - - Code - 184 - - - Source Code - 184 - - - Short Name - Spain - - - Full Name - Spain - - - SDMX Code - ES - - - ISO 2 Code - ES - - - ISO 3 Code - ESP - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=ESP target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Spain - - - - - Sri Lanka - - - Name - Sri Lanka - - - Code - 524 - - - Source Code - 524 - - - Short Name - Sri Lanka - - - Full Name - Sri Lanka - - - SDMX Code - LK - - - ISO 2 Code - LK - - - ISO 3 Code - LKA - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=LKA target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Sri Lanka - - - - - St. Kitts and Nevis - - - Name - St. Kitts and Nevis - - - Code - 361 - - - Source Code - 361 - - - Short Name - St. Kitts and Nevis - - - Full Name - St. Kitts and Nevis - - - SDMX Code - KN - - - ISO 2 Code - KN - - - ISO 3 Code - KNA - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=KNA target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Saint Kitts and Nevis - - - - - St. Lucia - - - Name - St. Lucia - - - Code - 362 - - - Source Code - 362 - - - Short Name - St. Lucia - - - Full Name - St. Lucia - - - SDMX Code - LC - - - ISO 2 Code - LC - - - ISO 3 Code - LCA - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=LCA target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Saint Lucia - - - - - St. Vincent and the Grenadines - - - Name - St. Vincent and the Grenadines - - - Code - 364 - - - Source Code - 364 - - - Short Name - St. Vincent & Grens. - - - Full Name - St. Vincent and the Grenadines - - - SDMX Code - VC - - - ISO 2 Code - VC - - - ISO 3 Code - VCT - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=VCT target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Saint Vincent and the Grenadines - - - - - Sudan - - - Name - Sudan - - - Code - 732 - - - Source Code - 732 - - - Short Name - Sudan - - - Full Name - Sudan - - - SDMX Code - SD - - - ISO 2 Code - SD - - - ISO 3 Code - SDN - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=SDN target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Sudan - - - - - Suriname - - - Name - Suriname - - - Code - 366 - - - Source Code - 366 - - - Short Name - Suriname - - - Full Name - Suriname - - - SDMX Code - SR - - - ISO 2 Code - SR - - - ISO 3 Code - SUR - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=SUR target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Suriname - - - - - Svalbard Jan Mayen Islands - - - Name - Svalbard Jan Mayen Islands - - - Code - 141 - - - Source Code - 141 - - - Short Name - Svalbard Jan May.Isl - - - Full Name - Svalbard Jan Mayen Islands - - - SDMX Code - SJ - - - ISO 2 Code - SJ - - - ISO 3 Code - SJM - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Swaziland - - - Name - Swaziland - - - Code - 734 - - - Source Code - 734 - - - Short Name - Swaziland - - - Full Name - Swaziland - - - SDMX Code - SZ - - - ISO 2 Code - SZ - - - ISO 3 Code - SWZ - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=SWZ target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Swaziland - - - - - Sweden - - - Name - Sweden - - - Code - 144 - - - Source Code - 144 - - - Short Name - Sweden - - - Full Name - Sweden - - - SDMX Code - SE - - - ISO 2 Code - SE - - - ISO 3 Code - SWE - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=SWE target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Sweden - - - - - Switzerland - - - Name - Switzerland - - - Code - 146 - - - Source Code - 146 - - - Short Name - Switzerland - - - Full Name - Switzerland - - - SDMX Code - CH - - - ISO 2 Code - CH - - - ISO 3 Code - CHE - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=CHE target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Switzerland - - - - - Syrian Arab Republic - - - Name - Syrian Arab Republic - - - Code - 463 - - - Source Code - 463 - - - Short Name - Syrian Arab Republic - - - Full Name - Syrian Arab Republic - - - SDMX Code - SY - - - ISO 2 Code - SY - - - ISO 3 Code - SYR - - - Data Quality Assurance Framework - - - - SDMX Name - Syrian Arab Republic - - - - - Taiwan Province of China - - - Name - Taiwan Province of China - - - Code - 528 - - - Source Code - 528 - - - Short Name - Taiwan Prov.of China - - - Full Name - Taiwan Province of China - - - SDMX Code - TW - - - ISO 2 Code - TW - - - ISO 3 Code - TWN - - - Data Quality Assurance Framework - - - - SDMX Name - Taiwan, Province of China - - - - - Tajikistan - - - Name - Tajikistan - - - Code - 923 - - - Source Code - 923 - - - Short Name - Tajikistan - - - Full Name - Republic of Tajikistan - - - SDMX Code - TJ - - - ISO 2 Code - TJ - - - ISO 3 Code - TJK - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=TJK target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Tajikistan - - - - - Tanzania - - - Name - Tanzania - - - Code - 738 - - - Source Code - 738 - - - Short Name - Tanzania - - - Full Name - Tanzania - - - SDMX Code - TZ - - - ISO 2 Code - TZ - - - ISO 3 Code - TZA - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=TZA target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Tanzania, United Republic of - - - - - Thailand - - - Name - Thailand - - - Code - 578 - - - Source Code - 578 - - - Short Name - Thailand - - - Full Name - Thailand - - - SDMX Code - TH - - - ISO 2 Code - TH - - - ISO 3 Code - THA - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=THA target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Thailand - - - - - Timor-Leste, Dem. Rep. of - - - Name - Timor-Leste, Dem. Rep. of - - - Code - 537 - - - Source Code - 537 - - - Short Name - Timor-Leste - - - Full Name - The Democratic Republic of Timor-Leste - - - SDMX Code - TL - - - ISO 2 Code - TL - - - ISO 3 Code - TLS - - - Data Quality Assurance Framework - - - - SDMX Name - Timor-Leste - - - - - Togo - - - Name - Togo - - - Code - 742 - - - Source Code - 742 - - - Short Name - Togo - - - Full Name - Togo - - - SDMX Code - TG - - - ISO 2 Code - TG - - - ISO 3 Code - TGO - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=TGO target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Togo - - - - - Tokelau Islands - - - Name - Tokelau Islands - - - Code - 818 - - - Source Code - 818 - - - Short Name - Tokelau Islands - - - Full Name - Tokelau Islands - - - SDMX Code - TK - - - ISO 2 Code - TK - - - ISO 3 Code - TKL - - - Data Quality Assurance Framework - - - - SDMX Name - Tokelau - - - - - Tonga - - - Name - Tonga - - - Code - 866 - - - Source Code - 866 - - - Short Name - Tonga - - - Full Name - Tonga - - - SDMX Code - TO - - - ISO 2 Code - TO - - - ISO 3 Code - TON - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=TON target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Tonga - - - - - Trinidad and Tobago - - - Name - Trinidad and Tobago - - - Code - 369 - - - Source Code - 369 - - - Short Name - Trinidad and Tobago - - - Full Name - Trinidad and Tobago - - - SDMX Code - TT - - - ISO 2 Code - TT - - - ISO 3 Code - TTO - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=TTO target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Trinidad and Tobago - - - - - Tunisia - - - Name - Tunisia - - - Code - 744 - - - Source Code - 744 - - - Short Name - Tunisia - - - Full Name - Tunisia - - - SDMX Code - TN - - - ISO 2 Code - TN - - - ISO 3 Code - TUN - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=TUN target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Tunisia - - - - - Turkey - - - Name - Turkey - - - Code - 186 - - - Source Code - 186 - - - Short Name - Turkey - - - Full Name - Turkey - - - SDMX Code - TR - - - ISO 2 Code - TR - - - ISO 3 Code - TUR - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=TUR target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Turkey - - - - - Turkmenistan - - - Name - Turkmenistan - - - Code - 925 - - - Source Code - 925 - - - Short Name - Turkmenistan - - - Full Name - Turkmenistan - - - SDMX Code - TM - - - ISO 2 Code - TM - - - ISO 3 Code - TKM - - - Data Quality Assurance Framework - - - - SDMX Name - Turkmenistan - - - - - Turks and Caicos Islands - - - Name - Turks and Caicos Islands - - - Code - 381 - - - Source Code - 381 - - - Short Name - Turks & Caicos Isl - - - Full Name - Turks and Caicos Islands - - - SDMX Code - TC - - - ISO 2 Code - TC - - - ISO 3 Code - TCA - - - Data Quality Assurance Framework - - - - SDMX Name - Turks and Caicos Islands - - - - - Tuvalu - - - Name - Tuvalu - - - Code - 869 - - - Source Code - 869 - - - Short Name - Tuvalu - - - Full Name - Tuvalu - - - SDMX Code - TV - - - ISO 2 Code - TV - - - ISO 3 Code - TUV - - - Data Quality Assurance Framework - - - - SDMX Name - Tuvalu - - - - - U.S.S.R. - - - Name - U.S.S.R. - - - Code - 974 - - - Source Code - 974 - - - Short Name - U.S.S.R. - - - Full Name - U.S.S.R. - - - SDMX Code - SUH - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - Former U.S.S.R. - - - - - U.S.S.R. not specified - - - Name - U.S.S.R. not specified - - - Code - 930 - - - Source Code - 930 - - - Short Name - U.S.S.R. n.s. - - - Full Name - U.S.S.R. not specified - - - SDMX Code - SUH9 - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Uganda - - - Name - Uganda - - - Code - 746 - - - Source Code - 746 - - - Short Name - Uganda - - - Full Name - Uganda - - - SDMX Code - UG - - - ISO 2 Code - UG - - - ISO 3 Code - UGA - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=UGA target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Uganda - - - - - Ukraine - - - Name - Ukraine - - - Code - 926 - - - Source Code - 926 - - - Short Name - Ukraine - - - Full Name - Ukraine - - - SDMX Code - UA - - - ISO 2 Code - UA - - - ISO 3 Code - UKR - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=UKR target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Ukraine - - - - - Unallocated Borrowers - - - Name - Unallocated Borrowers - - - Code - 897 - - - Source Code - 897 - - - Short Name - Unalloc. Borrowers - - - Full Name - Unallocated Borrowers - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - United Arab Emirates - - - Name - United Arab Emirates - - - Code - 466 - - - Source Code - 466 - - - Short Name - United Arab Emirates - - - Full Name - United Arab Emirates - - - SDMX Code - AE - - - ISO 2 Code - AE - - - ISO 3 Code - ARE - - - Data Quality Assurance Framework - - - - SDMX Name - United Arab Emirates - - - - - United Kingdom - - - Name - United Kingdom - - - Code - 112 - - - Source Code - 112 - - - Short Name - United Kingdom - - - Full Name - United Kingdom - - - SDMX Code - GB - - - ISO 2 Code - GB - - - ISO 3 Code - GBR - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=GBR target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - United Kingdom - - - - - United States - - - Name - United States - - - Code - 111 - - - Source Code - 111 - - - Short Name - United States - - - Full Name - United States - - - SDMX Code - US - - - ISO 2 Code - US - - - ISO 3 Code - USA - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=USA target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - United States - - - - - United States Minor Outlying Islands - - - Name - United States Minor Outlying Islands - - - Code - 877 - - - Source Code - 877 - - - Short Name - US Poss. in Oceania - - - Full Name - United States Minor Outlying Islands - - - SDMX Code - UM - - - ISO 2 Code - UM - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Uruguay - - - Name - Uruguay - - - Code - 298 - - - Source Code - 298 - - - Short Name - Uruguay - - - Full Name - Uruguay - - - SDMX Code - UY - - - ISO 2 Code - UY - - - ISO 3 Code - URY - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/sddscountrycategorylist/?strcode=URY target='_blank'>country's Special Data Dissemination Standard (SDDS) page</a>. SDDS was established to guide IMF members that have, or that might seek, access to international capital markets in the provision of their economic and financial data to the public. - - - SDMX Name - Uruguay - - - - - US Virgin Islands - - - Name - US Virgin Islands - - - Code - 373 - - - Source Code - 373 - - - Short Name - U.S. Virgin Islands - - - Full Name - US Virgin Islands - - - SDMX Code - VI - - - ISO 2 Code - VI - - - ISO 3 Code - VIR - - - Data Quality Assurance Framework - - - - SDMX Name - Virgin Islands, U.S. - - - - - Uzbekistan - - - Name - Uzbekistan - - - Code - 927 - - - Source Code - 927 - - - Short Name - Uzbekistan - - - Full Name - Republic of Uzbekistan - - - SDMX Code - UZ - - - ISO 2 Code - UZ - - - ISO 3 Code - UZB - - - Data Quality Assurance Framework - - - - SDMX Name - Uzbekistan - - - - - Vanuatu - - - Name - Vanuatu - - - Code - 846 - - - Source Code - 846 - - - Short Name - Vanuatu - - - Full Name - Vanuatu - - - SDMX Code - VU - - - ISO 2 Code - VU - - - ISO 3 Code - VUT - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=VUT target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Vanuatu - - - - - Vatican - - - Name - Vatican - - - Code - 187 - - - Source Code - 187 - - - Short Name - Vatican - - - Full Name - Vatican - - - SDMX Code - VA - - - ISO 2 Code - VA - - - ISO 3 Code - VAT - - - Data Quality Assurance Framework - - - - SDMX Name - Holy See (Vatican City State) - - - - - Venezuela, Republica Bolivariana de - - - Name - Venezuela, Republica Bolivariana de - - - Code - 299 - - - Source Code - 299 - - - Short Name - Venezuela, Rep. Bol. - - - Full Name - Venezuela, República Bolivariana de - - - SDMX Code - VE - - - ISO 2 Code - VE - - - ISO 3 Code - VEN - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=VEN target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Venezuela, Bolivarian Republic - - - - - Vietnam - - - Name - Vietnam - - - Code - 582 - - - Source Code - 582 - - - Short Name - Vietnam - - - Full Name - Vietnam - - - SDMX Code - VN - - - ISO 2 Code - VN - - - ISO 3 Code - VNM - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=VNM target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Viet Nam - - - - - Virgin Islands, British - - - Name - Virgin Islands, British - - - Code - 371 - - - Source Code - 371 - - - Short Name - Brit Virgin Islands - - - Full Name - Virgin Islands, British - - - SDMX Code - VG - - - ISO 2 Code - VG - - - ISO 3 Code - VGB - - - Data Quality Assurance Framework - - - - SDMX Name - Virgin Islands, British - - - - - Wake Islands - - - Name - Wake Islands - - - Code - 861 - - - Source Code - 861 - - - Short Name - Wake Islands - - - Full Name - Wake Islands - - - SDMX Code - WKU - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Wallis - - - Name - Wallis - - - Code - 864 - - - Source Code - 864 - - - Short Name - Wallis - - - Full Name - Wallis - - - SDMX Code - FR2 - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Wallis and Futuna - - - Name - Wallis and Futuna - - - Code - 857 - - - Source Code - 857 - - - Short Name - Wallis-Futuna - - - Full Name - Wallis and Futuna - - - SDMX Code - WF - - - ISO 2 Code - WF - - - ISO 3 Code - WLF - - - Data Quality Assurance Framework - - - - SDMX Name - Wallis and Futuna - - - - - West Bank and Gaza - - - Name - West Bank and Gaza - - - Code - 487 - - - Source Code - 487 - - - Short Name - West Bank and Gaza - - - Full Name - West Bank and Gaza - - - SDMX Code - - - - ISO 2 Code - PS - - - ISO 3 Code - PSE - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=PSE target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - - - - - - Western Sahara - - - Name - Western Sahara - - - Code - 793 - - - Source Code - 793 - - - Short Name - Western Sahara - - - Full Name - Western Sahara - - - SDMX Code - EH - - - ISO 2 Code - - - - ISO 3 Code - ESH - - - Data Quality Assurance Framework - - - - SDMX Name - Western Sahara - - - - - Yemen Arab Rep. - - - Name - Yemen Arab Rep. - - - Code - 473 - - - Source Code - 473 - - - Short Name - Yemen Arab Rep. - - - Full Name - Yemen Arab Rep. - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - YMN - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Yemen, P.D. Rep. - - - Name - Yemen, P.D. Rep. - - - Code - 459 - - - Source Code - 459 - - - Short Name - Yemen, P.D. Rep. - - - Full Name - Yemen, P.D. Rep. - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - YMD - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Yemen, Republic of - - - Name - Yemen, Republic of - - - Code - 474 - - - Source Code - 474 - - - Short Name - Yemen, Republic of - - - Full Name - Yemen, Republic of - - - SDMX Code - YE - - - ISO 2 Code - YE - - - ISO 3 Code - YEM - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=YMN target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Yemen - - - - - Yugoslavia not specified - - - Name - Yugoslavia not specified - - - Code - 966 - - - Source Code - 966 - - - Short Name - Yugoslavia n.s. - - - Full Name - Yugoslavia not specified - - - SDMX Code - YUC9 - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Yugoslavia, SFR - - - Name - Yugoslavia, SFR - - - Code - 188 - - - Source Code - 188 - - - Short Name - Yugoslavia, SFR - - - Full Name - Yugoslavia, SFR - - - SDMX Code - YUC - - - ISO 2 Code - - - - ISO 3 Code - YUG - - - Data Quality Assurance Framework - - - - SDMX Name - Former Yugoslavia - - - - - Zambia - - - Name - Zambia - - - Code - 754 - - - Source Code - 754 - - - Short Name - Zambia - - - Full Name - Zambia - - - SDMX Code - ZM - - - ISO 2 Code - ZM - - - ISO 3 Code - ZMB - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=ZMB target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Zambia - - - - - Zimbabwe - - - Name - Zimbabwe - - - Code - 698 - - - Source Code - 698 - - - Short Name - Zimbabwe - - - Full Name - Zimbabwe - - - SDMX Code - ZW - - - ISO 2 Code - ZW - - - ISO 3 Code - ZWE - - - Data Quality Assurance Framework - For additional country metadata please refer to the <a href=http://dsbb.imf.org/Applications/web/gdds/gddscountrycategorylist/?strcode=ZWE target='_blank'>country's General Data Dissemination System (GDDS) page</a>. GDDS provides recommendations on good practice for the production and dissemination of statistics. - - - SDMX Name - Zimbabwe - - - - - Advanced Economies - - - Name - Advanced Economies - - - Code - 110 - - - Source Code - 110 - - - Short Name - - - - Full Name - - - - SDMX Code - XR29 - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Africa - - - Name - Africa - - - Code - 605 - - - Source Code - 605 - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - E4 - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Africa not specified - - - Name - Africa not specified - - - Code - 799 - - - Source Code - 799 - - - Short Name - - - - Full Name - - - - SDMX Code - F19 - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - All Countries - - - Name - All Countries - - - Code - All Countries - - - Source Code - All Countries - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - All Countries and Country Groups - - - Name - All Countries and Country Groups - - - Code - All Countries and Country Groups - - - Source Code - All Countries and Country Groups - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - All Country Groups - - - Name - All Country Groups - - - Code - All Country Groups - - - Source Code - All Country Groups - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - APEC - - - Name - APEC - - - Code - 050 - - - Source Code - 050 - - - Short Name - - - - Full Name - - - - SDMX Code - R16 - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Asia not specified - - - Name - Asia not specified - - - Code - 598 - - - Source Code - 598 - - - Short Name - - - - Full Name - - - - SDMX Code - S19 - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - British Africa not specified - - - Name - British Africa not specified - - - Code - 792 - - - Source Code - 792 - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - British Countries not specified - - - Name - British Countries not specified - - - Code - 893 - - - Source Code - 893 - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Central and eastern Europe - - - Name - Central and eastern Europe - - - Code - 904 - - - Source Code - 904 - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - CIS - - - Name - CIS - - - Code - 901 - - - Source Code - 901 - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Countries & Areas not specified - - - Name - Countries & Areas not specified - - - Code - 898 - - - Source Code - 898 - - - Short Name - - - - Full Name - - - - SDMX Code - _X - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Developing Asia - - - Name - Developing Asia - - - Code - 505 - - - Source Code - 505 - - - Short Name - - - - Full Name - - - - SDMX Code - XS25 - - - ISO 2 Code - F2 - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Developing Countries - - - Name - Developing Countries - - - Code - 202 - - - Source Code - 202 - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Developing Countries: Africa - - - Name - Developing Countries: Africa - - - Code - 607 - - - Source Code - 607 - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Developing Countries: Asia - - - Name - Developing Countries: Asia - - - Code - 507 - - - Source Code - 507 - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Developing Countries: Middle East - - - Name - Developing Countries: Middle East - - - Code - 407 - - - Source Code - 407 - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Developing Countries: Western Hemisphere - - - Name - Developing Countries: Western Hemisphere - - - Code - 207 - - - Source Code - 207 - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Emerging and Developing Countries - - - Name - Emerging and Developing Countries - - - Code - 200 - - - Source Code - 200 - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Euro Area (WEO) - - - Name - Euro Area (WEO) - - - Code - 995 - - - Source Code - 995 - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Europe - - - Name - Europe - - - Code - 170 - - - Source Code - 170 - - - Short Name - - - - Full Name - - - - SDMX Code - E1 - - - ISO 2 Code - E1 - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Europe not specified - - - Name - Europe not specified - - - Code - 884 - - - Source Code - 884 - - - Short Name - - - - Full Name - - - - SDMX Code - E19 - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - European Union - - - Name - European Union - - - Code - 998 - - - Source Code - 998 - - - Short Name - - - - Full Name - - - - SDMX Code - B0 - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Export earnings: fuel - - - Name - Export earnings: fuel - - - Code - 080 - - - Source Code - 080 - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Export earnings: nonfuel - - - Name - Export earnings: nonfuel - - - Code - 092 - - - Source Code - 092 - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - French Countries not specified - - - Name - French Countries not specified - - - Code - 896 - - - Source Code - 896 - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - French Middle East not specified - - - Name - French Middle East not specified - - - Code - 486 - - - Source Code - 486 - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Groups used in validation - - - Name - Groups used in validation - - - Code - Groups used in validation - - - Source Code - Groups used in validation - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Industrial Countries - - - Name - Industrial Countries - - - Code - 101 - - - Source Code - 101 - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Middle East - - - Name - Middle East - - - Code - 405 - - - Source Code - 405 - - - Short Name - - - - Full Name - - - - SDMX Code - F97 - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Middle East and North Africa - - - Name - Middle East and North Africa - - - Code - 406 - - - Source Code - 406 - - - Short Name - - - - Full Name - - - - SDMX Code - F98 - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Middle East not specified - - - Name - Middle East not specified - - - Code - 489 - - - Source Code - 489 - - - Short Name - - - - Full Name - - - - SDMX Code - F979 - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Middle East, North Africa, Afghanistan, and Pakistan - - - Name - Middle East, North Africa, Afghanistan, and Pakistan - - - Code - 440 - - - Source Code - 440 - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Non-Oil Develop. Countries - - - Name - Non-Oil Develop. Countries - - - Code - 201 - - - Source Code - 201 - - - Short Name - - - - Full Name - - - - SDMX Code - XR44 - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Oceania not specified - - - Name - Oceania not specified - - - Code - 892 - - - Source Code - 892 - - - Short Name - - - - Full Name - - - - SDMX Code - O39 - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Oil Exporting Countries (STA) - - - Name - Oil Exporting Countries (STA) - - - Code - 999 - - - Source Code - 999 - - - Short Name - - - - Full Name - - - - SDMX Code - XR21 - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Other Countries - - - Name - Other Countries - - - Code - 810 - - - Source Code - 810 - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Other Countries n.i.e. - - - Name - Other Countries n.i.e. - - - Code - 910 - - - Source Code - 910 - - - Short Name - - - - Full Name - - - - SDMX Code - X88 - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Portuguese Africa not specified - - - Name - Portuguese Africa not specified - - - Code - 796 - - - Source Code - 796 - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - SACCA excluding South Africa - - - Name - SACCA excluding South Africa - - - Code - 608 - - - Source Code - 608 - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - South African Common Customs Area (SACCA) - - - Name - South African Common Customs Area (SACCA) - - - Code - 198 - - - Source Code - 198 - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Spanish Africa - - - Name - Spanish Africa - - - Code - 797 - - - Source Code - 797 - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Spanish Sahara - - - Name - Spanish Sahara - - - Code - 798 - - - Source Code - 798 - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Special Categories - - - Name - Special Categories - - - Code - 899 - - - Source Code - 899 - - - Short Name - - - - Full Name - - - - SDMX Code - XR99 - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Sub-Saharan Africa - - - Name - Sub-Saharan Africa - - - Code - 603 - - - Source Code - 603 - - - Short Name - - - - Full Name - - - - SDMX Code - - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Western Hemisphere - - - Name - Western Hemisphere - - - Code - 205 - - - Source Code - 205 - - - Short Name - - - - Full Name - - - - SDMX Code - A10 - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - Western Hemisphere not specified - - - Name - Western Hemisphere not specified - - - Code - 399 - - - Source Code - 399 - - - Short Name - - - - Full Name - - - - SDMX Code - A109 - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - World - - - Name - World - - - Code - 001 - - - Source Code - 001 - - - Short Name - - - - Full Name - - - - SDMX Code - W00 - - - ISO 2 Code - - - - ISO 3 Code - - - - Data Quality Assurance Framework - - - - SDMX Name - - - - - - - Direction of Trade Statistics (DOTS) Status - - 1-5 months of reported data and 7-11 months of estimates - - - Name - 1-5 months of reported data and 7-11 months of estimates - - - Code - E_4 - - - Source Code - t - - - - - 1 month of reported data and 2 months of estimates - - - Name - 1 month of reported data and 2 months of estimates - - - Code - E_2 - - - Source Code - l - - - - - 2 months of reported data and 1 month of estimates - - - Name - 2 months of reported data and 1 month of estimates - - - Code - E_1 - - - Source Code - g - - - - - 6-11 months of reported data and 1-6 months of estimates - - - Name - 6-11 months of reported data and 1-6 months of estimates - - - Code - E_3 - - - Source Code - s - - - - - Consolidated data derived solely from partner records - - - Name - Consolidated data derived solely from partner records - - - Code - E_5 - - - Source Code - v - - - - - Consolidated data estimated by other methods, sometimes including the use of partner records; also used in world and area totals - - - Name - Consolidated data estimated by other methods, sometimes including the use of partner records; also used in world and area totals - - - Code - I_6 - - - Source Code - y - - - - - Derived from estimated partner records - - - Name - Derived from estimated partner records - - - Code - I_4 - - - Source Code - q - - - - - Derived from estimated partner records (other) - - - Name - Derived from estimated partner records (other) - - - Code - I_7 - - - Source Code - r - - - - - Derived from reported partner records - - - Name - Derived from reported partner records - - - Code - I_3 - - - Source Code - p - - - - - Distributed reported data based on total exports pattern - - - Name - Distributed reported data based on total exports pattern - - - Code - I_1 - - - Source Code - b - - - - - Evenly distributed reported data - - - Name - Evenly distributed reported data - - - Code - I_2 - - - Source Code - d - - - - - Extrapolated from estimates for this month last year, with or without an exogenous extrapolation factor or estimates from this month year before last - - - Name - Extrapolated from estimates for this month last year, with or without an exogenous extrapolation factor or estimates from this month year before last - - - Code - I_5 - - - Source Code - x - - - - - All Observation Statuses - - - Name - All Observation Statuses - - - Code - All Observation Statuses - - - Source Code - All Observation Statuses - - - - - - Time format - Time formats based on ISO 8601. - - Annual - - - Semi-annual - - - Quarterly - - - Monthly - - - Weekly - - - Daily - - - - - - Direction of Trade Statistics (DOTS) - - Value - - - - Mnemonics - - - - Scale - - - Time format - Time formats based on ISO 8601. - - - Frequency - - - Reference Area - - - Indicator - - - Counterpart Reference Area - - - Date - - - - Exception explanation - - - - Observation Status (incl. Confidentiality) - - - - - - Direction of Trade Statistics (DOTS) - - - - - - - - - - - - - - - - - - - - - - Latest Update Date - 01/27/2016 - - - Name - Direction of Trade Statistics (DOTS) - - - Temporal Coverage - Monthly and quarterly data are available starting 1960. Annual data are available starting 1947. - - - Geographic Coverage - DOTS covers 184 countries, the world, and major areas. - - - Methodology - Guide to Direction of Trade Statistics, 1993. See Documents tab. - - - Definition - The <B>Direction of Trade Statistics (DOTS)</B> presents current figures on the value of merchandise exports and imports disaggregated according to a country's primary trading partners. Area and world aggregates are included in the display of trade flows between major areas of the world. Reported data is supplemented by estimates whenever such data is not available or current. Imports are reported on a cost, insurance and freight (CIF) basis and exports are reported on a free on board (FOB) basis, with the exception of a few countries for which imports are also available FOB. Time series data includes estimates derived from reports of partner countries for non-reporting and slow-reporting countries. - - - Code - DOT - - - - -
\ No newline at end of file diff --git a/dlstats/tests/test_xml_utils.py b/dlstats/tests/test_xml_utils.py index 8264b7d..39656c5 100644 --- a/dlstats/tests/test_xml_utils.py +++ b/dlstats/tests/test_xml_utils.py @@ -28,7 +28,6 @@ #"DESTATIS": xml_samples.DSD_DESTATIS, "OECD-MEI": xml_samples.DSD_OECD_MEI, "OECD-EO": xml_samples.DSD_OECD_EO, - "IMF_DOT": xml_samples.DSD_IMF_DOT, } SAMPLES_DSD_2_1 = { @@ -43,7 +42,6 @@ SAMPLES_DATA_COMPACT_2_0 = { "EUROSTAT": xml_samples.DATA_EUROSTAT, #"DESTATIS": xml_samples.DATA_DESTATIS, - "IMF-DOT": xml_samples.DATA_IMF_DOT, } SAMPLES_DATA_GENERIC_2_0 = { diff --git a/dlstats/xml_utils.py b/dlstats/xml_utils.py index 629bc0c..83809e4 100644 --- a/dlstats/xml_utils.py +++ b/dlstats/xml_utils.py @@ -1314,55 +1314,6 @@ class XMLCompactData_2_0_DESTATIS(XMLCompactData_2_0): NS_TAG_DATA = "ns1" PROVIDER_NAME = "DESTATIS" -class XMLCompactData_2_0_IMF(XMLCompactData_2_0): - - PROVIDER_NAME = "IMF" - - def get_key(self, series, dimensions, attributes): - return "%s.%s" % (self.dataset_code, attributes["SERIESCODE"]) - - def is_series_tag(self, element): - localname = etree.QName(element.tag).localname - return localname == 'Series' - - def get_observations(self, series, frequency): - """ - - - - - - """ - observations = deque() - for obs in series.iterchildren(): - - item = {"period": None, "value": None, "attributes": {}} - - localname = etree.QName(obs.tag).localname - - if localname == "Obs": - - period = obs.attrib["TIME_PERIOD"] - if frequency == "Q" and len(period.split("-")) == 2: - period = period.replace("-0", "-Q") - - item["period"] = period - - #TODO: value manquante - item["value"] = obs.attrib.get("VALUE", "") - - for key, value in obs.attrib.items(): - if not key in ['TIME_PERIOD', 'VALUE']: - item["attributes"][key] = value - - observations.append(item) - - obs.clear() - - return list(observations) - - - class XMLCompactData_2_0_EUROSTAT(XMLCompactData_2_0): PROVIDER_NAME = "EUROSTAT" @@ -1779,7 +1730,6 @@ def __init__(self, **kwargs): "XMLCompactData_2_0": XMLCompactData_2_0, "XMLCompactData_2_0_EUROSTAT": XMLCompactData_2_0_EUROSTAT, "XMLCompactData_2_0_DESTATIS": XMLCompactData_2_0_DESTATIS, - "XMLCompactData_2_0_IMF": XMLCompactData_2_0_IMF, "XMLGenericData_2_1": XMLGenericData_2_1, "XMLGenericData_2_1_ECB": XMLGenericData_2_1_ECB, "XMLGenericData_2_1_INSEE": XMLGenericData_2_1_INSEE, From 61dcad847439f7fff15dd58076ae1a16f0c806be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20RAULT?= Date: Fri, 12 Aug 2016 18:28:25 +0200 Subject: [PATCH 3/7] update version to 0.8.7 --- dlstats/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlstats/version.py b/dlstats/version.py index a9d8f1a..bbcf1a4 100644 --- a/dlstats/version.py +++ b/dlstats/version.py @@ -1,4 +1,4 @@ -VERSION = (0, 8, 6) +VERSION = (0, 8, 7) def version_str(): if len(VERSION) == 3: From a03f1557a356fc0e033527776c6b3b4d4ca1d80f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20RAULT?= Date: Fri, 12 Aug 2016 19:11:46 +0200 Subject: [PATCH 4/7] clean module [skip ci] --- dlstats/tests/fetchers/test_ecb.py | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/dlstats/tests/fetchers/test_ecb.py b/dlstats/tests/fetchers/test_ecb.py index 76327d1..47b74a3 100644 --- a/dlstats/tests/fetchers/test_ecb.py +++ b/dlstats/tests/fetchers/test_ecb.py @@ -121,22 +121,6 @@ def get_dimensions_from_dsd_SAFE(self, xml_dsd=None, provider_name=None, dataset } } -""" - -------------------------------------------------- - --------------- CODELISTS ------------------------ - -------------------------------------------------- - --------------- DIMENSIONS ----------------------- - -------------------------------------------------- - --------------- ATTRIBUTES ------------------------ - -""" - DSD_ECB_SAFE = { "provider": "ECB", "filepaths": deepcopy(xml_samples.DATA_ECB_SPECIFIC["DSD"]["filepaths"]), From 77be6dc6a5cc0b888cc308dc6e5405af26f64f22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20RAULT?= Date: Fri, 12 Aug 2016 19:12:06 +0200 Subject: [PATCH 5/7] fixes ECB tests --- dlstats/tests/resources/xml_samples.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dlstats/tests/resources/xml_samples.py b/dlstats/tests/resources/xml_samples.py index 7baa5f8..ce92db4 100644 --- a/dlstats/tests/resources/xml_samples.py +++ b/dlstats/tests/resources/xml_samples.py @@ -648,10 +648,10 @@ def filepath(provider, filename): "dsd_id": DSD_ECB["dsd_id"], #"frequencies_supported": ["A", "D", "M", "Q", "W"] }, - "series_accept": 8, - "series_reject_frequency": 2, + "series_accept": 10, + "series_reject_frequency": 0, "series_reject_empty": 0, - "series_all_values": 9130, + "series_all_values": 9195, "series_key_first": 'A.ARS.EUR.SP00.A', "series_key_last": 'Q.AUD.EUR.SP00.A', "series_sample": { @@ -759,7 +759,7 @@ def filepath(provider, filename): DATA_ECB_SPECIFIC = _DATA_ECB.copy() DATA_ECB_SPECIFIC["filepath"] = filepath("ecb", "ecb-data-specific-2.1.xml") DATA_ECB_SPECIFIC["klass"] = "XMLSpecificData_2_1_ECB" -DATA_ECB_SPECIFIC["series_all_values"] = 9140 +DATA_ECB_SPECIFIC["series_all_values"] = 9205 DATA_INSEE_GENERIC = _DATA_INSEE.copy() DATA_INSEE_GENERIC["filepath"] = filepath("insee", "insee-data-generic-2.1.xml") From 930956840c3fccced9f6dd44dc9dc210d567a2bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20RAULT?= Date: Sat, 13 Aug 2016 04:42:20 +0200 Subject: [PATCH 6/7] IMF: Remove bad dataset (RT) IMF: Fixe extract last_update from dataset name --- dlstats/fetchers/imf.py | 55 ++++++++++++++++++++++------------------- 1 file changed, 29 insertions(+), 26 deletions(-) diff --git a/dlstats/fetchers/imf.py b/dlstats/fetchers/imf.py index 0d8334b..1955e06 100644 --- a/dlstats/fetchers/imf.py +++ b/dlstats/fetchers/imf.py @@ -103,11 +103,11 @@ 'doc_href': 'http://data.imf.org/FSI', 'previous_datasets': [], }, - 'RT': { - 'name': 'International Reserves Template', - 'doc_href': 'http://data.imf.org/RT', - 'previous_datasets': [], - }, + #'RT': { + # 'name': 'International Reserves Template', + # 'doc_href': 'http://data.imf.org/RT', + # 'previous_datasets': [], + #}, 'FAS': { 'name': 'Financial Access Survey', 'doc_href': 'http://data.imf.org/FAS', @@ -548,26 +548,26 @@ ], "metadata": {} }, - { - "provider_name": "IMF", - "category_code": "RT", - "name": DATASETS["RT"]["name"], - "position": 12, - "parent": None, - "all_parents": [], - "doc_href": None, - "datasets": [ - { - "dataset_code": "RT", - "name": DATASETS["RT"]["name"], - "last_update": None, - "metadata": { - "doc_href": DATASETS["RT"]["doc_href"] - } - }, - ], - "metadata": {} - }, + #{ + # "provider_name": "IMF", + # "category_code": "RT", + # "name": DATASETS["RT"]["name"], + # "position": 12, + # "parent": None, + # "all_parents": [], + # "doc_href": None, + # "datasets": [ + # { + # "dataset_code": "RT", + # "name": DATASETS["RT"]["name"], + # "last_update": None, + # "metadata": { + # "doc_href": DATASETS["RT"]["doc_href"] + # } + # }, + # ], + # "metadata": {} + #}, { "provider_name": "IMF", "category_code": "WoRLD", @@ -968,7 +968,10 @@ def _get_data_by_dimension_multi_datasets(self): if self.current_dataset_code != self.dataset_code: year = int(self.current_dataset_code.split(self.dataset_code)[1][:4]) - month = int(self.current_dataset_code.split(self.dataset_code)[1][-2:]) + try: + month = int(self.current_dataset_code.split(self.dataset_code)[1][-2:]) + except ValueError: + month = 1 self.previous_last_update = clean_datetime(datetime(year, month, 1)) else: self.previous_last_update = None From 484e962b52f09216c66a5a87ae887034f83d3b42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20RAULT?= Date: Sat, 13 Aug 2016 05:05:36 +0200 Subject: [PATCH 7/7] Fixes http errors --- dlstats/fetchers/imf.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/dlstats/fetchers/imf.py b/dlstats/fetchers/imf.py index 1955e06..23c72e3 100644 --- a/dlstats/fetchers/imf.py +++ b/dlstats/fetchers/imf.py @@ -859,6 +859,9 @@ def download_json(self, url, params={}): #response = requests.get(url, params=params, stream=True, allow_redirects=False) logger.info("download url[%s] - filepath[%s] - status_code[%s]" % (response.url, filepath, response.status_code)) + + if response.status_code >= 400: + return response.raise_for_status() @@ -972,6 +975,8 @@ def _get_data_by_dimension_multi_datasets(self): month = int(self.current_dataset_code.split(self.dataset_code)[1][-2:]) except ValueError: month = 1 + if month <= 0 or month > 12: + month = 1 self.previous_last_update = clean_datetime(datetime(year, month, 1)) else: self.previous_last_update = None @@ -1008,6 +1013,10 @@ def _get_data_by_dimension(self): url = "%s/%s" % (self._get_url_data(), key) json_data = self.download_json(url) + + if not json_data: + logger.warning("no data for dataset[%s] - url[%s]" % (self.dataset_code, url)) + continue if not "Series" in json_data["CompactData"]["DataSet"]: logger.warning("no series for url[%s]" % url)