sources
Data license: CC-BY
2 rows where datasetId = 6146 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 |
---|---|---|---|---|---|---|---|---|
30955 | Official data collated by Our World in Data – Last updated 31 July 2024 | { "link": "https://github.com/owid/covid-19-data/tree/master/public/data/hospitalizations", "retrievedDate": "2024-07-31", "additionalInfo": "\nOur hospital & ICU data is collected from official sources and collated by Our World in Data. The complete list of country-by-country sources is available [on GitHub](https://github.com/owid/covid-19-data/blob/master/public/data/hospitalizations/locations.csv).\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, 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.", "dataPublishedBy": "Official data collated by Our World in Data" } |
2024-07-31 06:33:50 | 2024-07-31 15:42:00 | COVID-2019 - Hospital & ICU 6146 | Our hospital & ICU data is collected from official sources and collated by Our World in Data. The complete list of country-by-country sources is available [on GitHub](https://github.com/owid/covid-19-data/blob/master/public/data/hospitalizations/locations.csv). 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, 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. | https://github.com/owid/covid-19-data/tree/master/public/data/hospitalizations | Official data collated by Our World in Data |
30954 | Official data collated by Our World in Data – Last updated 31 July 2024 | { "link": "https://github.com/owid/covid-19-data/tree/master/public/data/hospitalizations", "retrievedDate": "2024-07-31", "additionalInfo": "Our hospital & ICU data is collected from official sources and collated by Our World in Data. The complete list of country-by-country sources is available [on GitHub](https://github.com/owid/covid-19-data/blob/master/public/data/hospitalizations/locations.csv).\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, 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.", "dataPublishedBy": "Official data collated by Our World in Data" } |
2024-07-31 06:33:50 | 2024-07-31 15:41:59 | COVID-2019 - Hospital & ICU 6146 | Our hospital & ICU data is collected from official sources and collated by Our World in Data. The complete list of country-by-country sources is available [on GitHub](https://github.com/owid/covid-19-data/blob/master/public/data/hospitalizations/locations.csv). 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, 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. | https://github.com/owid/covid-19-data/tree/master/public/data/hospitalizations | Official data collated by Our World in Data |
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");