sources
Data license: CC-BY
1 row where datasetId = 3080 sorted by id descending
This data as json, CSV (advanced)
Suggested facets: createdAt (date), updatedAt (date)
id ▲ | name | description | createdAt | updatedAt | datasetId | additionalInfo | link | dataPublishedBy |
---|---|---|---|---|---|---|---|---|
16215 | World Bank - WDI (2017) | { "link": "http://data.worldbank.org/data-catalog/world-development-indicators", "retrievedDate": "02/11/2018", "additionalInfo": "In the series for China, the original data shows a large temporary shift over the period 1997-2002. We have contacted the source for clarification, but in the meantime we have suppressed these observations from our data, since we have reasons to believe the shift is a mistake in the source. The deleted observations are: (1997, 40.95%; 1998, 44.13%; 1999, 44.09%; 2000, 41.42%; 2001, 43.20%; 2002, 41.26%).\n\nGoods exports (BoP, current US$): https://data.worldbank.org/indicator/BX.GSR.MRCH.CD?view=chart\nServices exports (BoP, current US$): https://data.worldbank.org/indicator/BX.GSR.NFSV.CD?view=chart", "dataPublishedBy": "World Bank \u2013 World Development Indicators", "dataPublisherSource": "International Monetary Fund, Balance of Payments Statistics Yearbook and data files." } |
2018-10-21 20:34:25 | 2018-10-21 20:34:25 | Share of services in total exports - WDI (2017) 3080 | In the series for China, the original data shows a large temporary shift over the period 1997-2002. We have contacted the source for clarification, but in the meantime we have suppressed these observations from our data, since we have reasons to believe the shift is a mistake in the source. The deleted observations are: (1997, 40.95%; 1998, 44.13%; 1999, 44.09%; 2000, 41.42%; 2001, 43.20%; 2002, 41.26%). Goods exports (BoP, current US$): https://data.worldbank.org/indicator/BX.GSR.MRCH.CD?view=chart Services exports (BoP, current US$): https://data.worldbank.org/indicator/BX.GSR.NFSV.CD?view=chart | http://data.worldbank.org/data-catalog/world-development-indicators | World Bank – World Development Indicators |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE "sources" ( "id" INTEGER PRIMARY KEY AUTOINCREMENT, "name" VARCHAR(512) NULL , "description" TEXT NOT NULL , "createdAt" DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP , "updatedAt" DATETIME NULL , "datasetId" INTEGER NULL, additionalInfo TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.additionalInfo')) VIRTUAL, link TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.link')) VIRTUAL, dataPublishedBy TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.dataPublishedBy')) VIRTUAL, FOREIGN KEY("datasetId") REFERENCES "datasets" ("id") ON UPDATE RESTRICT ON DELETE RESTRICT ); CREATE INDEX "sources_datasetId" ON "sources" ("datasetId");