sources
Data license: CC-BY
1 row where datasetId = 5248 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 |
---|---|---|---|---|---|---|---|---|
17977 | Swedish Public Health Agency – Last updated 24 March 2023 | { "link": "https://www.folkhalsomyndigheten.se/smittskydd-beredskap/utbrott/aktuella-utbrott/covid-19/statistik-och-analyser/bekraftade-fall-i-sverige/", "additionalInfo": "This data on confirmed COVID-19 deaths is imported directly from the dataset published by the Swedish Public Health Agency (Folkh\u00e4lsomyndigheten).\n\nMore information on this dataset and the reporting method is available in <a href=\"https://ourworldindata.org/covid-sweden-death-reporting\">our dedicated blog post</a>.", "dataPublishedBy": "Swedish Public Health Agency \u2013 Last updated 28 October 2022" } |
2021-02-04 13:45:48 | 2023-03-24 11:40:11 | COVID-19 - Swedish Public Health Agency 5248 | This data on confirmed COVID-19 deaths is imported directly from the dataset published by the Swedish Public Health Agency (Folkhälsomyndigheten). More information on this dataset and the reporting method is available in <a href="https://ourworldindata.org/covid-sweden-death-reporting">our dedicated blog post</a>. | https://www.folkhalsomyndigheten.se/smittskydd-beredskap/utbrott/aktuella-utbrott/covid-19/statistik-och-analyser/bekraftade-fall-i-sverige/ | Swedish Public Health Agency – Last updated 28 October 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");