sources
Data license: CC-BY
2 rows where datasetId = 5917 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 |
---|---|---|---|---|---|---|---|---|
29567 | WHO, Global Health Observatory (2022) | { "link": "https://www.who.int/data/gho", "retrievedDate": "2023-03-09", "additionalInfo": "", "dataPublishedBy": "WHO, Global Health Observatory (2022)" } |
2023-12-14 12:03:36 | 2024-07-08 17:49:15 | Global Health Observatory: Age-standardized suicide rates (WHO, 2022) 5917 | https://www.who.int/data/gho | WHO, Global Health Observatory (2022) | |
27429 | WHO, Global Health Observatory (2022) | { "link": "https://www.who.int/data/gho", "retrievedDate": "2023-03-09", "additionalInfo": "The GHO issues analytical reports on the current situation and trends for priority health issues. A key output of the GHO is the annual publication World Health Statistics, which compiles statistics for key health indicators on an annual basis. The World Health Statistics also include a brief report on annual progress towards the health-related MDGs. In addition, the GHO provides analytical reports on cross-cutting topics such as the report on women and health and burden of disease. Lastly, the GHO provides the link to specific disease or programme reports with a strong analytical component.\n\nThis is a subset of the original GHO dataset, only including suicides-related metrics.\n", "dataPublishedBy": "WHO, Global Health Observatory (2022)" } |
2023-03-13 14:08:09 | 2024-07-08 17:49:15 | Global Health Observatory: Age-standardized suicide rates (WHO, 2022) 5917 | The GHO issues analytical reports on the current situation and trends for priority health issues. A key output of the GHO is the annual publication World Health Statistics, which compiles statistics for key health indicators on an annual basis. The World Health Statistics also include a brief report on annual progress towards the health-related MDGs. In addition, the GHO provides analytical reports on cross-cutting topics such as the report on women and health and burden of disease. Lastly, the GHO provides the link to specific disease or programme reports with a strong analytical component. This is a subset of the original GHO dataset, only including suicides-related metrics. | https://www.who.int/data/gho | WHO, Global Health Observatory (2022) |
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");