sources
Data license: CC-BY
1 row where datasetId = 3079 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 |
---|---|---|---|---|---|---|---|---|
16214 | OWID based on UN Population Division (2017 Revision) | { "link": "https://esa.un.org/unpd/wpp/Download/Standard/Population/", "retrievedDate": "18/10/2018", "additionalInfo": "We define 'peak child' as having reached the maximum ('peak') number of children under 5 years old within the timeframe of 1950 to 2100. Historic data on under-5 population is derived from the UN Population Division (2017); future projections to 2100 are based on the UN Population Division (2017) median fertility scenario.\n\nThe 'peak child population' is defined as the under-5 population of a given country in its 'peak year' i.e. the maximum under-5 population between 1950 and 2100.\n\nCountries with an under-5 population which is still increasing by the year 2100 are assumed not to have reached peak child.", "dataPublishedBy": "United Nations, Department of Economic and Social Affairs, Population Division (2017). World Population Prospects: The 2017 Revision, DVD Edition." } |
2018-10-18 19:39:24 | 2018-10-18 19:39:24 | Peak child - OWID based on UN Population Division 3079 | We define 'peak child' as having reached the maximum ('peak') number of children under 5 years old within the timeframe of 1950 to 2100. Historic data on under-5 population is derived from the UN Population Division (2017); future projections to 2100 are based on the UN Population Division (2017) median fertility scenario. The 'peak child population' is defined as the under-5 population of a given country in its 'peak year' i.e. the maximum under-5 population between 1950 and 2100. Countries with an under-5 population which is still increasing by the year 2100 are assumed not to have reached peak child. | https://esa.un.org/unpd/wpp/Download/Standard/Population/ | United Nations, Department of Economic and Social Affairs, Population Division (2017). World Population Prospects: The 2017 Revision, DVD Edition. |
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");