sources
Data license: CC-BY
1 row where datasetId = 5234 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 |
---|---|---|---|---|---|---|---|---|
17963 | Official data collated by Our World in Data – Last updated 10 August 2023 | { "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", "dataPublisherSource": "For source details see https://github.com/owid/covid-19-data/tree/master/public/data/vaccinations/locations.csv" } |
2020-12-16 10:44:13 | 2023-08-10 00:16:07 | COVID-19 - Vaccinations 5234 | 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");