sources
Data license: CC-BY
1 row where datasetId = 5093 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 |
---|---|---|---|---|---|---|---|---|
17823 | Imperial College London, COVID-19 Estimates (2022) | { "link": "https://github.com/mrc-ide/global-lmic-reports/tree/master/data", "retrievedDate": "2023-02-17", "additionalInfo": "Data from Imperial College London (ICL) estimating the true number of COVID-19 infections for 193 countries and regions. More details can be found at https://mrc-ide.github.io/global-lmic-reports/.", "dataPublishedBy": "MRC Centre for Global Infectious Disease Analysis, Imperial College London" } |
2020-06-26 21:29:28 | 2023-02-17 08:46:37 | COVID-19 Model Estimates – ICL (2022) 5093 | Data from Imperial College London (ICL) estimating the true number of COVID-19 infections for 193 countries and regions. More details can be found at https://mrc-ide.github.io/global-lmic-reports/. | https://github.com/mrc-ide/global-lmic-reports/tree/master/data | MRC Centre for Global Infectious Disease Analysis, Imperial College London |
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");