sources
Data license: CC-BY
2 rows where datasetId = 6155 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 |
---|---|---|---|---|---|---|---|---|
29711 | World Health Organization | { "link": "https://data.who.int/dashboards/covid19/", "retrievedDate": "2024-07-30", "additionalInfo": "\nRaw data on confirmed cases and deaths for all countries is sourced from the [WHO COVID-19 Dashboard](https://data.who.int/dashboards/covid19/data).\n\nOur complete COVID-19 dataset is a collection of the COVID-19 data maintained by *Our World in Data*. **It is updated daily** 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 **[here](https://github.com/owid/covid-19-data/tree/master/public/data/)**. 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 [here](https://www.who.int/about/policies/publishing/copyright).\n\nAttribute the data as the \"WHO COVID-19 Dashboard. Geneva: World Health Organization, 2020. Available online: https://data.who.int/dashboards/covid19/\".", "dataPublishedBy": "WHO COVID-19 Dashboard. Geneva: World Health Organization, 2020." } |
2024-01-03 12:49:41 | 2024-07-31 15:42:42 | COVID-19: Confirmed cases and deaths (WHO) 6155 | Raw data on confirmed cases and deaths for all countries is sourced from the [WHO COVID-19 Dashboard](https://data.who.int/dashboards/covid19/data). Our complete COVID-19 dataset is a collection of the COVID-19 data maintained by *Our World in Data*. **It is updated daily** 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 **[here](https://github.com/owid/covid-19-data/tree/master/public/data/)**. 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 [here](https://www.who.int/about/policies/publishing/copyright). Attribute the data as the "WHO COVID-19 Dashboard. Geneva: World Health Organization, 2020. Available online: https://data.who.int/dashboards/covid19/". | https://data.who.int/dashboards/covid19/ | WHO COVID-19 Dashboard. Geneva: World Health Organization, 2020. |
29710 | World Health Organization | { "link": "https://data.who.int/dashboards/covid19/", "retrievedDate": "2024-07-30", "additionalInfo": "Raw data on confirmed cases and deaths for all countries is sourced from the [WHO COVID-19 Dashboard](https://data.who.int/dashboards/covid19/data).\n\nOur complete COVID-19 dataset is a collection of the COVID-19 data maintained by *Our World in Data*. **It is updated daily** 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 **[here](https://github.com/owid/covid-19-data/tree/master/public/data/)**. 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 [here](https://www.who.int/about/policies/publishing/copyright).\n\nAttribute the data as the \"WHO COVID-19 Dashboard. Geneva: World Health Organization, 2020. Available online: https://data.who.int/dashboards/covid19/\".", "dataPublishedBy": "WHO COVID-19 Dashboard. Geneva: World Health Organization, 2020." } |
2024-01-03 12:49:40 | 2024-07-31 15:42:12 | COVID-19: Confirmed cases and deaths (WHO) 6155 | Raw data on confirmed cases and deaths for all countries is sourced from the [WHO COVID-19 Dashboard](https://data.who.int/dashboards/covid19/data). Our complete COVID-19 dataset is a collection of the COVID-19 data maintained by *Our World in Data*. **It is updated daily** 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 **[here](https://github.com/owid/covid-19-data/tree/master/public/data/)**. 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 [here](https://www.who.int/about/policies/publishing/copyright). Attribute the data as the "WHO COVID-19 Dashboard. Geneva: World Health Organization, 2020. Available online: https://data.who.int/dashboards/covid19/". | https://data.who.int/dashboards/covid19/ | 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");