sources
Data license: CC-BY
2 rows where datasetId = 5785 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 |
---|---|---|---|---|---|---|---|---|
30360 | World Health Organisation | { "link": "https://www.who.int/data/global-health-estimates", "retrievedDate": "2021-09-08", "additionalInfo": "GHE estimated burden of disease", "dataPublishedBy": "World Health Organisation" } |
2024-04-04 08:25:33 | 2024-05-23 18:04:36 | Global Health Estimates 5785 | GHE estimated burden of disease | https://www.who.int/data/global-health-estimates | World Health Organisation |
27077 | World Health Organisation | { "link": "https://www.who.int/data/global-health-estimates", "retrievedDate": "2021-09-08", "additionalInfo": "WHO\u2019s Global Health Estimates (GHE) provide the latest available data on death and disability globally, by region and country, and by age, sex and cause. The latest updates include global, regional and country trends from 2000 to 2019 inclusive. By providing key insights on mortality and morbidity trends, these estimates are a powerful tool to support informed decision-making on health policy and resource allocation.", "dataPublishedBy": "World Health Organisation" } |
2022-09-28 12:26:55 | 2024-05-23 17:06:14 | Global Health Estimates 5785 | WHO’s Global Health Estimates (GHE) provide the latest available data on death and disability globally, by region and country, and by age, sex and cause. The latest updates include global, regional and country trends from 2000 to 2019 inclusive. By providing key insights on mortality and morbidity trends, these estimates are a powerful tool to support informed decision-making on health policy and resource allocation. | https://www.who.int/data/global-health-estimates | World Health Organisation |
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");