sources
Data license: CC-BY
1 row where datasetId = 2980 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 |
---|---|---|---|---|---|---|---|---|
89 | Communicable Diseases – Disability Adjusted Life Years (per 100,000) - WHO (2015) | { "link": "http://apps.who.int/gho/data/node.home", "retrievedDate": "15/11/2017", "additionalInfo": "Communicable diseases, as defined by the WHO in their Global Health Observatory data repository includes: HIV/AIDS, tuberculosis, malaria, Neglected tropical diseases, cholera, influenza, meningitis, other vaccine-preventable communicable diseases, and sexually transmitted infections. \r\n\r\nData is available at the WHO's Global Health Observatory data repository: http://apps.who.int/gho/data/node.home", "dataPublishedBy": "WHO", "dataPublisherSource": "Census data." } |
2016-01-25 20:06:44 | 2017-11-15 16:02:28 | Communicable Diseases – Disability Adjusted Life Years (WHO (2015)) (split) 2980 | Communicable diseases, as defined by the WHO in their Global Health Observatory data repository includes: HIV/AIDS, tuberculosis, malaria, Neglected tropical diseases, cholera, influenza, meningitis, other vaccine-preventable communicable diseases, and sexually transmitted infections. Data is available at the WHO's Global Health Observatory data repository: http://apps.who.int/gho/data/node.home | http://apps.who.int/gho/data/node.home | WHO |
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");