sources
Data license: CC-BY
1 row where datasetId = 5205 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 |
---|---|---|---|---|---|---|---|---|
17935 | Official data collated by Our World in Data – Last updated 10 August 2023 | { "link": "https://github.com/owid/covid-19-data/tree/master/public/data/hospitalizations", "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 <a href=\"https://github.com/owid/covid-19-data/blob/master/public/data/hospitalizations/locations.csv\">on GitHub</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, 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.", "dataPublishedBy": "Official data collated by Our World in Data" } |
2020-10-27 14:52:30 | 2023-08-10 05:41:15 | COVID-2019 - Hospital & ICU 5205 | 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 <a href="https://github.com/owid/covid-19-data/blob/master/public/data/hospitalizations/locations.csv">on GitHub</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, 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. | 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");