sources
Data license: CC-BY
1 row where datasetId = 5253 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 |
---|---|---|---|---|---|---|---|---|
17982 | Official data collated by Our World in Data | { "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-manufacturer.csv", "dataPublisherSource": "For source details see https://github.com/owid/covid-19-data/tree/master/public/data/vaccinations/locations-manufacturer.csv" } |
2021-02-09 16:37:38 | 2021-02-09 16:37:38 | COVID-19 - Vaccinations by manufacturer 5253 | 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-manufacturer.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");