sources
Data license: CC-BY
1 row where datasetId = 4249 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 |
---|---|---|---|---|---|---|---|---|
17077 | IHME, Global Burden of Disease Study (2017) | { "link": "http://ghdx.healthdata.org/gbd-results-tool?params=gbd-api-2017-permalink/8c844d72f28e48e8a6ba333b8e1fef59", "retrievedDate": "07-11-2019", "additionalInfo": "Major causes of death during the first 27 days of life\nSummed values from GHDx databases for Early neonatal (days 0-6) and Late neonatal (days 7-27) period.", "dataPublishedBy": "Institute for Health Metrics and Evaluation (IHME), 2018.", "dataPublisherSource": "Surveys and modelling " } |
2019-11-07 11:11:40 | 2019-11-07 11:11:40 | Neonatal causes of death, IHME (2017) 4249 | Major causes of death during the first 27 days of life Summed values from GHDx databases for Early neonatal (days 0-6) and Late neonatal (days 7-27) period. | http://ghdx.healthdata.org/gbd-results-tool?params=gbd-api-2017-permalink/8c844d72f28e48e8a6ba333b8e1fef59 | 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");