sources
Data license: CC-BY
1 row where datasetId = 5096 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 |
---|---|---|---|---|---|---|---|---|
17826 | Institute for Health Metrics and Evaluation, COVID-19 Estimates (2022) | { "link": "http://www.healthdata.org/covid/data-downloads", "retrievedDate": "2022-12-23", "additionalInfo": "Data from the Institute for Health Metrics and Evaluation (IHME) estimating the true number of COVID-19 infections for 165 countries and territories. More details can be found at http://www.healthdata.org/covid.", "dataPublishedBy": "Institute for Health Metrics and Evaluation" } |
2020-06-27 22:52:06 | 2020-06-27 22:52:06 | COVID-19 Model Estimates – IHME (2022) 5096 | Data from the Institute for Health Metrics and Evaluation (IHME) estimating the true number of COVID-19 infections for 165 countries and territories. More details can be found at http://www.healthdata.org/covid. | http://www.healthdata.org/covid/data-downloads | Institute for Health Metrics and Evaluation |
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");