sources
Data license: CC-BY
1 row where datasetId = 4866 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 |
---|---|---|---|---|---|---|---|---|
17597 | Number of Adolescents – based on UN Population Division (2017) | { "additionalInfo": "The sum of the populations in three different age-brackets: 10-14 year olds, 15-19 year olds, and 20-24 year olds.\nThe estimates of the population in these age brackets is taken from the UN Population Division (2017).\nUnited Nations, Department of Economic and Social Affairs, Population Division (2017). World Population Prospects: The 2017 Revision.\n\nThe data after 2015 are the UN medium variant projections.\n\n", "dataPublishedBy": "OWID based on UN Population Division (2017)" } |
2019-11-17 17:00:48 | 2019-11-17 17:00:48 | Number of Adolescents – based on UN Population Division (2017) 4866 | The sum of the populations in three different age-brackets: 10-14 year olds, 15-19 year olds, and 20-24 year olds. The estimates of the population in these age brackets is taken from the UN Population Division (2017). United Nations, Department of Economic and Social Affairs, Population Division (2017). World Population Prospects: The 2017 Revision. The data after 2015 are the UN medium variant projections. | OWID based on UN Population Division (2017) |
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");