sources
Data license: CC-BY
1 row where datasetId = 5883 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 |
---|---|---|---|---|---|---|---|---|
27310 | World Health Organization | { "link": "https://covid19.who.int/data", "additionalInfo": "Raw data on confirmed cases and deaths for all countries is sourced from the <a href=\"https://covid19.who.int/data\">WHO COVID-19 Dashboard</a>. \n\nOur complete COVID-19 dataset is a collection of the COVID-19 data maintained by <em>Our World in Data</em>. <strong>It is updated daily</strong> and includes data on confirmed cases, deaths, hospitalizations, and testing.\n\nWe have created a new description of all our data sources. You find it at our GitHub repository <strong><a href=\"https://github.com/owid/covid-19-data/tree/master/public/data/\">here</a></strong>. There you can download all of our data.\n\nThe WHO licenses this data under CC BY-NC-SA 3.0 IGO. You can read more <a href=\"https://www.who.int/about/policies/publishing/copyright\">here</a>.\n\nAttribute the data as the \"WHO COVID-19 Dashboard. Geneva: World Health Organization, 2020. Available online: https://covid19.who.int/\".", "dataPublishedBy": "WHO COVID-19 Dashboard. Geneva: World Health Organization, 2020." } |
2023-02-17 16:35:04 | 2023-02-21 09:55:37 | COVID-19 Cases and deaths - WHO 5883 | Raw data on confirmed cases and deaths for all countries is sourced from the <a href="https://covid19.who.int/data">WHO COVID-19 Dashboard</a>. Our complete COVID-19 dataset is a collection of the COVID-19 data maintained by <em>Our World in Data</em>. <strong>It is updated daily</strong> and includes data on confirmed cases, deaths, hospitalizations, and testing. We have created a new description of all our data sources. You find it at our GitHub repository <strong><a href="https://github.com/owid/covid-19-data/tree/master/public/data/">here</a></strong>. There you can download all of our data. The WHO licenses this data under CC BY-NC-SA 3.0 IGO. You can read more <a href="https://www.who.int/about/policies/publishing/copyright">here</a>. Attribute the data as the "WHO COVID-19 Dashboard. Geneva: World Health Organization, 2020. Available online: https://covid19.who.int/". | https://covid19.who.int/data | WHO COVID-19 Dashboard. Geneva: World Health Organization, 2020. |
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");