sources
Data license: CC-BY
1 row where datasetId = 5415 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 |
---|---|---|---|---|---|---|---|---|
21250 | Office for National Statistics, National Immunisation Management Service | { "link": "https://www.ons.gov.uk/peoplepopulationandcommunity/birthsdeathsandmarriages/deaths/datasets/deathsbyvaccinationstatusengland", "additionalInfo": "Weekly age-standardized mortality rates and age-specific rates for deaths involving COVID-19 and all deaths by vaccination status.\n\nAge and vaccination status are defined on the date of death where a death has occurred, and on the last day of the week if not.\n\nThese figures represent death occurrences, there can be a delay between the date a death occurred and the date a death was registered.\n\nThe data represents age-standardized mortality rates per 100,000 person-years, standardized to the 2013 European Standard Population using five-year age groups from those aged 10 years and over. \"Person-years\" take into account both the number of people and the amount of time spent in each vaccination status.\n\nDeaths were defined using the International Classification of Diseases, tenth revision (ICD-10). Deaths involving the coronavirus (COVID-19) are defined as those with an underlying cause, or any mention of, ICD-10 codes U07.1 (COVID-19 virus identified) or U07.2 (COVID-19, virus not identified). The source notes that this differs from the definition used in the majority of mortality outputs.\n\nFigures are based on provisional mortality data and the Public Health Data Asset (PHDA), a linked dataset of people resident in England who could be linked to the 2011 Census and GP Patient Register. Therefore, the number of deaths and related population differ from other ONS mortality publication.\n\nRates marked as unreliable due to small numbers of deaths have been removed.", "dataPublishedBy": "Office for National Statistics, National Immunisation Management Service" } |
2021-11-22 15:13:04 | 2021-11-22 15:13:04 | COVID-19 - Deaths by vaccination status - England 5415 | Weekly age-standardized mortality rates and age-specific rates for deaths involving COVID-19 and all deaths by vaccination status. Age and vaccination status are defined on the date of death where a death has occurred, and on the last day of the week if not. These figures represent death occurrences, there can be a delay between the date a death occurred and the date a death was registered. The data represents age-standardized mortality rates per 100,000 person-years, standardized to the 2013 European Standard Population using five-year age groups from those aged 10 years and over. "Person-years" take into account both the number of people and the amount of time spent in each vaccination status. Deaths were defined using the International Classification of Diseases, tenth revision (ICD-10). Deaths involving the coronavirus (COVID-19) are defined as those with an underlying cause, or any mention of, ICD-10 codes U07.1 (COVID-19 virus identified) or U07.2 (COVID-19, virus not identified). The source notes that this differs from the definition used in the majority of mortality outputs. Figures are based on provisional mortality data and the Public Health Data Asset (PHDA), a linked dataset of people resident in England who could be linked to the 2011 Census and GP Patient Register. Therefore, the number of deaths and related population differ from other ONS mortality publication. Rates marked as unreliable due to small numbers of deaths have been removed. | https://www.ons.gov.uk/peoplepopulationandcommunity/birthsdeathsandmarriages/deaths/datasets/deathsbyvaccinationstatusengland | Office for National Statistics, National Immunisation Management Service |
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");