sources
Data license: CC-BY
1 row where datasetId = 5413 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 |
---|---|---|---|---|---|---|---|---|
21248 | Centers for Disease Control and Prevention, Vaccine Breakthrough/Surveillance and Analytics Team | { "link": "https://data.cdc.gov/Public-Health-Surveillance/Rates-of-COVID-19-Cases-or-Deaths-by-Age-Group-and/54ys-qyzm", "additionalInfo": "For more information on the data published by the source, and the methods used to calculate the incidence rates, please refer to the CDC link above.", "dataPublishedBy": "Centers for Disease Control and Prevention, COVID-19 Response. Rates of COVID-19 Cases or Deaths by Age Group and Updated (Bivalent) Booster Status Public Use Data." } |
2021-11-22 14:08:41 | 2023-02-15 10:59:42 | COVID-19 - Deaths by vaccination status - United States 5413 | For more information on the data published by the source, and the methods used to calculate the incidence rates, please refer to the CDC link above. | https://data.cdc.gov/Public-Health-Surveillance/Rates-of-COVID-19-Cases-or-Deaths-by-Age-Group-and/54ys-qyzm | Centers for Disease Control and Prevention, COVID-19 Response. Rates of COVID-19 Cases or Deaths by Age Group and Updated (Bivalent) Booster Status Public Use 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");