sources
Data license: CC-BY
1 row where datasetId = 350 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 |
---|---|---|---|---|---|---|---|---|
457 | Causes of child mortality – IHME Global Burden of Disease study (2017) | { "link": "http://www.healthdata.org/data-visualization/gbd-compare", "retrievedDate": "14/02/2017", "additionalInfo": "Estimates refer to both sexes and to the global level.\r\n\r\nAll causes for which IHME published an estimate of 0 were removed from the dataset.\r\n\r\nEbola as a cause of death was only included in 2015 by IHME. We have assumed 0 deaths for Ebola in 1990.", "dataPublishedBy": "Institute for Health Metrics and Evaluation (IHME)", "dataPublisherSource": "Global Burden of Disease\u00a0study" } |
2017-02-10 20:45:38 | 2017-11-16 13:49:56 | Causes of child mortality – IHME Global Burden of Disease study (2017) 350 | Estimates refer to both sexes and to the global level. All causes for which IHME published an estimate of 0 were removed from the dataset. Ebola as a cause of death was only included in 2015 by IHME. We have assumed 0 deaths for Ebola in 1990. | http://www.healthdata.org/data-visualization/gbd-compare | Institute for Health Metrics and Evaluation (IHME) |
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");