sources
Data license: CC-BY
2 rows where datasetId = 6144 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 |
---|---|---|---|---|---|---|---|---|
30945 | Centers for Disease Control and Prevention – Last updated 30 July 2024 | { "link": "https://covid.cdc.gov/covid-data-tracker/#vaccinations", "retrievedDate": "2024-07-30", "additionalInfo": "\nData on vaccinations against COVID-19, collected from the data updated daily by the United States Centers for Disease Control and Prevention.\n\nYou can download the full dataset here: https://github.com/owid/covid-19-data/tree/master/public/data/vaccinations", "dataPublishedBy": "Centers for Disease Control and Prevention \u2013 Last updated 2 November 2022 (Eastern Time)" } |
2024-07-30 16:30:39 | 2024-07-31 15:42:00 | COVID-19 - United States vaccinations 6144 | Data on vaccinations against COVID-19, collected from the data updated daily by the United States Centers for Disease Control and Prevention. You can download the full dataset here: https://github.com/owid/covid-19-data/tree/master/public/data/vaccinations | https://covid.cdc.gov/covid-data-tracker/#vaccinations | Centers for Disease Control and Prevention – Last updated 2 November 2022 (Eastern Time) |
30944 | Centers for Disease Control and Prevention – Last updated 30 July 2024 | { "link": "https://covid.cdc.gov/covid-data-tracker/#vaccinations", "retrievedDate": "2024-07-30", "additionalInfo": "Data on vaccinations against COVID-19, collected from the data updated daily by the United States Centers for Disease Control and Prevention.\n\nYou can download the full dataset here: https://github.com/owid/covid-19-data/tree/master/public/data/vaccinations", "dataPublishedBy": "Centers for Disease Control and Prevention \u2013 Last updated 2 November 2022 (Eastern Time)" } |
2024-07-30 16:30:39 | 2024-07-31 15:41:58 | COVID-19 - United States vaccinations 6144 | Data on vaccinations against COVID-19, collected from the data updated daily by the United States Centers for Disease Control and Prevention. You can download the full dataset here: https://github.com/owid/covid-19-data/tree/master/public/data/vaccinations | https://covid.cdc.gov/covid-data-tracker/#vaccinations | Centers for Disease Control and Prevention – Last updated 2 November 2022 (Eastern Time) |
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");