sources
Data license: CC-BY
1 row where datasetId = 4123 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 |
---|---|---|---|---|---|---|---|---|
16952 | Child mortality 1950-2017 (IHME, 2017) | { "link": "http://ghdx.healthdata.org/record/ihme-data/gbd-2017-all-cause-mortality-and-life-expectancy-1950-2017", "retrievedDate": "14th June 2019", "additionalInfo": "Child mortality is the share of newborns who die before reaching the age of five.\n\nThis data is available from 1950 to 2017 in 5-year intervals from the Institute of Health Metrics and Evaluation (IHME) Global Burden of Disease study, available at: http://ghdx.healthdata.org/record/ihme-data/gbd-2017-all-cause-mortality-and-life-expectancy-1950-2017", "dataPublishedBy": " Global Burden of Disease Collaborative Network. Global Burden of Disease Study 2017 (GBD 2017) All-cause Mortality and Life Expectancy 1950-2017. Seattle, United States: Institute for Health Metrics and Evaluation (IHME), 2018." } |
2019-05-21 04:48:08 | 2019-05-21 04:48:08 | Child mortality, 1950-2017 (IHME, 2017) 4123 | Child mortality is the share of newborns who die before reaching the age of five. This data is available from 1950 to 2017 in 5-year intervals from the Institute of Health Metrics and Evaluation (IHME) Global Burden of Disease study, available at: http://ghdx.healthdata.org/record/ihme-data/gbd-2017-all-cause-mortality-and-life-expectancy-1950-2017 | http://ghdx.healthdata.org/record/ihme-data/gbd-2017-all-cause-mortality-and-life-expectancy-1950-2017 | Global Burden of Disease Collaborative Network. Global Burden of Disease Study 2017 (GBD 2017) All-cause Mortality and Life Expectancy 1950-2017. Seattle, United States: Institute for Health Metrics and Evaluation (IHME), 2018. |
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");