sources
Data license: CC-BY
2 rows where datasetId = 6150 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 |
---|---|---|---|---|---|---|---|---|
30951 | Official data collated by Our World in Data – Last updated 30 July 2024 | { "link": "https://ourworldindata.org/coronavirus-testing#testing-for-covid-19-background-the-our-world-in-data-covid-19-testing-dataset", "retrievedDate": "2024-07-30", "additionalInfo": "\nData on COVID-19 testing. Comparisons between countries are compromised for several reasons.\n\nYou can download the full dataset, alongside detailed source descriptions here: https://github.com/owid/covid-19-data/tree/master/public/data/", "dataPublishedBy": "For source details see ourworldindata.org/coronavirus-testing#source-information-country-by-country" } |
2024-07-30 16:30:46 | 2024-07-31 15:42:03 | COVID testing time series data 6150 | Data on COVID-19 testing. Comparisons between countries are compromised for several reasons. You can download the full dataset, alongside detailed source descriptions here: https://github.com/owid/covid-19-data/tree/master/public/data/ | https://ourworldindata.org/coronavirus-testing#testing-for-covid-19-background-the-our-world-in-data-covid-19-testing-dataset | For source details see ourworldindata.org/coronavirus-testing#source-information-country-by-country |
30950 | Official data collated by Our World in Data – Last updated 30 July 2024 | { "link": "https://ourworldindata.org/coronavirus-testing#testing-for-covid-19-background-the-our-world-in-data-covid-19-testing-dataset", "retrievedDate": "2024-07-30", "additionalInfo": "Data on COVID-19 testing. Comparisons between countries are compromised for several reasons.\n\nYou can download the full dataset, alongside detailed source descriptions here: https://github.com/owid/covid-19-data/tree/master/public/data/", "dataPublishedBy": "For source details see ourworldindata.org/coronavirus-testing#source-information-country-by-country" } |
2024-07-30 16:30:46 | 2024-07-31 15:42:00 | COVID testing time series data 6150 | Data on COVID-19 testing. Comparisons between countries are compromised for several reasons. You can download the full dataset, alongside detailed source descriptions here: https://github.com/owid/covid-19-data/tree/master/public/data/ | https://ourworldindata.org/coronavirus-testing#testing-for-covid-19-background-the-our-world-in-data-covid-19-testing-dataset | For source details see ourworldindata.org/coronavirus-testing#source-information-country-by-country |
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");