sources
Data license: CC-BY
2 rows where datasetId = 6153 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 |
---|---|---|---|---|---|---|---|---|
30957 | Official data collated by Our World in Data – Last updated 31 July 2024 | { "link": null, "retrievedDate": "2024-07-31", "additionalInfo": "\nData on COVID-19 vaccinations. We only rely on figures that are verifiable based on public official sources.\n\nYou can download the full dataset here: https://github.com/owid/covid-19-data/tree/master/public/data/vaccinations", "dataPublishedBy": "For source details see https://github.com/owid/covid-19-data/tree/master/public/data/vaccinations/locations.csv" } |
2024-07-31 07:49:59 | 2024-07-31 15:42:05 | COVID-19 - Vaccinations 6153 | Data on COVID-19 vaccinations. We only rely on figures that are verifiable based on public official sources. You can download the full dataset here: https://github.com/owid/covid-19-data/tree/master/public/data/vaccinations | For source details see https://github.com/owid/covid-19-data/tree/master/public/data/vaccinations/locations.csv | |
30956 | Official data collated by Our World in Data – Last updated 31 July 2024 | { "link": null, "retrievedDate": "2024-07-31", "additionalInfo": "Data on COVID-19 vaccinations. We only rely on figures that are verifiable based on public official sources.\n\nYou can download the full dataset here: https://github.com/owid/covid-19-data/tree/master/public/data/vaccinations", "dataPublishedBy": "For source details see https://github.com/owid/covid-19-data/tree/master/public/data/vaccinations/locations.csv" } |
2024-07-31 07:49:59 | 2024-07-31 15:42:01 | COVID-19 - Vaccinations 6153 | Data on COVID-19 vaccinations. We only rely on figures that are verifiable based on public official sources. You can download the full dataset here: https://github.com/owid/covid-19-data/tree/master/public/data/vaccinations | For source details see https://github.com/owid/covid-19-data/tree/master/public/data/vaccinations/locations.csv |
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");