sources
Data license: CC-BY
1 row where datasetId = 2809 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 |
---|---|---|---|---|---|---|---|---|
15546 | Urban population living in slums (WB WDI) | { "link": "http://data.worldbank.org/data-catalog/world-development-indicators", "retrievedDate": "13th June 2018", "additionalInfo": "Data on the total size of urban populations living in slums was calculated by Our World in Data based on metrics published within the World Bank, World Development Indicators: 'Urban population (total)' and '% urban population living in slums'.\n\nPopulation living in slums is the proportion of the urban population living in slum households. A slum household is defined as a group of individuals living under the same roof lacking one or more of the following conditions: access to improved water, access to improved sanitation, sufficient living area, and durability of housing.", "dataPublishedBy": "OWID based on World Bank, World Development Indicators", "dataPublisherSource": null } |
2018-06-13 16:07:48 | 2018-06-13 16:19:31 | Urban population living in slums (WB WDI) 2809 | Data on the total size of urban populations living in slums was calculated by Our World in Data based on metrics published within the World Bank, World Development Indicators: 'Urban population (total)' and '% urban population living in slums'. Population living in slums is the proportion of the urban population living in slum households. A slum household is defined as a group of individuals living under the same roof lacking one or more of the following conditions: access to improved water, access to improved sanitation, sufficient living area, and durability of housing. | http://data.worldbank.org/data-catalog/world-development-indicators | OWID based on 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");