sources
Data license: CC-BY
1 row where datasetId = 4117 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 |
---|---|---|---|---|---|---|---|---|
16946 | Child deaths by life stage (OWID based on UN IGME) | { "link": "http://data.worldbank.org/data-catalog/world-development-indicators", "retrievedDate": "10th May 2019", "additionalInfo": "Data represents the total number of deaths of children (under 5 years old) by life stage. \n\nThis is split into three categories: \n- the first 28 days of life; \n- 29 days to 1 year; \n- 1-4 years.\n\nThis was calculated by Our World in Data based on data on neonatal, infant and under-5 deaths published by the World Bank (based on the UN IGME).\n\n- The first 28 days of life are equally to neonatal deaths;\n- 29 days to 1 year are calculated as infant minus neonatal deaths;\n- 1-4 years calculated as under-5s minus infant deaths.", "dataPublishedBy": "OWID based on World Bank - World Development Indicators", "dataPublisherSource": "Estimates developed by the UN Inter-agency Group for Child Mortality Estimation (UNICEF, WHO, World Bank, UN DESA Population Division) at www.childmortality.org." } |
2019-05-10 11:56:33 | 2019-05-10 11:56:33 | Child deaths by life stage (OWID based on UN IGME) 4117 | Data represents the total number of deaths of children (under 5 years old) by life stage. This is split into three categories: - the first 28 days of life; - 29 days to 1 year; - 1-4 years. This was calculated by Our World in Data based on data on neonatal, infant and under-5 deaths published by the World Bank (based on the UN IGME). - The first 28 days of life are equally to neonatal deaths; - 29 days to 1 year are calculated as infant minus neonatal deaths; - 1-4 years calculated as under-5s minus infant deaths. | 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");