sources
Data license: CC-BY
1 row where datasetId = 5777 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 |
---|---|---|---|---|---|---|---|---|
27059 | OECD | { "link": "https://data.oecd.org/healthcare/influenza-vaccination-rates.htm", "additionalInfo": "This data comes from the OECD.\n\n'Influenza vaccination rate refers to the number of people aged 65 and older who have received an annual influenza vaccination, divided by the total number of people over 65 years of age. This indicator is measured as a percentage of the population aged 65 and older who have received an annual influenza vaccine. The data come from administrative sources or surveys, depending on the country.'", "dataPublishedBy": "OECD (2022), Influenza vaccination rates (indicator). doi: 10.1787/e452582e-en (Accessed on 25 September 2022)", "dataPublisherSource": "Administrative sources and surveys" } |
2022-09-23 08:32:40 | 2022-09-23 08:32:40 | Influenza vaccination rates in over 65s (OECD) 5777 | This data comes from the OECD. 'Influenza vaccination rate refers to the number of people aged 65 and older who have received an annual influenza vaccination, divided by the total number of people over 65 years of age. This indicator is measured as a percentage of the population aged 65 and older who have received an annual influenza vaccine. The data come from administrative sources or surveys, depending on the country.' | https://data.oecd.org/healthcare/influenza-vaccination-rates.htm | OECD (2022), Influenza vaccination rates (indicator). doi: 10.1787/e452582e-en (Accessed on 25 September 2022) |
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");