sources
Data license: CC-BY
1 row where datasetId = 5528 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 |
---|---|---|---|---|---|---|---|---|
21928 | Global Malaria Programme, World Health Organization | { "link": "https://apps.who.int/iris/rest/bitstreams/1398397/retrieve", "retrievedDate": "2022-02-21", "additionalInfo": "Values for estimated malaria deaths are the point values taken from the World Malaria Report 2021. The regional values are found in the following tables: Africa (Table 3.2), South-East Asia (Table 3.3), Eastern Mediterranean (Table 3.4), Western Pacific (Table 3.5), Americas (Table 3.6) and Europe (Section 3.7). ", "dataPublishedBy": "World malaria report 2021. Geneva: World Health Organization; 2021. Licence: CC BY-NC-SA 3.0 IGO.", "dataPublisherSource": "Global Malaria Programme" } |
2022-02-21 16:08:47 | 2022-02-21 16:08:47 | Estimated Malaria Deaths 5528 | Values for estimated malaria deaths are the point values taken from the World Malaria Report 2021. The regional values are found in the following tables: Africa (Table 3.2), South-East Asia (Table 3.3), Eastern Mediterranean (Table 3.4), Western Pacific (Table 3.5), Americas (Table 3.6) and Europe (Section 3.7). | https://apps.who.int/iris/rest/bitstreams/1398397/retrieve | World malaria report 2021. Geneva: World Health Organization; 2021. Licence: CC BY-NC-SA 3.0 IGO. |
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");