{ "openapi": "3.0.1", "info": { "title": "Generic API", "description": "APIs that power the map, navigation, hierarchy, area relations, announcements, logs, syndication feeds, and metrics documentation.", "version": "1.0", "contact": { "name": "UK Coronavirus Dashboard", "url": "https://coronavirus.data.gov.uk/", "email": "coronavirus-tracker@phe.gov.uk" }, "license": { "name": "Open Government Licence v3.0.", "url": "https://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/" } }, "servers": [ { "url": "https://api.coronavirus.data.gov.uk/generic", "description": "Generic API - Primary" } ], "paths": { "/healthcheck": { "get": { "summary": "Health check", "description": "Depending on service needs, checks resource connections and server health.", "operationId": "healthcheck-get", "responses": { "200": { "description": "OK - healthy", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/healthcheck" }, "examples": { "Successful health check": { "value": "{\"status\": \"OK\"}" } } } } }, "500": { "description": "Server error - unhealthy" } } } }, "/code/{area_type}/{area_code}": { "get": { "summary": "Code", "description": "Given an area type / area code combination, produces the names, codes, and centroids for the ancestors of the area - i.e. larger, more general areas of which the requested area is a member.", "operationId": "code-get", "parameters": [ { "name": "area_type", "in": "path", "description": "Type of the area whose ancestors are being requested.", "required": true, "schema": { "enum": [ "nation", "region", "utla", "ltla", "msoa", "postcode", "nhsRegion", "nhsTrust" ], "type": "string", "default": "postcode" } }, { "name": "area_code", "in": "path", "description": "Code of the area whose ancestors are being requested.", "required": true, "schema": { "type": "string" } }, { "name": "Accept", "in": "header", "required": true, "schema": { "enum": [ "application/json" ], "type": "string", "default": "application/json" } }, { "name": "Accept-Encoding", "in": "header", "schema": { "enum": [ "deflate", "gzip", "br" ], "type": "string" } } ], "responses": { "200": { "description": "Returns ancestors of the area code.", "headers": { "content-type": { "required": true, "schema": { "enum": [ "application/vnd.UKHSA-COVID19.v1+json; charset=utf-8" ], "type": "string" } }, "server": { "required": true, "description": "Server application name and version.", "schema": { "type": "string" } }, "Strict-Transport-Security": { "required": true, "description": "", "schema": { "type": "string" } }, "x-frame-options": { "required": true, "schema": { "type": "string" } }, "x-content-type-options": { "required": true, "schema": { "type": "string" } }, "x-xss-protection": { "required": true, "schema": { "type": "string" } }, "referrer-policy": { "required": true, "schema": { "type": "string" } }, "content-security-policy": { "required": true, "schema": { "type": "string" } }, "x-phe-media-type": { "required": true, "schema": { "type": "string" } }, "phe-server-loc": { "required": false, "description": "Identifier for the specific server responding to the request.", "schema": { "type": "string" } }, "Request-Context": { "required": true, "description": "Correlation ID of the request.", "schema": { "type": "string" } }, "phe-website-request": { "required": true, "description": "Identifier to determine whether the request originates from the website.", "schema": { "type": "number" } } }, "content": { "application/json": { "schema": { "$ref": "#/components/schemas/code" }, "example": { "ltla": "E09000033", "ltlaCentroid": [ -0.157209256, 51.514010951 ], "ltlaName": "Westminster", "msoa": "E02000979", "msoaCentroid": [ -0.133169461, 51.49905812 ], "msoaName": "Central Westminster", "nation": "E92000001", "nationCentroid": [ -1.463684694, 52.592370945 ], "nationName": "England", "nhsRegion": "E40000003", "nhsRegionCentroid": [], "nhsRegionName": "London", "nhsTrust": "RJ1", "nhsTrustCentroid": [], "nhsTrustName": "Guy's and St Thomas' NHS Foundation Trust", "postcode": "SW1A 0AA", "region": "E12000007", "regionCentroid": [ -0.110578143, 51.500891693 ], "regionName": "London", "trimmedPostcode": "SW1A0AA", "utla": "E09000033", "utlaCentroid": [ -0.160411474, 51.513701283 ], "utlaName": "Westminster" } } } }, "400": { "description": "Bad request. Reason provided in response body where possible." }, "404": { "description": "Not found. Likely due to an invalid area type and / or area code." }, "429": { "description": "Too many requests - request has been throttled.", "headers": { "retry-after": { "description": "Time in seconds to wait before resubmitting the request.", "required": true, "schema": { "type": "integer" } } } }, "500": { "description": "Server error" } } } }, "/soa/{area_type}/{area_code}/{metric}": { "get": { "summary": "SOA", "description": "Given an area type / area code combination, produces the latest available record for a Super Output Area (SOA).", "operationId": "soa", "parameters": [ { "name": "area_type", "in": "path", "description": "Type of the area for which the latest data is requested.", "required": true, "schema": { "enum": [ "nation", "region", "utla", "ltla", "msoa", "nhsRegion", "nhsTrust" ], "type": "string", "example": "msoa" } }, { "name": "area_code", "in": "path", "description": "Code of the area for which the latest data is requested.", "required": true, "schema": { "type": "string", "example": "E02004402" } }, { "name": "metric", "in": "path", "description": "Name of the metric for which the latest data is requested. Consult the 'Download Data' section of the site for available metrics.", "required": true, "schema": { "type": "string", "example": "newCasesBySpecimenDate" } }, { "name": "date", "in": "query", "description": "Record date. If not defined, the latest available record will be returned.", "schema": { "type": "string" } }, { "name": "Accept", "in": "header", "required": true, "schema": { "enum": [ "application/json" ], "type": "string", "default": "application/json" } }, { "name": "Accept-Encoding", "in": "header", "schema": { "enum": [ "deflate", "gzip", "br" ], "type": "string" } } ], "responses": { "200": { "description": "Returns the latest available record for the given Super Output Area (SOA).", "headers": { "content-type": { "required": true, "schema": { "enum": [ "application/vnd.UKHSA-COVID19.v1+json; charset=utf-8" ], "type": "string" } }, "server": { "required": true, "description": "Server application name and version.", "schema": { "type": "string" } }, "Strict-Transport-Security": { "required": true, "description": "", "schema": { "type": "string" } }, "x-frame-options": { "required": true, "schema": { "type": "string" } }, "x-content-type-options": { "required": true, "schema": { "type": "string" } }, "x-xss-protection": { "required": true, "schema": { "type": "string" } }, "referrer-policy": { "required": true, "schema": { "type": "string" } }, "content-security-policy": { "required": true, "schema": { "type": "string" } }, "x-phe-media-type": { "required": true, "schema": { "type": "string" } }, "phe-server-loc": { "required": false, "description": "Identifier for the specific server responding to the request.", "schema": { "type": "string" } }, "Request-Context": { "required": true, "description": "Correlation ID of the request.", "schema": { "type": "string" } }, "phe-website-request": { "required": true, "description": "Identifier to determine whether the request originates from the website.", "schema": { "type": "number" } } }, "content": { "application/json": { "schema": { "$ref": "#/components/schemas/soa" }, "examples": { "Latest response for newCasesBySpecimenDate in E02004402": { "value":"{\"areaCode\":\"E02004402\",\"areaName\":\"Bexhill Central\",\"areaType\":\"msoa\",\"date\":\"2021-08-11\",\"metric\":\"newCasesBySpecimenDate\",\"payload\":{\"change\":-2,\"changePercentage\":-14.3,\"direction\":\"DOWN\",\"rollingRate\":124.5,\"rollingSum\":12}}" } } } } }, "204": { "description": "Undocumented. Likely that the data doesn't exist for the selected area type and metric combination." }, "400": { "description": "Bad request. Reason provided in response body where possible." }, "404": { "description": "Not found. Likely due to an invalid area type and / or area code." }, "429": { "description": "Too many requests - request has been throttled.", "headers": { "retry-after": { "description": "Time in seconds to wait before resubmitting the request.", "required": true, "schema": { "type": "integer" } } } }, "500": { "description": "Server error" } } } }, "/area/{area_type}": { "get": { "summary": "Area", "description": "Provides an array of areas of an area type.", "operationId": "area-get", "parameters": [ { "name": "area_type", "in": "path", "description": "Type of the area whose children are being requested.", "required": true, "schema": { "enum": [ "nation", "region", "utla", "ltla", "msoa", "nhsRegion", "nhsTrust" ], "type": "string", "default": "msoa" } }, { "name": "Accept", "in": "header", "required": true, "schema": { "enum": [ "application/json" ], "type": "string", "default": "application/json" } }, { "name": "Accept-Encoding", "in": "header", "schema": { "enum": [ "deflate", "gzip", "br" ], "type": "string" } } ], "responses": { "200": { "description": "Returns all areas for the given area type", "headers": { "content-type": { "required": true, "schema": { "enum": [ "application/vnd.UKHSA-COVID19.v1+json; charset=utf-8" ], "type": "string" } }, "server": { "required": true, "description": "Server application name and version.", "schema": { "type": "string" } }, "Strict-Transport-Security": { "required": true, "description": "", "schema": { "type": "string" } }, "x-frame-options": { "required": true, "schema": { "type": "string" } }, "x-content-type-options": { "required": true, "schema": { "type": "string" } }, "x-xss-protection": { "required": true, "schema": { "type": "string" } }, "referrer-policy": { "required": true, "schema": { "type": "string" } }, "content-security-policy": { "required": true, "schema": { "type": "string" } }, "x-ukhsa-media-type": { "required": true, "schema": { "type": "string" } }, "ukhsa-server-loc": { "required": false, "description": "Identifier for the specific server responding to the request.", "schema": { "type": "string" } }, "Request-Context": { "required": true, "description": "Correlation ID of the request.", "schema": { "type": "string" } }, "ukhsa-website-request": { "required": true, "description": "Identifier to determine whether the request originates from the website.", "schema": { "type": "number" } } }, "content": { "application/json": { "schema": { "$ref": "#/components/schemas/area" }, "example": [ { "areaCode": "E92000001", "areaName": "England" }, { "areaCode": "N92000002", "areaName": "Northern Ireland" }, { "areaCode": "S92000003", "areaName": "Scotland" }, { "areaCode": "W92000004", "areaName": "Wales" } ] } } }, "400": { "description": "Bad request. Reason provided in response body where possible." }, "404": { "description": "Not found. Likely due to an invalid area type." }, "429": { "description": "Too many requests - request has been throttled.", "headers": { "retry-after": { "description": "Time in seconds to wait before resubmitting the request.", "required": true, "schema": { "type": "integer" } } } }, "500": { "description": "Server error" } } } }, "/area/{area_type}/area_name/{area_name}": { "get": { "summary": "Code by area name", "description": "Get area code from specified area name and type", "operationId": "area-code-get", "parameters": [ { "name": "area_type", "in": "path", "description": "Type of the area of the specified area name.", "required": true, "schema": { "enum": [ "nation", "region", "utla", "ltla", "msoa" ], "type": "string" } }, { "name": "area_name", "in": "path", "description": "The area name to search by", "required": true, "schema": { "type": "string" } } ], "responses": { "200": { "description": "Returns the area type, name and code", "headers": { "content-type": { "required": true, "schema": { "enum": [ "application/vnd.UKHSA-COVID19.v1+json; charset=utf-8" ], "type": "string" } }, "server": { "required": true, "description": "Server application name and version.", "schema": { "type": "string" } }, "Strict-Transport-Security": { "required": true, "description": "", "schema": { "type": "string" } }, "x-frame-options": { "required": true, "schema": { "type": "string" } }, "x-content-type-options": { "required": true, "schema": { "type": "string" } }, "x-xss-protection": { "required": true, "schema": { "type": "string" } }, "referrer-policy": { "required": true, "schema": { "type": "string" } }, "content-security-policy": { "required": true, "schema": { "type": "string" } }, "x-ukhsa-media-type": { "required": true, "schema": { "type": "string" } }, "ukhsa-server-loc": { "required": false, "description": "Identifier for the specific server responding to the request.", "schema": { "type": "string" } }, "Request-Context": { "required": true, "description": "Correlation ID of the request.", "schema": { "type": "string" } }, "ukhsa-website-request": { "required": true, "description": "Identifier to determine whether the request originates from the website.", "schema": { "type": "number" } } }, "content": { "application/json": { "schema": { "$ref": "#/components/schemas/area-name" }, "examples": { "example response of area code for england": { "value": "{\"areaCode\":\"E92000001\",\"areaName\":\"England\",\"areaType\":\"nation\"}" } } } } }, "400": { "description": "Bad request. Reason provided in response body where possible." }, "404": { "description": "Not found. Likely due to an invalid area type and / or area name." }, "429": { "description": "Too many requests - request has been throttled.", "headers": { "retry-after": { "description": "Time in seconds to wait before resubmitting the request.", "required": true, "schema": { "type": "integer" } } } }, "500": { "description": "Server error" } } } }, "/page_areas/{page}": { "get": { "summary": "Page areas", "description": "Given a category (website page), returns all available areas.", "operationId": "page-areas-get", "parameters": [ { "name": "page", "in": "path", "description": "Category of the page whose areas are being requested.", "required": true, "schema": { "enum": [ "cases", "testing", "deaths", "vaccinations", "healthcare" ], "type": "string" } }, { "name": "Accept", "in": "header", "required": true, "schema": { "enum": [ "application/json" ], "type": "string", "default": "application/json" } }, { "name": "Accept-Encoding", "in": "header", "schema": { "enum": [ "deflate", "gzip", "br" ], "type": "string" } } ], "responses": { "200": { "description": "Returns the areas for the specified category (page).", "headers": { "content-type": { "required": true, "schema": { "enum": [ "application/vnd.UKHSA-COVID19.v1+json; charset=utf-8" ], "type": "string" } }, "server": { "required": true, "description": "Server application name and version.", "schema": { "type": "string" } }, "Strict-Transport-Security": { "required": true, "description": "", "schema": { "type": "string" } }, "x-frame-options": { "required": true, "schema": { "type": "string" } }, "x-content-type-options": { "required": true, "schema": { "type": "string" } }, "x-xss-protection": { "required": true, "schema": { "type": "string" } }, "referrer-policy": { "required": true, "schema": { "type": "string" } }, "content-security-policy": { "required": true, "schema": { "type": "string" } }, "x-ukhsa-media-type": { "required": true, "schema": { "type": "string" } }, "ukhsa-server-loc": { "required": false, "description": "Identifier for the specific server responding to the request.", "schema": { "type": "string" } }, "Request-Context": { "required": true, "description": "Correlation ID of the request.", "schema": { "type": "string" } }, "ukhsa-website-request": { "required": true, "description": "Identifier to determine whether the request originates from the website.", "schema": { "type": "number" } } }, "content": { "application/json": { "examples": { "Cases page response": { "value": "[\n {\n \"areaCode\": \"S12000033\",\n \"areaName\": \"Aberdeen City\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"S12000034\",\n \"areaName\": \"Aberdeenshire\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000223\",\n \"areaName\": \"Adur\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000026\",\n \"areaName\": \"Allerdale\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000032\",\n \"areaName\": \"Amber Valley\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"S12000041\",\n \"areaName\": \"Angus\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"N09000001\",\n \"areaName\": \"Antrim and Newtownabbey\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"N09000011\",\n \"areaName\": \"Ards and North Down\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"S12000035\",\n \"areaName\": \"Argyll and Bute\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"N09000002\",\n \"areaName\": \"Armagh City, Banbridge and Craigavon\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000224\",\n \"areaName\": \"Arun\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000170\",\n \"areaName\": \"Ashfield\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000105\",\n \"areaName\": \"Ashford\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000004\",\n \"areaName\": \"Aylesbury Vale\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000200\",\n \"areaName\": \"Babergh\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E09000002\",\n \"areaName\": \"Barking and Dagenham\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E09000003\",\n \"areaName\": \"Barnet\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E08000016\",\n \"areaName\": \"Barnsley\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000027\",\n \"areaName\": \"Barrow-in-Furness\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000066\",\n \"areaName\": \"Basildon\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000084\",\n \"areaName\": \"Basingstoke and Deane\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000171\",\n \"areaName\": \"Bassetlaw\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000022\",\n \"areaName\": \"Bath and North East Somerset\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000055\",\n \"areaName\": \"Bedford\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"N09000003\",\n \"areaName\": \"Belfast\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E09000004\",\n \"areaName\": \"Bexley\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E08000025\",\n \"areaName\": \"Birmingham\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000129\",\n \"areaName\": \"Blaby\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000008\",\n \"areaName\": \"Blackburn with Darwen\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000009\",\n \"areaName\": \"Blackpool\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"W06000019\",\n \"areaName\": \"Blaenau Gwent\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000033\",\n \"areaName\": \"Bolsover\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E08000001\",\n \"areaName\": \"Bolton\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000136\",\n \"areaName\": \"Boston\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000058\",\n \"areaName\": \"Bournemouth, Christchurch and Poole\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000036\",\n \"areaName\": \"Bracknell Forest\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E08000032\",\n \"areaName\": \"Bradford\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000067\",\n \"areaName\": \"Braintree\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000143\",\n \"areaName\": \"Breckland\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E09000005\",\n \"areaName\": \"Brent\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000068\",\n \"areaName\": \"Brentwood\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"W06000013\",\n \"areaName\": \"Bridgend\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000043\",\n \"areaName\": \"Brighton and Hove\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000023\",\n \"areaName\": \"Bristol, City of\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000144\",\n \"areaName\": \"Broadland\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E09000006\",\n \"areaName\": \"Bromley\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000234\",\n \"areaName\": \"Bromsgrove\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000095\",\n \"areaName\": \"Broxbourne\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000172\",\n \"areaName\": \"Broxtowe\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E10000002\",\n \"areaName\": \"Buckinghamshire\",\n \"areaType\": \"utla\"\n },\n {\n \"areaCode\": \"E07000117\",\n \"areaName\": \"Burnley\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E08000002\",\n \"areaName\": \"Bury\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"W06000018\",\n \"areaName\": \"Caerphilly\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E08000033\",\n \"areaName\": \"Calderdale\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000008\",\n \"areaName\": \"Cambridge\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E10000003\",\n \"areaName\": \"Cambridgeshire\",\n \"areaType\": \"utla\"\n },\n {\n \"areaCode\": \"E09000007\",\n \"areaName\": \"Camden\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000192\",\n \"areaName\": \"Cannock Chase\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000106\",\n \"areaName\": \"Canterbury\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"W06000015\",\n \"areaName\": \"Cardiff\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000028\",\n \"areaName\": \"Carlisle\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"W06000010\",\n \"areaName\": \"Carmarthenshire\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000069\",\n \"areaName\": \"Castle Point\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"N09000004\",\n \"areaName\": \"Causeway Coast and Glens\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000056\",\n \"areaName\": \"Central Bedfordshire\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"W06000008\",\n \"areaName\": \"Ceredigion\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000130\",\n \"areaName\": \"Charnwood\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000070\",\n \"areaName\": \"Chelmsford\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000078\",\n \"areaName\": \"Cheltenham\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000177\",\n \"areaName\": \"Cherwell\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000049\",\n \"areaName\": \"Cheshire East\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000050\",\n \"areaName\": \"Cheshire West and Chester\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000034\",\n \"areaName\": \"Chesterfield\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000225\",\n \"areaName\": \"Chichester\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000005\",\n \"areaName\": \"Chiltern\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000118\",\n \"areaName\": \"Chorley\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"S12000036\",\n \"areaName\": \"City of Edinburgh\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E09000001\",\n \"areaName\": \"City of London\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"S12000005\",\n \"areaName\": \"Clackmannanshire\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000071\",\n \"areaName\": \"Colchester\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"S12000013\",\n \"areaName\": \"Comhairle nan Eilean Siar\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"W06000003\",\n \"areaName\": \"Conwy\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000029\",\n \"areaName\": \"Copeland\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000150\",\n \"areaName\": \"Corby\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000052\",\n \"areaName\": \"Cornwall and Isles of Scilly\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000079\",\n \"areaName\": \"Cotswold\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000047\",\n \"areaName\": \"County Durham\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E08000026\",\n \"areaName\": \"Coventry\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000163\",\n \"areaName\": \"Craven\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000226\",\n \"areaName\": \"Crawley\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E09000008\",\n \"areaName\": \"Croydon\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E10000006\",\n \"areaName\": \"Cumbria\",\n \"areaType\": \"utla\"\n },\n {\n \"areaCode\": \"E07000096\",\n \"areaName\": \"Dacorum\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000005\",\n \"areaName\": \"Darlington\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000107\",\n \"areaName\": \"Dartford\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000151\",\n \"areaName\": \"Daventry\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"W06000004\",\n \"areaName\": \"Denbighshire\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000015\",\n \"areaName\": \"Derby\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E10000007\",\n \"areaName\": \"Derbyshire\",\n \"areaType\": \"utla\"\n },\n {\n \"areaCode\": \"E07000035\",\n \"areaName\": \"Derbyshire Dales\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"N09000005\",\n \"areaName\": \"Derry City and Strabane\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E10000008\",\n \"areaName\": \"Devon\",\n \"areaType\": \"utla\"\n },\n {\n \"areaCode\": \"E08000017\",\n \"areaName\": \"Doncaster\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000059\",\n \"areaName\": \"Dorset\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000108\",\n \"areaName\": \"Dover\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E08000027\",\n \"areaName\": \"Dudley\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"S12000006\",\n \"areaName\": \"Dumfries and Galloway\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"S12000042\",\n \"areaName\": \"Dundee City\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E09000009\",\n \"areaName\": \"Ealing\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"S12000008\",\n \"areaName\": \"East Ayrshire\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000061\",\n \"areaName\": \"Eastbourne\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000009\",\n \"areaName\": \"East Cambridgeshire\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000040\",\n \"areaName\": \"East Devon\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"S12000045\",\n \"areaName\": \"East Dunbartonshire\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000085\",\n \"areaName\": \"East Hampshire\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000242\",\n \"areaName\": \"East Hertfordshire\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000086\",\n \"areaName\": \"Eastleigh\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000137\",\n \"areaName\": \"East Lindsey\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"S12000010\",\n \"areaName\": \"East Lothian\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E12000004\",\n \"areaName\": \"East Midlands\",\n \"areaType\": \"region\"\n },\n {\n \"areaCode\": \"E07000152\",\n \"areaName\": \"East Northamptonshire\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E12000006\",\n \"areaName\": \"East of England\",\n \"areaType\": \"region\"\n },\n {\n \"areaCode\": \"S12000011\",\n \"areaName\": \"East Renfrewshire\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000011\",\n \"areaName\": \"East Riding of Yorkshire\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000193\",\n \"areaName\": \"East Staffordshire\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000244\",\n \"areaName\": \"East Suffolk\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E10000011\",\n \"areaName\": \"East Sussex\",\n \"areaType\": \"utla\"\n },\n {\n \"areaCode\": \"E07000030\",\n \"areaName\": \"Eden\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000207\",\n \"areaName\": \"Elmbridge\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E09000010\",\n \"areaName\": \"Enfield\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E92000001\",\n \"areaName\": \"England\",\n \"areaType\": \"nation\"\n },\n {\n \"areaCode\": \"E07000072\",\n \"areaName\": \"Epping Forest\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000208\",\n \"areaName\": \"Epsom and Ewell\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000036\",\n \"areaName\": \"Erewash\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E10000012\",\n \"areaName\": \"Essex\",\n \"areaType\": \"utla\"\n },\n {\n \"areaCode\": \"E07000041\",\n \"areaName\": \"Exeter\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"S12000014\",\n \"areaName\": \"Falkirk\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000087\",\n \"areaName\": \"Fareham\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000010\",\n \"areaName\": \"Fenland\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"N09000006\",\n \"areaName\": \"Fermanagh and Omagh\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"S12000047\",\n \"areaName\": \"Fife\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"W06000005\",\n \"areaName\": \"Flintshire\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000112\",\n \"areaName\": \"Folkestone and Hythe\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000080\",\n \"areaName\": \"Forest of Dean\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000119\",\n \"areaName\": \"Fylde\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E08000037\",\n \"areaName\": \"Gateshead\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000173\",\n \"areaName\": \"Gedling\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"S12000049\",\n \"areaName\": \"Glasgow City\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000081\",\n \"areaName\": \"Gloucester\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E10000013\",\n \"areaName\": \"Gloucestershire\",\n \"areaType\": \"utla\"\n },\n {\n \"areaCode\": \"E07000088\",\n \"areaName\": \"Gosport\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000109\",\n \"areaName\": \"Gravesham\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000145\",\n \"areaName\": \"Great Yarmouth\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E09000011\",\n \"areaName\": \"Greenwich\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000209\",\n \"areaName\": \"Guildford\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"W06000002\",\n \"areaName\": \"Gwynedd\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E09000012\",\n \"areaName\": \"Hackney and City of London\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000006\",\n \"areaName\": \"Halton\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000164\",\n \"areaName\": \"Hambleton\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E09000013\",\n \"areaName\": \"Hammersmith and Fulham\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E10000014\",\n \"areaName\": \"Hampshire\",\n \"areaType\": \"utla\"\n },\n {\n \"areaCode\": \"E07000131\",\n \"areaName\": \"Harborough\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E09000014\",\n \"areaName\": \"Haringey\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000073\",\n \"areaName\": \"Harlow\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000165\",\n \"areaName\": \"Harrogate\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E09000015\",\n \"areaName\": \"Harrow\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000089\",\n \"areaName\": \"Hart\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000001\",\n \"areaName\": \"Hartlepool\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000062\",\n \"areaName\": \"Hastings\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000090\",\n \"areaName\": \"Havant\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E09000016\",\n \"areaName\": \"Havering\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000019\",\n \"areaName\": \"Herefordshire, County of\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E10000015\",\n \"areaName\": \"Hertfordshire\",\n \"areaType\": \"utla\"\n },\n {\n \"areaCode\": \"E07000098\",\n \"areaName\": \"Hertsmere\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"S12000017\",\n \"areaName\": \"Highland\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000037\",\n \"areaName\": \"High Peak\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E09000017\",\n \"areaName\": \"Hillingdon\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000132\",\n \"areaName\": \"Hinckley and Bosworth\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000227\",\n \"areaName\": \"Horsham\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E09000018\",\n \"areaName\": \"Hounslow\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000011\",\n \"areaName\": \"Huntingdonshire\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000120\",\n \"areaName\": \"Hyndburn\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"S12000018\",\n \"areaName\": \"Inverclyde\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000202\",\n \"areaName\": \"Ipswich\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"W06000001\",\n \"areaName\": \"Isle of Anglesey\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000046\",\n \"areaName\": \"Isle of Wight\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000053\",\n \"areaName\": \"Isles of Scilly\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E09000019\",\n \"areaName\": \"Islington\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E09000020\",\n \"areaName\": \"Kensington and Chelsea\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E10000016\",\n \"areaName\": \"Kent\",\n \"areaType\": \"utla\"\n },\n {\n \"areaCode\": \"E07000153\",\n \"areaName\": \"Kettering\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000146\",\n \"areaName\": \"King's Lynn and West Norfolk\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000010\",\n \"areaName\": \"Kingston upon Hull, City of\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E09000021\",\n \"areaName\": \"Kingston upon Thames\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E08000034\",\n \"areaName\": \"Kirklees\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E08000011\",\n \"areaName\": \"Knowsley\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E09000022\",\n \"areaName\": \"Lambeth\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E10000017\",\n \"areaName\": \"Lancashire\",\n \"areaType\": \"utla\"\n },\n {\n \"areaCode\": \"E07000121\",\n \"areaName\": \"Lancaster\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E08000035\",\n \"areaName\": \"Leeds\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000016\",\n \"areaName\": \"Leicester\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E10000018\",\n \"areaName\": \"Leicestershire\",\n \"areaType\": \"utla\"\n },\n {\n \"areaCode\": \"E07000063\",\n \"areaName\": \"Lewes\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E09000023\",\n \"areaName\": \"Lewisham\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000194\",\n \"areaName\": \"Lichfield\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000138\",\n \"areaName\": \"Lincoln\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E10000019\",\n \"areaName\": \"Lincolnshire\",\n \"areaType\": \"utla\"\n },\n {\n \"areaCode\": \"N09000007\",\n \"areaName\": \"Lisburn and Castlereagh\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E08000012\",\n \"areaName\": \"Liverpool\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E12000007\",\n \"areaName\": \"London\",\n \"areaType\": \"region\"\n },\n {\n \"areaCode\": \"E06000032\",\n \"areaName\": \"Luton\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000110\",\n \"areaName\": \"Maidstone\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000074\",\n \"areaName\": \"Maldon\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000235\",\n \"areaName\": \"Malvern Hills\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E08000003\",\n \"areaName\": \"Manchester\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000174\",\n \"areaName\": \"Mansfield\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000035\",\n \"areaName\": \"Medway\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000133\",\n \"areaName\": \"Melton\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000187\",\n \"areaName\": \"Mendip\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"W06000024\",\n \"areaName\": \"Merthyr Tydfil\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E09000024\",\n \"areaName\": \"Merton\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"N09000008\",\n \"areaName\": \"Mid and East Antrim\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000042\",\n \"areaName\": \"Mid Devon\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000002\",\n \"areaName\": \"Middlesbrough\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"S12000019\",\n \"areaName\": \"Midlothian\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000203\",\n \"areaName\": \"Mid Suffolk\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000228\",\n \"areaName\": \"Mid Sussex\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"N09000009\",\n \"areaName\": \"Mid Ulster\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000042\",\n \"areaName\": \"Milton Keynes\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000210\",\n \"areaName\": \"Mole Valley\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"W06000021\",\n \"areaName\": \"Monmouthshire\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"S12000020\",\n \"areaName\": \"Moray\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"S12000013\",\n \"areaName\": \"Na h-Eileanan Siar\",\n \"areaType\": \"utla\"\n },\n {\n \"areaCode\": \"W06000012\",\n \"areaName\": \"Neath Port Talbot\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000175\",\n \"areaName\": \"Newark and Sherwood\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000195\",\n \"areaName\": \"Newcastle-under-Lyme\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E08000021\",\n \"areaName\": \"Newcastle upon Tyne\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000091\",\n \"areaName\": \"New Forest\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E09000025\",\n \"areaName\": \"Newham\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"W06000022\",\n \"areaName\": \"Newport\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"N09000010\",\n \"areaName\": \"Newry, Mourne and Down\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E10000020\",\n \"areaName\": \"Norfolk\",\n \"areaType\": \"utla\"\n },\n {\n \"areaCode\": \"E07000154\",\n \"areaName\": \"Northampton\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E10000021\",\n \"areaName\": \"Northamptonshire\",\n \"areaType\": \"utla\"\n },\n {\n \"areaCode\": \"S12000021\",\n \"areaName\": \"North Ayrshire\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000043\",\n \"areaName\": \"North Devon\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E12000001\",\n \"areaName\": \"North East\",\n \"areaType\": \"region\"\n },\n {\n \"areaCode\": \"E07000038\",\n \"areaName\": \"North East Derbyshire\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000012\",\n \"areaName\": \"North East Lincolnshire\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"N92000002\",\n \"areaName\": \"Northern Ireland\",\n \"areaType\": \"nation\"\n },\n {\n \"areaCode\": \"E07000099\",\n \"areaName\": \"North Hertfordshire\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000139\",\n \"areaName\": \"North Kesteven\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"S12000050\",\n \"areaName\": \"North Lanarkshire\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000013\",\n \"areaName\": \"North Lincolnshire\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000147\",\n \"areaName\": \"North Norfolk\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000024\",\n \"areaName\": \"North Somerset\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E08000022\",\n \"areaName\": \"North Tyneside\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000057\",\n \"areaName\": \"Northumberland\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000218\",\n \"areaName\": \"North Warwickshire\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E12000002\",\n \"areaName\": \"North West\",\n \"areaType\": \"region\"\n },\n {\n \"areaCode\": \"E07000134\",\n \"areaName\": \"North West Leicestershire\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E10000023\",\n \"areaName\": \"North Yorkshire\",\n \"areaType\": \"utla\"\n },\n {\n \"areaCode\": \"E07000148\",\n \"areaName\": \"Norwich\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000018\",\n \"areaName\": \"Nottingham\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E10000024\",\n \"areaName\": \"Nottinghamshire\",\n \"areaType\": \"utla\"\n },\n {\n \"areaCode\": \"E07000219\",\n \"areaName\": \"Nuneaton and Bedworth\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000135\",\n \"areaName\": \"Oadby and Wigston\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E08000004\",\n \"areaName\": \"Oldham\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"S12000023\",\n \"areaName\": \"Orkney Islands\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000178\",\n \"areaName\": \"Oxford\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E10000025\",\n \"areaName\": \"Oxfordshire\",\n \"areaType\": \"utla\"\n },\n {\n \"areaCode\": \"W06000009\",\n \"areaName\": \"Pembrokeshire\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000122\",\n \"areaName\": \"Pendle\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"S12000048\",\n \"areaName\": \"Perth and Kinross\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000031\",\n \"areaName\": \"Peterborough\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000026\",\n \"areaName\": \"Plymouth\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000044\",\n \"areaName\": \"Portsmouth\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"W06000023\",\n \"areaName\": \"Powys\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000123\",\n \"areaName\": \"Preston\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000038\",\n \"areaName\": \"Reading\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E09000026\",\n \"areaName\": \"Redbridge\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000003\",\n \"areaName\": \"Redcar and Cleveland\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000236\",\n \"areaName\": \"Redditch\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000211\",\n \"areaName\": \"Reigate and Banstead\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"S12000038\",\n \"areaName\": \"Renfrewshire\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"W06000016\",\n \"areaName\": \"Rhondda Cynon Taf\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000124\",\n \"areaName\": \"Ribble Valley\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000166\",\n \"areaName\": \"Richmondshire\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E09000027\",\n \"areaName\": \"Richmond upon Thames\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E08000005\",\n \"areaName\": \"Rochdale\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000075\",\n \"areaName\": \"Rochford\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000125\",\n \"areaName\": \"Rossendale\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000064\",\n \"areaName\": \"Rother\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E08000018\",\n \"areaName\": \"Rotherham\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000220\",\n \"areaName\": \"Rugby\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000212\",\n \"areaName\": \"Runnymede\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000176\",\n \"areaName\": \"Rushcliffe\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000092\",\n \"areaName\": \"Rushmoor\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000017\",\n \"areaName\": \"Rutland\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000167\",\n \"areaName\": \"Ryedale\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E08000006\",\n \"areaName\": \"Salford\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E08000028\",\n \"areaName\": \"Sandwell\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000168\",\n \"areaName\": \"Scarborough\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"S92000003\",\n \"areaName\": \"Scotland\",\n \"areaType\": \"nation\"\n },\n {\n \"areaCode\": \"S12000026\",\n \"areaName\": \"Scottish Borders\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000188\",\n \"areaName\": \"Sedgemoor\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E08000014\",\n \"areaName\": \"Sefton\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000169\",\n \"areaName\": \"Selby\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000111\",\n \"areaName\": \"Sevenoaks\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E08000019\",\n \"areaName\": \"Sheffield\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"S12000027\",\n \"areaName\": \"Shetland Islands\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000051\",\n \"areaName\": \"Shropshire\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000039\",\n \"areaName\": \"Slough\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E08000029\",\n \"areaName\": \"Solihull\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E10000027\",\n \"areaName\": \"Somerset\",\n \"areaType\": \"utla\"\n },\n {\n \"areaCode\": \"E07000246\",\n \"areaName\": \"Somerset West and Taunton\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000045\",\n \"areaName\": \"Southampton\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"S12000028\",\n \"areaName\": \"South Ayrshire\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000006\",\n \"areaName\": \"South Bucks\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000012\",\n \"areaName\": \"South Cambridgeshire\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000039\",\n \"areaName\": \"South Derbyshire\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E12000008\",\n \"areaName\": \"South East\",\n \"areaType\": \"region\"\n },\n {\n \"areaCode\": \"E06000033\",\n \"areaName\": \"Southend-on-Sea\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000025\",\n \"areaName\": \"South Gloucestershire\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000044\",\n \"areaName\": \"South Hams\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000140\",\n \"areaName\": \"South Holland\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000141\",\n \"areaName\": \"South Kesteven\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000031\",\n \"areaName\": \"South Lakeland\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"S12000029\",\n \"areaName\": \"South Lanarkshire\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000149\",\n \"areaName\": \"South Norfolk\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000155\",\n \"areaName\": \"South Northamptonshire\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000179\",\n \"areaName\": \"South Oxfordshire\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000126\",\n \"areaName\": \"South Ribble\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000189\",\n \"areaName\": \"South Somerset\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000196\",\n \"areaName\": \"South Staffordshire\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E08000023\",\n \"areaName\": \"South Tyneside\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E09000028\",\n \"areaName\": \"Southwark\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E12000009\",\n \"areaName\": \"South West\",\n \"areaType\": \"region\"\n },\n {\n \"areaCode\": \"E07000213\",\n \"areaName\": \"Spelthorne\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000197\",\n \"areaName\": \"Stafford\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E10000028\",\n \"areaName\": \"Staffordshire\",\n \"areaType\": \"utla\"\n },\n {\n \"areaCode\": \"E07000198\",\n \"areaName\": \"Staffordshire Moorlands\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000240\",\n \"areaName\": \"St Albans\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000243\",\n \"areaName\": \"Stevenage\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E08000013\",\n \"areaName\": \"St. Helens\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"S12000030\",\n \"areaName\": \"Stirling\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E08000007\",\n \"areaName\": \"Stockport\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000004\",\n \"areaName\": \"Stockton-on-Tees\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000021\",\n \"areaName\": \"Stoke-on-Trent\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000221\",\n \"areaName\": \"Stratford-on-Avon\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000082\",\n \"areaName\": \"Stroud\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E10000029\",\n \"areaName\": \"Suffolk\",\n \"areaType\": \"utla\"\n },\n {\n \"areaCode\": \"E08000024\",\n \"areaName\": \"Sunderland\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E10000030\",\n \"areaName\": \"Surrey\",\n \"areaType\": \"utla\"\n },\n {\n \"areaCode\": \"E07000214\",\n \"areaName\": \"Surrey Heath\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E09000029\",\n \"areaName\": \"Sutton\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000113\",\n \"areaName\": \"Swale\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"W06000011\",\n \"areaName\": \"Swansea\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000030\",\n \"areaName\": \"Swindon\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E08000008\",\n \"areaName\": \"Tameside\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000199\",\n \"areaName\": \"Tamworth\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000215\",\n \"areaName\": \"Tandridge\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000045\",\n \"areaName\": \"Teignbridge\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000020\",\n \"areaName\": \"Telford and Wrekin\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000076\",\n \"areaName\": \"Tendring\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000093\",\n \"areaName\": \"Test Valley\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000083\",\n \"areaName\": \"Tewkesbury\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000114\",\n \"areaName\": \"Thanet\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000102\",\n \"areaName\": \"Three Rivers\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000034\",\n \"areaName\": \"Thurrock\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000115\",\n \"areaName\": \"Tonbridge and Malling\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000027\",\n \"areaName\": \"Torbay\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"W06000020\",\n \"areaName\": \"Torfaen\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000046\",\n \"areaName\": \"Torridge\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E09000030\",\n \"areaName\": \"Tower Hamlets\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E08000009\",\n \"areaName\": \"Trafford\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000116\",\n \"areaName\": \"Tunbridge Wells\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"K02000001\",\n \"areaName\": \"United Kingdom\",\n \"areaType\": \"overview\"\n },\n {\n \"areaCode\": \"E07000077\",\n \"areaName\": \"Uttlesford\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"W06000014\",\n \"areaName\": \"Vale of Glamorgan\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000180\",\n \"areaName\": \"Vale of White Horse\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E08000036\",\n \"areaName\": \"Wakefield\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"W92000004\",\n \"areaName\": \"Wales\",\n \"areaType\": \"nation\"\n },\n {\n \"areaCode\": \"E08000030\",\n \"areaName\": \"Walsall\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E09000031\",\n \"areaName\": \"Waltham Forest\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E09000032\",\n \"areaName\": \"Wandsworth\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000007\",\n \"areaName\": \"Warrington\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000222\",\n \"areaName\": \"Warwick\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E10000031\",\n \"areaName\": \"Warwickshire\",\n \"areaType\": \"utla\"\n },\n {\n \"areaCode\": \"E07000103\",\n \"areaName\": \"Watford\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000216\",\n \"areaName\": \"Waverley\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000065\",\n \"areaName\": \"Wealden\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000156\",\n \"areaName\": \"Wellingborough\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000241\",\n \"areaName\": \"Welwyn Hatfield\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000037\",\n \"areaName\": \"West Berkshire\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000047\",\n \"areaName\": \"West Devon\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"S12000039\",\n \"areaName\": \"West Dunbartonshire\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000127\",\n \"areaName\": \"West Lancashire\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000142\",\n \"areaName\": \"West Lindsey\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"S12000040\",\n \"areaName\": \"West Lothian\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E12000005\",\n \"areaName\": \"West Midlands\",\n \"areaType\": \"region\"\n },\n {\n \"areaCode\": \"E09000033\",\n \"areaName\": \"Westminster\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000062\",\n \"areaName\": \"West Northamptonshire\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000181\",\n \"areaName\": \"West Oxfordshire\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000245\",\n \"areaName\": \"West Suffolk\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E10000032\",\n \"areaName\": \"West Sussex\",\n \"areaType\": \"utla\"\n },\n {\n \"areaCode\": \"E08000010\",\n \"areaName\": \"Wigan\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000054\",\n \"areaName\": \"Wiltshire\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000094\",\n \"areaName\": \"Winchester\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000040\",\n \"areaName\": \"Windsor and Maidenhead\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E08000015\",\n \"areaName\": \"Wirral\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000217\",\n \"areaName\": \"Woking\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000041\",\n \"areaName\": \"Wokingham\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E08000031\",\n \"areaName\": \"Wolverhampton\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000237\",\n \"areaName\": \"Worcester\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E10000034\",\n \"areaName\": \"Worcestershire\",\n \"areaType\": \"utla\"\n },\n {\n \"areaCode\": \"E07000229\",\n \"areaName\": \"Worthing\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"W06000006\",\n \"areaName\": \"Wrexham\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000238\",\n \"areaName\": \"Wychavon\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000007\",\n \"areaName\": \"Wycombe\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000128\",\n \"areaName\": \"Wyre\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E07000239\",\n \"areaName\": \"Wyre Forest\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E06000014\",\n \"areaName\": \"York\",\n \"areaType\": \"ltla\"\n },\n {\n \"areaCode\": \"E12000003\",\n \"areaName\": \"Yorkshire and The Humber\",\n \"areaType\": \"region\"\n }\n]" } } } } }, "400": { "description": "Bad request. Reason provided in response body where possible." }, "404": { "description": "Not found. Likely due to an invalid category (page name)." }, "429": { "description": "Too many requests - request has been throttled.", "headers": { "retry-after": { "description": "Time in seconds to wait before resubmitting the request.", "required": true, "schema": { "type": "integer" } } } }, "500": { "description": "Server error" } } } }, "/page_areas/{page}/{area_type}": { "get": { "summary": "Page areas with type", "description": "Given a category (page name) / area type combination, returns all areas available for that category under the given area type.", "operationId": "page-areas-with-type", "parameters": [ { "name": "page", "in": "path", "description": "Category of the page whose areas are being requested.", "required": true, "schema": { "enum": [ "cases", "testing", "deaths", "vaccinations", "healthcare" ], "type": "string" } }, { "name": "area_type", "in": "path", "description": "Type of the area by which to filter the areas associated with the given category.", "required": true, "schema": { "type": "string" } }, { "name": "Accept", "in": "header", "required": true, "schema": { "enum": [ "application/json" ], "type": "string", "default": "application/json" } }, { "name": "Accept-Encoding", "in": "header", "schema": { "enum": [ "deflate", "gzip", "br" ], "type": "string" } } ], "responses": { "200": { "description": "Returns all areas for the specified category / area type combination.", "headers": { "content-type": { "required": true, "schema": { "enum": [ "application/vnd.PHE-COVID19.v1+json; charset=utf-8" ], "type": "string" } }, "server": { "required": true, "description": "Server application name and version.", "schema": { "type": "string" } }, "Strict-Transport-Security": { "required": true, "description": "", "schema": { "type": "string" } }, "x-frame-options": { "required": true, "schema": { "type": "string" } }, "x-content-type-options": { "required": true, "schema": { "type": "string" } }, "x-xss-protection": { "required": true, "schema": { "type": "string" } }, "referrer-policy": { "required": true, "schema": { "type": "string" } }, "content-security-policy": { "required": true, "schema": { "type": "string" } }, "x-ukhsa-media-type": { "required": true, "schema": { "type": "string" } }, "ukhsa-server-loc": { "required": false, "description": "Identifier for the specific server responding to the request.", "schema": { "type": "string" } }, "Request-Context": { "required": true, "description": "Correlation ID of the request.", "schema": { "type": "string" } }, "ukhsa-website-request": { "required": true, "description": "Identifier to determine whether the request originates from the website.", "schema": { "type": "number" } } }, "content": { "application/json": { "schema": { "$ref": "#/components/schemas/page-areas-with-type" }, "examples": { "Nation response for cases": { "value": "[{\"areaCode\":\"E92000001\",\"areaName\":\"England\",\"areaType\":\"nation\"},{\"areaCode\":\"N92000002\",\"areaName\":\"Northern Ireland\",\"areaType\":\"nation\"},{\"areaCode\":\"S92000003\",\"areaName\":\"Scotland\",\"areaType\":\"nation\"},{\"areaCode\":\"W92000004\",\"areaName\":\"Wales\",\"areaType\":\"nation\"}]" } } } } }, "400": { "description": "Bad request. Reason provided in response body where possible." }, "404": { "description": "Not found. Likely due to an invalid category and / or area type." }, "429": { "description": "Too many requests - request has been throttled.", "headers": { "retry-after": { "description": "Time in seconds to wait before resubmitting the request.", "required": true, "schema": { "type": "integer" } } } }, "500": { "description": "Server error" } } } }, "/metric_availability/{area_type}/{area_code}": { "get": { "summary": "Metric availability by area", "operationId": "metric-availability-by-area", "parameters": [ { "name": "area_type", "in": "path", "required": true, "schema": { "type": "string", "enum": [ "nation", "region", "utla", "ltla", "msoa", "postcode", "nhsRegion", "nhsTrust" ] } }, { "name": "area_code", "in": "path", "required": true, "schema": { "type": "string" } }, { "name": "date", "description": "Date in YYYY-MM-DD format", "in": "query", "schema": { "type": "string" } }, { "name": "Accept", "in": "header", "required": true, "schema": { "enum": [ "application/json" ], "type": "string", "default": "application/json" } } ], "responses": { "200": { "description": "", "headers": { "content-type": { "required": true, "schema": { "enum": [ "application/vnd.PHE-COVID19.v1+json; charset=utf-8" ], "type": "string" } }, "server": { "required": true, "description": "Server application name and version.", "schema": { "type": "string" } }, "Strict-Transport-Security": { "required": true, "description": "", "schema": { "type": "string" } }, "x-frame-options": { "required": true, "schema": { "type": "string" } }, "x-content-type-options": { "required": true, "schema": { "type": "string" } }, "x-xss-protection": { "required": true, "schema": { "type": "string" } }, "referrer-policy": { "required": true, "schema": { "type": "string" } }, "content-security-policy": { "required": true, "schema": { "type": "string" } }, "x-ukhsa-media-type": { "required": true, "schema": { "type": "string" } }, "ukhsa-server-loc": { "required": false, "description": "Identifier for the specific server responding to the request.", "schema": { "type": "string" } }, "Request-Context": { "required": true, "description": "Correlation ID of the request.", "schema": { "type": "string" } }, "ukhsa-website-request": { "required": true, "description": "Identifier to determine whether the request originates from the website.", "schema": { "type": "number" } } }, "content": { "application/json": { "schema": { "$ref": "#/components/schemas/metric-availability" }, "examples": { "Response for nation/E92000001 (England)": { "value": "[{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"changeInNewCasesBySpecimenDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-13\",\"metric\":\"covidOccupiedMVBeds\"},{\"deprecated\":null,\"last_update\":\"2021-12-11\",\"metric\":\"cumAdmissions\"},{\"deprecated\":null,\"last_update\":\"2021-12-11\",\"metric\":\"cumAdmissionsByAge\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumAntibodyTestsByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-13\",\"metric\":\"cumCasesByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-13\",\"metric\":\"cumCasesByPublishDateRate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumCasesBySpecimenDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumCasesBySpecimenDateRate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumCasesLFDConfirmedPCRBySpecimenDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumCasesLFDOnlyBySpecimenDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumCasesPCROnlyBySpecimenDate\"},{\"deprecated\":null,\"last_update\":\"2021-11-26\",\"metric\":\"cumDailyNsoDeathsByDeathDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumDeaths28DaysByDeathDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumDeaths28DaysByDeathDateRate\"},{\"deprecated\":null,\"last_update\":\"2021-12-13\",\"metric\":\"cumDeaths28DaysByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-13\",\"metric\":\"cumDeaths28DaysByPublishDateRate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumDeaths60DaysByDeathDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumDeaths60DaysByDeathDateRate\"},{\"deprecated\":null,\"last_update\":\"2021-12-13\",\"metric\":\"cumDeaths60DaysByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-13\",\"metric\":\"cumDeaths60DaysByPublishDateRate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumLFDTestsBySpecimenDate\"},{\"deprecated\":null,\"last_update\":\"2021-11-26\",\"metric\":\"cumOnsDeathsByRegistrationDate\"},{\"deprecated\":null,\"last_update\":\"2021-11-26\",\"metric\":\"cumOnsDeathsByRegistrationDateRate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumPCRTestsByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"cumPCRTestsBySpecimenDate\"},{\"deprecated\":\"2021-10-15T00:00:00Z\",\"last_update\":\"2021-12-12\",\"metric\":\"cumPeopleVaccinatedCompleteByVaccinationDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumPeopleVaccinatedFirstDoseByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumPeopleVaccinatedFirstDoseByVaccinationDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumPeopleVaccinatedSecondDoseByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumPeopleVaccinatedSecondDoseByVaccinationDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumPeopleVaccinatedThirdInjectionByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumPeopleVaccinatedThirdInjectionByVaccinationDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumPillarOneTestsByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumPillarOneTwoTestsByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumPillarThreeTestsByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumPillarTwoTestsByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumTestsByPublishDate\"},{\"deprecated\":\"2021-10-15T00:00:00Z\",\"last_update\":\"2021-12-12\",\"metric\":\"cumVaccinationCompleteCoverageByVaccinationDatePercentage\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumVaccinationFirstDoseUptakeByPublishDatePercentage\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumVaccinationFirstDoseUptakeByVaccinationDatePercentage\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumVaccinationSecondDoseUptakeByPublishDatePercentage\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumVaccinationSecondDoseUptakeByVaccinationDatePercentage\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumVaccinationThirdInjectionUptakeByPublishDatePercentage\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumVaccinationThirdInjectionUptakeByVaccinationDatePercentage\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumVaccinesGivenByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumVirusTestsByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"cumVirusTestsBySpecimenDate\"},{\"deprecated\":null,\"last_update\":\"2021-11-26\",\"metric\":\"cumWeeklyNsoDeathsByRegDate\"},{\"deprecated\":null,\"last_update\":\"2021-11-26\",\"metric\":\"cumWeeklyNsoDeathsByRegDateRate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"femaleCases\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"femaleDeaths28Days\"},{\"deprecated\":null,\"last_update\":\"2021-12-13\",\"metric\":\"hospitalCases\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"maleCases\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"maleDeaths28Days\"},{\"deprecated\":null,\"last_update\":\"2021-12-11\",\"metric\":\"newAdmissions\"},{\"deprecated\":null,\"last_update\":\"2021-12-11\",\"metric\":\"newAdmissionsChange\"},{\"deprecated\":null,\"last_update\":\"2021-12-11\",\"metric\":\"newAdmissionsChangePercentage\"},{\"deprecated\":null,\"last_update\":\"2021-12-11\",\"metric\":\"newAdmissionsDirection\"},{\"deprecated\":null,\"last_update\":\"2021-12-11\",\"metric\":\"newAdmissionsRollingRate\"},{\"deprecated\":null,\"last_update\":\"2021-12-11\",\"metric\":\"newAdmissionsRollingSum\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newAntibodyTestsByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-13\",\"metric\":\"newCasesByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-13\",\"metric\":\"newCasesByPublishDateChange\"},{\"deprecated\":null,\"last_update\":\"2021-12-13\",\"metric\":\"newCasesByPublishDateChangePercentage\"},{\"deprecated\":null,\"last_update\":\"2021-12-13\",\"metric\":\"newCasesByPublishDateDirection\"},{\"deprecated\":null,\"last_update\":\"2021-12-13\",\"metric\":\"newCasesByPublishDateRollingSum\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newCasesBySpecimenDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"newCasesBySpecimenDateAgeDemographics\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"newCasesBySpecimenDateChange\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"newCasesBySpecimenDateChangePercentage\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"newCasesBySpecimenDateDirection\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"newCasesBySpecimenDateRollingRate\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"newCasesBySpecimenDateRollingSum\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newCasesLFDConfirmedPCRBySpecimenDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"newCasesLFDConfirmedPCRBySpecimenDateRollingRate\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"newCasesLFDConfirmedPCRBySpecimenDateRollingSum\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newCasesLFDOnlyBySpecimenDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"newCasesLFDOnlyBySpecimenDateRollingRate\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"newCasesLFDOnlyBySpecimenDateRollingSum\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newCasesPCROnlyBySpecimenDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"newCasesPCROnlyBySpecimenDateRollingRate\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"newCasesPCROnlyBySpecimenDateRollingSum\"},{\"deprecated\":null,\"last_update\":\"2021-11-26\",\"metric\":\"newDailyNsoDeathsByDeathDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newDeaths28DaysByDeathDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"newDeaths28DaysByDeathDateAgeDemographics\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newDeaths28DaysByDeathDateRate\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"newDeaths28DaysByDeathDateRollingRate\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"newDeaths28DaysByDeathDateRollingSum\"},{\"deprecated\":null,\"last_update\":\"2021-12-13\",\"metric\":\"newDeaths28DaysByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-13\",\"metric\":\"newDeaths28DaysByPublishDateChange\"},{\"deprecated\":null,\"last_update\":\"2021-12-13\",\"metric\":\"newDeaths28DaysByPublishDateChangePercentage\"},{\"deprecated\":null,\"last_update\":\"2021-12-13\",\"metric\":\"newDeaths28DaysByPublishDateDirection\"},{\"deprecated\":null,\"last_update\":\"2021-12-13\",\"metric\":\"newDeaths28DaysByPublishDateRollingSum\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newDeaths60DaysByDeathDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newDeaths60DaysByDeathDateRate\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"newDeaths60DaysByDeathDateRollingRate\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"newDeaths60DaysByDeathDateRollingSum\"},{\"deprecated\":null,\"last_update\":\"2021-12-13\",\"metric\":\"newDeaths60DaysByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newLFDTestsBySpecimenDate\"},{\"deprecated\":null,\"last_update\":\"2021-11-26\",\"metric\":\"newOnsDeathsByRegistrationDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newPCRTestsByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newPCRTestsByPublishDateChange\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newPCRTestsByPublishDateChangePercentage\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newPCRTestsByPublishDateDirection\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newPCRTestsByPublishDateRollingSum\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"newPCRTestsBySpecimenDate\"},{\"deprecated\":\"2021-10-15T00:00:00Z\",\"last_update\":\"2021-12-12\",\"metric\":\"newPeopleVaccinatedCompleteByVaccinationDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newPeopleVaccinatedFirstDoseByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newPeopleVaccinatedFirstDoseByVaccinationDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newPeopleVaccinatedSecondDoseByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newPeopleVaccinatedSecondDoseByVaccinationDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newPeopleVaccinatedThirdInjectionByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newPeopleVaccinatedThirdInjectionByVaccinationDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newPillarOneTestsByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newPillarOneTwoTestsByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newPillarThreeTestsByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newPillarTwoTestsByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newTestsByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newVaccinesGivenByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newVirusTestsByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newVirusTestsByPublishDateChange\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newVirusTestsByPublishDateChangePercentage\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newVirusTestsByPublishDateDirection\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newVirusTestsByPublishDateRollingSum\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"newVirusTestsBySpecimenDate\"},{\"deprecated\":null,\"last_update\":\"2021-11-26\",\"metric\":\"newWeeklyNsoDeathsByRegDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"previouslyReportedNewCasesBySpecimenDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-10\",\"metric\":\"transmissionRateGrowthRateMax\"},{\"deprecated\":null,\"last_update\":\"2021-12-10\",\"metric\":\"transmissionRateGrowthRateMin\"},{\"deprecated\":null,\"last_update\":\"2021-12-10\",\"metric\":\"transmissionRateMax\"},{\"deprecated\":null,\"last_update\":\"2021-12-10\",\"metric\":\"transmissionRateMin\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"uniqueCasePositivityBySpecimenDateRollingSum\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"uniquePeopleTestedBySpecimenDateRollingSum\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"vaccinationsAgeDemographics\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"VaccineRegisterPopulationByVaccinationDate\"}]" } } } } }, "400": { "description": "Bad request. Reason provided in response body where possible." }, "404": { "description": "Not found." }, "429": { "description": "Too many requests - request has been throttled.", "headers": { "retry-after": { "description": "Time in seconds to wait before resubmitting the request.", "required": true, "schema": { "type": "integer" } } } }, "500": { "description": "Server error" } } } }, "/metric_availability/{area_type}": { "get": { "summary": "Metric availability by area type", "operationId": "metric-availability-by-area-type", "parameters": [ { "name": "area_type", "in": "path", "required": true, "schema": { "type": "string", "enum": [ "nation", "region", "utla", "ltla", "msoa", "postcode", "nhsRegion", "nhsTrust" ] } }, { "name": "date", "description": "Date in YYYY-MM-DD format", "in": "query", "schema": { "type": "string" } }, { "name": "Accept", "in": "header", "required": true, "schema": { "enum": [ "application/json" ], "type": "string", "default": "application/json" } } ], "responses": { "200": { "description": "", "headers": { "content-type": { "required": true, "schema": { "enum": [ "application/vnd.PHE-COVID19.v1+json; charset=utf-8" ], "type": "string" } }, "server": { "required": true, "description": "Server application name and version.", "schema": { "type": "string" } }, "Strict-Transport-Security": { "required": true, "description": "", "schema": { "type": "string" } }, "x-frame-options": { "required": true, "schema": { "type": "string" } }, "x-content-type-options": { "required": true, "schema": { "type": "string" } }, "x-xss-protection": { "required": true, "schema": { "type": "string" } }, "referrer-policy": { "required": true, "schema": { "type": "string" } }, "content-security-policy": { "required": true, "schema": { "type": "string" } }, "x-ukhsa-media-type": { "required": true, "schema": { "type": "string" } }, "ukhsa-server-loc": { "required": false, "description": "Identifier for the specific server responding to the request.", "schema": { "type": "string" } }, "Request-Context": { "required": true, "description": "Correlation ID of the request.", "schema": { "type": "string" } }, "ukhsa-website-request": { "required": true, "description": "Identifier to determine whether the request originates from the website.", "schema": { "type": "number" } } }, "content": { "application/json": { "schema": { "$ref": "#/components/schemas/metric-availability" }, "examples": { "Response for MSOA": { "value": "[{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"changeInNewCasesBySpecimenDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-13\",\"metric\":\"covidOccupiedMVBeds\"},{\"deprecated\":null,\"last_update\":\"2021-12-11\",\"metric\":\"cumAdmissions\"},{\"deprecated\":null,\"last_update\":\"2021-12-11\",\"metric\":\"cumAdmissionsByAge\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumAntibodyTestsByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-13\",\"metric\":\"cumCasesByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-13\",\"metric\":\"cumCasesByPublishDateRate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumCasesBySpecimenDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumCasesBySpecimenDateRate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumCasesLFDConfirmedPCRBySpecimenDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumCasesLFDOnlyBySpecimenDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumCasesPCROnlyBySpecimenDate\"},{\"deprecated\":null,\"last_update\":\"2021-11-26\",\"metric\":\"cumDailyNsoDeathsByDeathDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumDeaths28DaysByDeathDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumDeaths28DaysByDeathDateRate\"},{\"deprecated\":null,\"last_update\":\"2021-12-13\",\"metric\":\"cumDeaths28DaysByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-13\",\"metric\":\"cumDeaths28DaysByPublishDateRate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumDeaths60DaysByDeathDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumDeaths60DaysByDeathDateRate\"},{\"deprecated\":null,\"last_update\":\"2021-12-13\",\"metric\":\"cumDeaths60DaysByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-13\",\"metric\":\"cumDeaths60DaysByPublishDateRate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumLFDTestsBySpecimenDate\"},{\"deprecated\":null,\"last_update\":\"2021-11-26\",\"metric\":\"cumOnsDeathsByRegistrationDate\"},{\"deprecated\":null,\"last_update\":\"2021-11-26\",\"metric\":\"cumOnsDeathsByRegistrationDateRate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumPCRTestsByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"cumPCRTestsBySpecimenDate\"},{\"deprecated\":\"2021-10-15T00:00:00Z\",\"last_update\":\"2021-12-12\",\"metric\":\"cumPeopleVaccinatedCompleteByVaccinationDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumPeopleVaccinatedFirstDoseByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumPeopleVaccinatedFirstDoseByVaccinationDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumPeopleVaccinatedSecondDoseByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumPeopleVaccinatedSecondDoseByVaccinationDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumPeopleVaccinatedThirdInjectionByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumPeopleVaccinatedThirdInjectionByVaccinationDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumPillarOneTestsByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumPillarOneTwoTestsByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumPillarThreeTestsByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumPillarTwoTestsByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumTestsByPublishDate\"},{\"deprecated\":\"2021-10-15T00:00:00Z\",\"last_update\":\"2021-12-12\",\"metric\":\"cumVaccinationCompleteCoverageByVaccinationDatePercentage\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumVaccinationFirstDoseUptakeByPublishDatePercentage\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumVaccinationFirstDoseUptakeByVaccinationDatePercentage\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumVaccinationSecondDoseUptakeByPublishDatePercentage\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumVaccinationSecondDoseUptakeByVaccinationDatePercentage\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumVaccinationThirdInjectionUptakeByPublishDatePercentage\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumVaccinationThirdInjectionUptakeByVaccinationDatePercentage\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumVaccinesGivenByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"cumVirusTestsByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"cumVirusTestsBySpecimenDate\"},{\"deprecated\":null,\"last_update\":\"2021-11-26\",\"metric\":\"cumWeeklyNsoDeathsByRegDate\"},{\"deprecated\":null,\"last_update\":\"2021-11-26\",\"metric\":\"cumWeeklyNsoDeathsByRegDateRate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"femaleCases\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"femaleDeaths28Days\"},{\"deprecated\":null,\"last_update\":\"2021-12-13\",\"metric\":\"hospitalCases\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"maleCases\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"maleDeaths28Days\"},{\"deprecated\":null,\"last_update\":\"2021-12-11\",\"metric\":\"newAdmissions\"},{\"deprecated\":null,\"last_update\":\"2021-12-11\",\"metric\":\"newAdmissionsChange\"},{\"deprecated\":null,\"last_update\":\"2021-12-11\",\"metric\":\"newAdmissionsChangePercentage\"},{\"deprecated\":null,\"last_update\":\"2021-12-11\",\"metric\":\"newAdmissionsDirection\"},{\"deprecated\":null,\"last_update\":\"2021-12-11\",\"metric\":\"newAdmissionsRollingRate\"},{\"deprecated\":null,\"last_update\":\"2021-12-11\",\"metric\":\"newAdmissionsRollingSum\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newAntibodyTestsByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-13\",\"metric\":\"newCasesByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-13\",\"metric\":\"newCasesByPublishDateChange\"},{\"deprecated\":null,\"last_update\":\"2021-12-13\",\"metric\":\"newCasesByPublishDateChangePercentage\"},{\"deprecated\":null,\"last_update\":\"2021-12-13\",\"metric\":\"newCasesByPublishDateDirection\"},{\"deprecated\":null,\"last_update\":\"2021-12-13\",\"metric\":\"newCasesByPublishDateRollingSum\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newCasesBySpecimenDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"newCasesBySpecimenDateAgeDemographics\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"newCasesBySpecimenDateChange\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"newCasesBySpecimenDateChangePercentage\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"newCasesBySpecimenDateDirection\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"newCasesBySpecimenDateRollingRate\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"newCasesBySpecimenDateRollingSum\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newCasesLFDConfirmedPCRBySpecimenDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"newCasesLFDConfirmedPCRBySpecimenDateRollingRate\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"newCasesLFDConfirmedPCRBySpecimenDateRollingSum\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newCasesLFDOnlyBySpecimenDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"newCasesLFDOnlyBySpecimenDateRollingRate\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"newCasesLFDOnlyBySpecimenDateRollingSum\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newCasesPCROnlyBySpecimenDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"newCasesPCROnlyBySpecimenDateRollingRate\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"newCasesPCROnlyBySpecimenDateRollingSum\"},{\"deprecated\":null,\"last_update\":\"2021-11-26\",\"metric\":\"newDailyNsoDeathsByDeathDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newDeaths28DaysByDeathDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"newDeaths28DaysByDeathDateAgeDemographics\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newDeaths28DaysByDeathDateRate\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"newDeaths28DaysByDeathDateRollingRate\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"newDeaths28DaysByDeathDateRollingSum\"},{\"deprecated\":null,\"last_update\":\"2021-12-13\",\"metric\":\"newDeaths28DaysByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-13\",\"metric\":\"newDeaths28DaysByPublishDateChange\"},{\"deprecated\":null,\"last_update\":\"2021-12-13\",\"metric\":\"newDeaths28DaysByPublishDateChangePercentage\"},{\"deprecated\":null,\"last_update\":\"2021-12-13\",\"metric\":\"newDeaths28DaysByPublishDateDirection\"},{\"deprecated\":null,\"last_update\":\"2021-12-13\",\"metric\":\"newDeaths28DaysByPublishDateRollingSum\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newDeaths60DaysByDeathDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newDeaths60DaysByDeathDateRate\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"newDeaths60DaysByDeathDateRollingRate\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"newDeaths60DaysByDeathDateRollingSum\"},{\"deprecated\":null,\"last_update\":\"2021-12-13\",\"metric\":\"newDeaths60DaysByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newLFDTestsBySpecimenDate\"},{\"deprecated\":null,\"last_update\":\"2021-11-26\",\"metric\":\"newOnsDeathsByRegistrationDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newPCRTestsByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newPCRTestsByPublishDateChange\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newPCRTestsByPublishDateChangePercentage\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newPCRTestsByPublishDateDirection\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newPCRTestsByPublishDateRollingSum\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"newPCRTestsBySpecimenDate\"},{\"deprecated\":\"2021-10-15T00:00:00Z\",\"last_update\":\"2021-12-12\",\"metric\":\"newPeopleVaccinatedCompleteByVaccinationDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newPeopleVaccinatedFirstDoseByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newPeopleVaccinatedFirstDoseByVaccinationDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newPeopleVaccinatedSecondDoseByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newPeopleVaccinatedSecondDoseByVaccinationDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newPeopleVaccinatedThirdInjectionByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newPeopleVaccinatedThirdInjectionByVaccinationDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newPillarOneTestsByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newPillarOneTwoTestsByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newPillarThreeTestsByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newPillarTwoTestsByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newTestsByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newVaccinesGivenByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newVirusTestsByPublishDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newVirusTestsByPublishDateChange\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newVirusTestsByPublishDateChangePercentage\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newVirusTestsByPublishDateDirection\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"newVirusTestsByPublishDateRollingSum\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"newVirusTestsBySpecimenDate\"},{\"deprecated\":null,\"last_update\":\"2021-11-26\",\"metric\":\"newWeeklyNsoDeathsByRegDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"previouslyReportedNewCasesBySpecimenDate\"},{\"deprecated\":null,\"last_update\":\"2021-12-10\",\"metric\":\"transmissionRateGrowthRateMax\"},{\"deprecated\":null,\"last_update\":\"2021-12-10\",\"metric\":\"transmissionRateGrowthRateMin\"},{\"deprecated\":null,\"last_update\":\"2021-12-10\",\"metric\":\"transmissionRateMax\"},{\"deprecated\":null,\"last_update\":\"2021-12-10\",\"metric\":\"transmissionRateMin\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"uniqueCasePositivityBySpecimenDateRollingSum\"},{\"deprecated\":null,\"last_update\":\"2021-12-08\",\"metric\":\"uniquePeopleTestedBySpecimenDateRollingSum\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"vaccinationsAgeDemographics\"},{\"deprecated\":null,\"last_update\":\"2021-12-12\",\"metric\":\"VaccineRegisterPopulationByVaccinationDate\"}]" } } } } }, "400": { "description": "Bad request. Reason provided in response body where possible." }, "404": { "description": "Not found." }, "429": { "description": "Too many requests - request has been throttled.", "headers": { "retry-after": { "description": "Time in seconds to wait before resubmitting the request.", "required": true, "schema": { "type": "integer" } } } }, "500": { "description": "Server error" } } } }, "/metrics": { "get": { "summary": "Metric search", "operationId": "metric-search", "parameters": [ { "name": "search", "in": "query", "required": false, "description": "Metric name or part thereof.", "schema": { "type": "string" } }, { "name": "category", "in": "query", "required": false, "description": "The category the metric(s) relates to.", "schema": { "type": "string", "enum": [ "Cases", "Testing", "Healthcare", "Deaths", "Vaccinations" ] } }, { "name": "tags", "in": "query", "required": false, "description": "Return metrics by a keyword they're tagged by.", "schema": { "type": "string" } }, { "name": "exact", "in": "query", "required": false, "description": "Return metrics that exactly match the value set for the 'search' parameter. This flag may only be set alongside 'search'.", "schema": { "type": "boolean", "enum": ["0", "1"] } }, { "name": "Accept", "in": "header", "required": true, "schema": { "enum": [ "application/json" ], "type": "string", "default": "application/json" } } ], "responses": { "200": { "description": "", "headers": { "content-type": { "required": true, "schema": { "enum": [ "application/vnd.PHE-COVID19.v1+json; charset=utf-8" ], "type": "string" } }, "server": { "required": true, "description": "Server application name and version.", "schema": { "type": "string" } }, "Strict-Transport-Security": { "required": true, "description": "", "schema": { "type": "string" } }, "x-frame-options": { "required": true, "schema": { "type": "string" } }, "x-content-type-options": { "required": true, "schema": { "type": "string" } }, "x-xss-protection": { "required": true, "schema": { "type": "string" } }, "referrer-policy": { "required": true, "schema": { "type": "string" } }, "content-security-policy": { "required": true, "schema": { "type": "string" } }, "x-ukhsa-media-type": { "required": true, "schema": { "type": "string" } }, "ukhsa-server-loc": { "required": false, "description": "Identifier for the specific server responding to the request.", "schema": { "type": "string" } }, "Request-Context": { "required": true, "description": "Correlation ID of the request.", "schema": { "type": "string" } }, "ukhsa-website-request": { "required": true, "description": "Identifier to determine whether the request originates from the website.", "schema": { "type": "number" } } }, "content": { "application/json": { "schema": { "$ref": "#/components/schemas/metrics" }, "examples": { "Response for newAdmissions": { "value": "[{\"category\":\"Healthcare\",\"deprecated\":null,\"metric\":\"newAdmissions\",\"metric_name\":\"New admissions\",\"tags\":[\"daily\"]},{\"category\":\"Healthcare\",\"deprecated\":null,\"metric\":\"newAdmissionsChange\",\"metric_name\":\"New admissions change\",\"tags\":[\"daily\"]},{\"category\":\"Healthcare\",\"deprecated\":null,\"metric\":\"newAdmissionsChangePercentage\",\"metric_name\":\"New admissions change percentage\",\"tags\":[\"daily\"]},{\"category\":\"Healthcare\",\"deprecated\":null,\"metric\":\"newAdmissionsDirection\",\"metric_name\":\"New admissions direction\",\"tags\":[\"daily\"]},{\"category\":\"Healthcare\",\"deprecated\":null,\"metric\":\"newAdmissionsRollingRate\",\"metric_name\":\"New admissions rolling rate\",\"tags\":[\"daily\",\"prevalence rate\"]},{\"category\":\"Healthcare\",\"deprecated\":null,\"metric\":\"newAdmissionsRollingSum\",\"metric_name\":\"New admissions rolling sum\",\"tags\":[\"daily\"]}]" } } } } }, "400": { "description": "Bad request. Reason provided in response body where possible." }, "404": { "description": "Not found." }, "429": { "description": "Too many requests - request has been throttled.", "headers": { "retry-after": { "description": "Time in seconds to wait before resubmitting the request.", "required": true, "schema": { "type": "integer" } } } }, "500": { "description": "Server error" } } } }, "/metrics/{metric}/doc": { "get": { "summary": "Metric documentation", "operationId": "metric-doc", "parameters": [ { "name": "metric", "in": "path", "description": "Metric name", "required": true, "schema": { "type": "string" } }, { "name": "Accept", "in": "header", "required": true, "schema": { "enum": [ "application/json" ], "type": "string", "default": "application/json" } } ], "responses": { "200": { "description": "", "headers": { "content-type": { "required": true, "schema": { "enum": [ "application/vnd.PHE-COVID19.v1+json; charset=utf-8" ], "type": "string" } }, "server": { "required": true, "description": "Server application name and version.", "schema": { "type": "string" } }, "Strict-Transport-Security": { "required": true, "description": "", "schema": { "type": "string" } }, "x-frame-options": { "required": true, "schema": { "type": "string" } }, "x-content-type-options": { "required": true, "schema": { "type": "string" } }, "x-xss-protection": { "required": true, "schema": { "type": "string" } }, "referrer-policy": { "required": true, "schema": { "type": "string" } }, "content-security-policy": { "required": true, "schema": { "type": "string" } }, "x-ukhsa-media-type": { "required": true, "schema": { "type": "string" } }, "ukhsa-server-loc": { "required": false, "description": "Identifier for the specific server responding to the request.", "schema": { "type": "string" } }, "Request-Context": { "required": true, "description": "Correlation ID of the request.", "schema": { "type": "string" } }, "ukhsa-website-request": { "required": true, "description": "Identifier to determine whether the request originates from the website.", "schema": { "type": "number" } } }, "content": { "application/json": { "schema": { "$ref": "#/components/schemas/metric-doc" }, "examples": { "Response for newCasesBySpecimenDate": { "value": "{\"metric_name\":\"New cases by specimen date\",\"metric\":\"newCasesBySpecimenDate\",\"deprecated\":null,\"category\":\"Cases\",\"documentation\":{\"abstract\":{\"last_modified\":\"2021-10-08T10:35:23.794167Z\",\"body\":\"Daily numbers ...\"},\"description\":{\"last_modified\":\"2021-10-27T09:22:38.037085Z\",\"body\":\"# Cases definition\\r\\n\\r\\nCOVID-19 cases ...\"},\"methodology\":{\"last_modified\":\"2021-10-15T12:56:23.927413Z\",\"body\":\"## Geographic allocation of ...\"}},\"logs\":[{\"id\":\"35068770-975c-48a6-a297-c35223482b25\",\"heading\":\"Update to headlines only for Scotland\",\"date\":\"2021-10-31\",\"expiry\":null,\"type\":\"data issue\",\"applicable_to\":[\"UK\",\"Scotland\",\"Scotland local authorities\"]},{\"id\":\"0ab2c8bd-076b-44b0-a1ea-4aa6ac18995e\",\"heading\":\"Update to headlines only for Scotland\",\"date\":\"2021-10-23\",\"expiry\":null,\"type\":\"data issue\",\"applicable_to\":[\"Scotland\",\"Scotland local authorities\"]},{\"id\":\"bd8b5524-dbfb-485a-9efe-f5c1c874aa1b\",\"heading\":\"UK cases and deaths do not include figures from Wales\",\"date\":\"2021-10-08\",\"expiry\":null,\"type\":\"data issue\",\"applicable_to\":[\"Wales local authorities\",\"UK\",\"Wales\"]},{\"id\":\"3ee54ed0-ce2a-46ab-ade7-2c089b2e1ba2\",\"heading\":\"Update to headlines only for Scotland\",\"date\":\"2021-09-11\",\"expiry\":null,\"type\":\"data issue\",\"applicable_to\":[\"Scotland\",\"Scotland local authorities\"]},{\"id\":\"a1d425ef-d3fb-40b8-935d-90af118d0994\",\"heading\":\"Delay to cases by specimen date and deaths by date of death for Northern Ireland LAs\",\"date\":\"2021-08-31\",\"expiry\":null,\"type\":\"data issue\",\"applicable_to\":[\"UK\",\"Northern Ireland\",\"Northern Ireland local authorities\"]},{\"id\":\"7523cf7a-bb5d-4e5c-b72e-d4b74676d1a6\",\"heading\":\"Cases by specimen date and deaths by date of death not updated for Scottish LAs\",\"date\":\"2021-08-30\",\"expiry\":null,\"type\":\"data issue\",\"applicable_to\":[\"Scotland local authorities\"]},{\"id\":\"9ab08bc4-7295-4e96-be34-3c21d9993868\",\"heading\":\"Cases by specimen date and deaths by date of death not updated for Scottish LAs\",\"date\":\"2021-08-29\",\"expiry\":null,\"type\":\"data issue\",\"applicable_to\":[\"Scotland local authorities\"]},{\"id\":\"467fbf31-0162-4bc6-920c-caa33039386f\",\"heading\":\"Wales cases and deaths reported for 2-day period\",\"date\":\"2021-08-12\",\"expiry\":null,\"type\":\"data issue\",\"applicable_to\":[\"UK\",\"Wales\",\"Wales local authorities\"]},{\"id\":\"26631bca-22cc-4cfd-af4e-fec638c7ee1c\",\"heading\":\"UK cases and deaths figures do not include data from Wales\",\"date\":\"2021-08-11\",\"expiry\":null,\"type\":\"data issue\",\"applicable_to\":[\"UK\",\"Wales\",\"Wales local authorities\"]},{\"id\":\"fdabd13b-67e6-48e1-a684-ebc95b75b051\",\"heading\":\"Headline figures only for Wales\",\"date\":\"2021-04-13\",\"expiry\":null,\"type\":\"data issue\",\"applicable_to\":[]},{\"id\":\"60017fbc-ec23-4d9d-8595-d2f54cf7240e\",\"heading\":\"1,283 historic cases removed\",\"date\":\"2020-11-27\",\"expiry\":null,\"type\":\"data issue\",\"applicable_to\":[]},{\"id\":\"8fa4d15a-67bb-4e0a-9ba8-7cc141eb1031\",\"heading\":\"Scotland cases with no available specimen date assigned to 20 April 2020\",\"date\":\"2020-04-20\",\"expiry\":null,\"type\":\"data issue\",\"applicable_to\":[]}],\"tags\":[\"daily\",\"event date\"]}" } } } } }, "400": { "description": "Bad request. Reason provided in response body where possible." }, "404": { "description": "Not found." }, "429": { "description": "Too many requests - request has been throttled.", "headers": { "retry-after": { "description": "Time in seconds to wait before resubmitting the request.", "required": true, "schema": { "type": "integer" } } } }, "500": { "description": "Server error" } } } }, "/metrics/props": { "get": { "summary": "Metric props", "operationId": "60e2eed72316b6b4fc3b16bf", "parameters": [ { "name": "by", "in": "query", "description": "Property based on which to aggregate the metrics", "required": false, "schema": { "enum": [ "category", "tag", "areaType" ], "type": "string" } }, { "name": "Accept", "in": "header", "required": true, "schema": { "enum": [ "application/json" ], "type": "string", "default": "application/json" } } ], "responses": { "200": { "description": "", "headers": { "content-type": { "required": true, "schema": { "enum": [ "application/vnd.PHE-COVID19.v1+json; charset=utf-8" ], "type": "string" } }, "server": { "required": true, "description": "Server application name and version.", "schema": { "type": "string" } }, "Strict-Transport-Security": { "required": true, "description": "", "schema": { "type": "string" } }, "x-frame-options": { "required": true, "schema": { "type": "string" } }, "x-content-type-options": { "required": true, "schema": { "type": "string" } }, "x-xss-protection": { "required": true, "schema": { "type": "string" } }, "referrer-policy": { "required": true, "schema": { "type": "string" } }, "content-security-policy": { "required": true, "schema": { "type": "string" } }, "x-ukhsa-media-type": { "required": true, "schema": { "type": "string" } }, "ukhsa-server-loc": { "required": false, "description": "Identifier for the specific server responding to the request.", "schema": { "type": "string" } }, "Request-Context": { "required": true, "description": "Correlation ID of the request.", "schema": { "type": "string" } }, "ukhsa-website-request": { "required": true, "description": "Identifier to determine whether the request originates from the website.", "schema": { "type": "number" } } }, "content": { "application/json": { "examples": { "Response by tag": { "value": "[{\"payload\":[{\"category\":\"Healthcare\",\"deprecated\":null,\"metric\":\"cumAdmissionsByAge\",\"metric_name\":\"Cumulative admissions by age\",\"tag\":[\"age demographics\",\"cumulative\"]}]}]" } } } } }, "400": { "description": "Bad request. Reason provided in response body where possible." }, "404": { "description": "Not found." }, "429": { "description": "Too many requests - request has been throttled.", "headers": { "retry-after": { "description": "Time in seconds to wait before resubmitting the request.", "required": true, "schema": { "type": "integer" } } } }, "500": { "description": "Server error" } } } }, "/change_logs": { "get": { "summary": "Change logs", "description": "Returns change logs, results are paginated to 20 results per page.", "operationId": "change-logs", "parameters": [ { "name": "search", "in": "query", "description": "Search the contents of the change logs for matching strings.", "schema": { "type": "string", "example": "population" } }, { "name": "title", "in": "query", "description": "Returns the change logs for the specified category (page).", "schema": { "type": "string", "example": "Daily Summary" } }, { "name": "type", "in": "query", "description": "Returns the change logs of the specified type.", "schema": { "type": "string", "example": "update" } }, { "name": "page", "in": "query", "description": "Returns page of results. There are 20 results per page and page count starts at 1.", "schema": { "type": "integer", "example": 1 } }, { "name": "Accept", "in": "header", "required": true, "schema": { "enum": [ "application/json" ], "type": "string", "default": "application/json" } } ], "responses": { "200": { "description": "", "headers": { "content-type": { "required": true, "schema": { "enum": [ "application/vnd.PHE-COVID19.v1+json; charset=utf-8" ], "type": "string" } }, "server": { "required": true, "description": "Server application name and version.", "schema": { "type": "string" } }, "Strict-Transport-Security": { "required": true, "description": "", "schema": { "type": "string" } }, "x-frame-options": { "required": true, "schema": { "type": "string" } }, "x-content-type-options": { "required": true, "schema": { "type": "string" } }, "x-xss-protection": { "required": true, "schema": { "type": "string" } }, "referrer-policy": { "required": true, "schema": { "type": "string" } }, "content-security-policy": { "required": true, "schema": { "type": "string" } }, "x-ukhsa-media-type": { "required": true, "schema": { "type": "string" } }, "ukhsa-server-loc": { "required": false, "description": "Identifier for the specific server responding to the request.", "schema": { "type": "string" } }, "Request-Context": { "required": true, "description": "Correlation ID of the request.", "schema": { "type": "string" } }, "ukhsa-website-request": { "required": true, "description": "Identifier to determine whether the request originates from the website.", "schema": { "type": "number" } } }, "content": { "application/json": { "schema": { "$ref": "#/components/schemas/change-logs" }, "examples": { "Response without query params": { "value": "{\"data\":[{\"applicable_to\":[\"UK\",\"England\",\"England regions\",\"England UTLAs\",\"England LTLAs\"],\"body\":\"The current LFD test metrics will be deprecated on 1 December 2021.\\r\\n\\r\\nThere are no changes to the metric definitions, these metrics are being renamed to match the naming convention of other metrics.\\r\\n\\r\\n\\r\\n\\r\\nThe new metric names are `newLFDTestsBySpecimenDate` and `cumLFDTestsBySpecimenDate`.\",\"date\":\"2021-11-29\",\"details\":\"\",\"display_banner\":true,\"heading\":\"Change to metric names of LFD test metrics\",\"high_priority\":false,\"id\":\"0f18334e-c6f2-4bd9-91e3-4f184741c943\",\"metrics\":[{\"metric\":\"cumLFDTests\",\"metric_name\":\"Cumulative LFD tests\"},{\"metric\":\"newLFDTests\",\"metric_name\":\"New LFD tests\"}],\"page\":{\"title\":\"Testing\",\"uri\":\"/details/testing\"},\"type\":\"change to metric\"},{\"applicable_to\":[\"UK\",\"England\",\"Scotland\",\"Northern Ireland\",\"Wales\"],\"body\":\"The current virus test metrics will be deprecated on 1 December 2021.\\r\\n\\r\\nThere are no changes to the metric definitions, these metrics are being renamed to match the naming convention of other metrics.\\r\\n\\r\\n\\r\\n\\r\\nThe new metric names are `newVirusTestsByPublishDate` and `cumVirusTestsByPublishDate`.\",\"date\":\"2021-11-29\",\"details\":\"\",\"display_banner\":true,\"heading\":\"Change to metric names of virus test metrics\",\"high_priority\":false,\"id\":\"a55ac6f1-e694-4c01-8690-747f3b6f2e1a\",\"metrics\":[{\"metric\":\"cumVirusTests\",\"metric_name\":\"Cumulative virus tests\"},{\"metric\":\"newVirusTests\",\"metric_name\":\"New virus tests\"}],\"page\":{\"title\":\"Testing\",\"uri\":\"/details/testing\"},\"type\":\"change to metric\"},{\"applicable_to\":[\"UK\",\"Northern Ireland\"],\"body\":\"Because of technical issues, the update of reported vaccinations for Northern Ireland is delayed. \\r\\n\\r\\nUK vaccinations by report date only include those newly reported from England and Scotland. Data for Wales are routinely not updated at weekends.\",\"date\":\"2021-11-27\",\"details\":\"\",\"display_banner\":true,\"heading\":\"Delay to vaccination data for Northern Ireland\",\"high_priority\":false,\"id\":\"e9672141-2c68-45b5-9611-62732a8bedf5\",\"metrics\":[{\"metric\":\"cumPeopleVaccinatedThirdDoseByPublishDate\",\"metric_name\":\"Cumulative people vaccinated 3rd dose by publish date\"},{\"metric\":\"cumVaccinationBoosterDoseUptakeByPublishDatePercentage\",\"metric_name\":\"Cumulative percentage of people vaccinated with a booster dose by publish date\"},{\"metric\":\"cumVaccinationFirstDoseUptakeByPublishDatePercentage\",\"metric_name\":\"Cumulative vaccination 1st dose uptake by publish date percentage\"},{\"metric\":\"cumVaccinationSecondDoseUptakeByPublishDatePercentage\",\"metric_name\":\"Cumulative vaccination 2nd dose uptake by publish date percentage\"},{\"metric\":\"cumVaccinationThirdInjectionUptakeByPublishDatePercentage\",\"metric_name\":\"Cumulative percentage of people vaccinated with a booster dose plus people vaccinated with third dose by publish date\"},{\"metric\":\"cumVaccinesGivenByPublishDate\",\"metric_name\":\"Cumulative vaccines given by publish date\"},{\"metric\":\"newPeopleVaccinatedBoosterDoseByPublishDate\",\"metric_name\":\"New people vaccinated with a booster dose by publish date\"},{\"metric\":\"newPeopleVaccinatedFirstDoseByPublishDate\",\"metric_name\":\"New people vaccinated 1st dose by publish date\"},{\"metric\":\"newPeopleVaccinatedSecondDoseByVaccinationDate\",\"metric_name\":\"New people vaccinated with a second dose by vaccination date\"},{\"metric\":\"newPeopleVaccinatedThirdDoseByPublishDate\",\"metric_name\":\"New people vaccinated with a third dose by publish date\"},{\"metric\":\"newPeopleVaccinatedThirdInjectionByPublishDate\",\"metric_name\":\"New people vaccinated with a booster dose plus new people vaccinated with a third dose by publish date\"},{\"metric\":\"newVaccinesGivenByPublishDate\",\"metric_name\":\"New vaccines given by publish date\"}],\"page\":{\"title\":\"Vaccinations\",\"uri\":\"/details/vaccinations\"},\"type\":\"data issue\"},{\"applicable_to\":[\"England\"],\"body\":\"Because of a processing issue, positive lateral flow tests followed by a negative PCR test in England were not removed on 23 Nov 2021. Today's figures include removals for 2 days.\\r\\n\\r\\n\\r\\n\\r\\nWe are aware that the cases by test type metric is not currently categorising cases correctly. We are investigating the cause of this and will correct this as soon as we are able.\",\"date\":\"2021-11-24\",\"details\":\"\",\"display_banner\":true,\"heading\":\"Issue with cases by test type\",\"high_priority\":false,\"id\":\"b13acbb3-f3e7-40fc-8775-e6b42baec2ed\",\"metrics\":[{\"metric\":\"cumCasesLFDConfirmedPCRBySpecimenDate\",\"metric_name\":\"Cumulative cases LFD confirmed by PCR by specimen date\"},{\"metric\":\"cumCasesLFDOnlyBySpecimenDate\",\"metric_name\":\"Cumulative cases LFD-only by specimen date\"},{\"metric\":\"cumCasesPCROnlyBySpecimenDate\",\"metric_name\":\"Cumulative cases PCR only by specimen date\"},{\"metric\":\"newCasesLFDConfirmedPCRBySpecimenDate\",\"metric_name\":\"New cases LFD confirmed by PCR by specimen date\"},{\"metric\":\"newCasesLFDOnlyBySpecimenDate\",\"metric_name\":\"New cases LFD only by specimen date\"},{\"metric\":\"newCasesPCROnlyBySpecimenDate\",\"metric_name\":\"New cases PCR only by specimen date\"}],\"page\":{\"title\":\"Cases\",\"uri\":\"/details/cases\"},\"type\":\"data issue\"},{\"applicable_to\":[\"England\",\"England regions\",\"England UTLAs\",\"England LTLAs\",\"England MSOAs\",\"UK\"],\"body\":\"Because of processing issues there is no update to vaccination data for regions, local authorities and MSOAs in England today.\\r\\n\\r\\nUpdated figures will be added in the next release.\",\"date\":\"2021-11-23\",\"details\":\"\",\"display_banner\":true,\"heading\":\"Delay in update to local vaccination data in England\",\"high_priority\":false,\"id\":\"48d77765-2156-4430-a804-c88b9660ea6e\",\"metrics\":[{\"metric\":\"cumPeopleVaccinatedFirstDoseByVaccinationDate\",\"metric_name\":\"Cumulative people vaccinated 1st dose by vaccination date\"},{\"metric\":\"cumPeopleVaccinatedSecondDoseByVaccinationDate\",\"metric_name\":\"Cumulative people vaccinated 2nd dose by vaccination date\"},{\"metric\":\"cumVaccinationFirstDoseUptakeByVaccinationDatePercentage\",\"metric_name\":\"Cumulative percentage of people vaccinated with a first dose by vaccination date\"},{\"metric\":\"cumVaccinationSecondDoseUptakeByVaccinationDatePercentage\",\"metric_name\":\"Cumulative percentage of second dose vaccination uptake by vaccination date\"},{\"metric\":\"newPeopleVaccinatedFirstDoseByVaccinationDate\",\"metric_name\":\"New people vaccinated with a first dose by vaccination date\"},{\"metric\":\"newPeopleVaccinatedSecondDoseByVaccinationDate\",\"metric_name\":\"New people vaccinated with a second dose by vaccination date\"},{\"metric\":\"vaccinationsAgeDemographics\",\"metric_name\":\"Vaccinations age demographics breakdown\"}],\"page\":{\"title\":\"Vaccinations\",\"uri\":\"/details/vaccinations\"},\"type\":\"data issue\"},{\"applicable_to\":[\"UK\",\"England\",\"England regions\",\"England UTLAs\",\"England LTLAs\",\"England MSOAs\"],\"body\":\"Because of processing issues there is no update to vaccination data for regions, local authorities and MSOAs in England today.\\r\\n\\r\\nUpdated figures will be added in the next release.\",\"date\":\"2021-11-19\",\"details\":\"\",\"display_banner\":true,\"heading\":\"Delay in update to local vaccination data in England\",\"high_priority\":false,\"id\":\"7c27fd25-0cb2-48b4-9eef-8f0cd4513cbf\",\"metrics\":[{\"metric\":\"cumPeopleVaccinatedFirstDoseByVaccinationDate\",\"metric_name\":\"Cumulative people vaccinated 1st dose by vaccination date\"},{\"metric\":\"cumPeopleVaccinatedSecondDoseByVaccinationDate\",\"metric_name\":\"Cumulative people vaccinated 2nd dose by vaccination date\"},{\"metric\":\"cumVaccinationFirstDoseUptakeByVaccinationDatePercentage\",\"metric_name\":\"Cumulative percentage of people vaccinated with a first dose by vaccination date\"},{\"metric\":\"cumVaccinationSecondDoseUptakeByVaccinationDatePercentage\",\"metric_name\":\"Cumulative percentage of second dose vaccination uptake by vaccination date\"},{\"metric\":\"newPeopleVaccinatedFirstDoseByVaccinationDate\",\"metric_name\":\"New people vaccinated with a first dose by vaccination date\"},{\"metric\":\"newPeopleVaccinatedSecondDoseByVaccinationDate\",\"metric_name\":\"New people vaccinated with a second dose by vaccination date\"},{\"metric\":\"vaccinationsAgeDemographics\",\"metric_name\":\"Vaccinations age demographics breakdown\"}],\"page\":{\"title\":\"Vaccinations\",\"uri\":\"/details/vaccinations\"},\"type\":\"data issue\"},{\"applicable_to\":[\"England\",\"England regions\",\"England UTLAs\",\"England LTLAs\",\"All NHS regions\",\"England MSOAs\",\"Northern Ireland\",\"Northern Ireland local authorities\",\"Wales\",\"Wales local authorities\",\"UK\",\"Scotland\",\"Scotland local authorities\",\"All NHS trusts\"],\"body\":\"We have created a new metrics documentation page listing all current and historical metrics.\\r\\n\\r\\n\\r\\n\\r\\nMetrics can be searched for based on name, category, type or availability by applicable_to type.\\r\\n\\r\\n\\r\\n\\r\\nA brief description of each metric is provided, along with additional details such as the date it was last updated, a more in depth description (including data sources), underlying methodologies and lists of any changes or updates.\",\"date\":\"2021-11-19\",\"details\":\"\",\"display_banner\":true,\"heading\":\"New Metrics documentation\",\"high_priority\":false,\"id\":\"e854d002-3049-4de2-b205-ad9c61a1c932\",\"metrics\":[],\"page\":{\"title\":\"Vaccinations\",\"uri\":\"/metrics\"},\"type\":\"new feature\"},{\"applicable_to\":[\"Scotland\",\"Scotland local authorities\",\"UK\"],\"body\":\"Because of an improvement to data processing in Scotland, a number of records previously reported as first dose vaccinations are now reported as second dose, third dose or booster. This has resulted in a reduction in the total number of first dose vaccinations given in Scotland.\",\"date\":\"2021-11-12\",\"details\":\"\",\"display_banner\":true,\"heading\":\"Adjustment to Scottish vaccinations\",\"high_priority\":false,\"id\":\"05b9f0d0-a1dc-45ad-8caf-6ccae1f42f51\",\"metrics\":[{\"metric\":\"cumPeopleVaccinatedFirstDoseByPublishDate\",\"metric_name\":\"Cumulative people vaccinated 1st dose by publish date\"},{\"metric\":\"cumPeopleVaccinatedFirstDoseByVaccinationDate\",\"metric_name\":\"Cumulative people vaccinated 1st dose by vaccination date\"},{\"metric\":\"cumPeopleVaccinatedSecondDoseByPublishDate\",\"metric_name\":\"Cumulative people vaccinated 2nd dose by publish date\"},{\"metric\":\"cumPeopleVaccinatedSecondDoseByVaccinationDate\",\"metric_name\":\"Cumulative people vaccinated 2nd dose by vaccination date\"},{\"metric\":\"cumPeopleVaccinatedThirdInjectionByPublishDate\",\"metric_name\":\"Cumulative people vaccinated with a booster dose plus new people vaccinated with a third dose by publish date\"},{\"metric\":\"cumVaccinationFirstDoseUptakeByPublishDatePercentage\",\"metric_name\":\"Cumulative vaccination 1st dose uptake by publish date percentage\"},{\"metric\":\"cumVaccinationFirstDoseUptakeByVaccinationDatePercentage\",\"metric_name\":\"Cumulative percentage of people vaccinated with a first dose by vaccination date\"},{\"metric\":\"cumVaccinationSecondDoseUptakeByPublishDatePercentage\",\"metric_name\":\"Cumulative vaccination 2nd dose uptake by publish date percentage\"},{\"metric\":\"cumVaccinationSecondDoseUptakeByVaccinationDatePercentage\",\"metric_name\":\"Cumulative percentage of second dose vaccination uptake by vaccination date\"},{\"metric\":\"cumVaccinationThirdInjectionUptakeByPublishDatePercentage\",\"metric_name\":\"Cumulative percentage of people vaccinated with a booster dose plus people vaccinated with third dose by publish date\"},{\"metric\":\"newPeopleVaccinatedFirstDoseByPublishDate\",\"metric_name\":\"New people vaccinated 1st dose by publish date\"},{\"metric\":\"newPeopleVaccinatedFirstDoseByVaccinationDate\",\"metric_name\":\"New people vaccinated with a first dose by vaccination date\"},{\"metric\":\"newPeopleVaccinatedSecondDoseByPublishDate\",\"metric_name\":\"New people vaccinated 2nd dose by publish date\"},{\"metric\":\"newPeopleVaccinatedSecondDoseByVaccinationDate\",\"metric_name\":\"New people vaccinated with a second dose by vaccination date\"},{\"metric\":\"newPeopleVaccinatedThirdInjectionByPublishDate\",\"metric_name\":\"New people vaccinated with a booster dose plus new people vaccinated with a third dose by publish date\"},{\"metric\":\"vaccinationsAgeDemographics\",\"metric_name\":\"Vaccinations age demographics breakdown\"}],\"page\":{\"title\":\"Vaccinations\",\"uri\":\"/details/vaccinations\"},\"type\":\"data issue\"},{\"applicable_to\":[\"UK\",\"England\"],\"body\":\"There was a technical issue from 9 to 10 November 2021 that affected the numbers of vaccinations in England reported by NHS England. Some vaccinations recorded on those days could not be counted in the figures until today. The increase in vaccinations reported for 10 November 2021 therefore appears higher than increases on previous days.\",\"date\":\"2021-11-11\",\"details\":\"\",\"display_banner\":true,\"heading\":\"Vaccinations in England includes delayed reports\",\"high_priority\":false,\"id\":\"6e2ddf27-91b9-4d66-8878-5e6082271cc0\",\"metrics\":[{\"metric\":\"cumPeopleVaccinatedFirstDoseByVaccinationDate\",\"metric_name\":\"Cumulative people vaccinated 1st dose by vaccination date\"},{\"metric\":\"cumPeopleVaccinatedSecondDoseByPublishDate\",\"metric_name\":\"Cumulative people vaccinated 2nd dose by publish date\"},{\"metric\":\"cumPeopleVaccinatedThirdInjectionByPublishDate\",\"metric_name\":\"Cumulative people vaccinated with a booster dose plus new people vaccinated with a third dose by publish date\"},{\"metric\":\"cumVaccinationFirstDoseUptakeByPublishDatePercentage\",\"metric_name\":\"Cumulative vaccination 1st dose uptake by publish date percentage\"},{\"metric\":\"cumVaccinationSecondDoseUptakeByPublishDatePercentage\",\"metric_name\":\"Cumulative vaccination 2nd dose uptake by publish date percentage\"},{\"metric\":\"cumVaccinationThirdInjectionUptakeByPublishDatePercentage\",\"metric_name\":\"Cumulative percentage of people vaccinated with a booster dose plus people vaccinated with third dose by publish date\"},{\"metric\":\"newPeopleVaccinatedFirstDoseByPublishDate\",\"metric_name\":\"New people vaccinated 1st dose by publish date\"},{\"metric\":\"newPeopleVaccinatedSecondDoseByPublishDate\",\"metric_name\":\"New people vaccinated 2nd dose by publish date\"},{\"metric\":\"newPeopleVaccinatedThirdInjectionByPublishDate\",\"metric_name\":\"New people vaccinated with a booster dose plus new people vaccinated with a third dose by publish date\"}],\"page\":{\"title\":\"Vaccinations\",\"uri\":\"/details/vaccinations\"},\"type\":\"data issue\"},{\"applicable_to\":[\"Scotland local authorities\"],\"body\":\"Because of a delay to publication of vaccination data for Scottish local authorities, it was not possible to include it in today's update. Figures will be added in the next release.\",\"date\":\"2021-11-09\",\"details\":\"\",\"display_banner\":true,\"heading\":\"No update to vaccinations for Scottish local authorities\",\"high_priority\":false,\"id\":\"3875bd00-41c0-4e6d-9e31-c6afe9e6665a\",\"metrics\":[{\"metric\":\"cumPeopleVaccinatedFirstDoseByVaccinationDate\",\"metric_name\":\"Cumulative people vaccinated 1st dose by vaccination date\"},{\"metric\":\"cumPeopleVaccinatedSecondDoseByVaccinationDate\",\"metric_name\":\"Cumulative people vaccinated 2nd dose by vaccination date\"},{\"metric\":\"cumVaccinationFirstDoseUptakeByVaccinationDatePercentage\",\"metric_name\":\"Cumulative percentage of people vaccinated with a first dose by vaccination date\"},{\"metric\":\"cumVaccinationSecondDoseUptakeByVaccinationDatePercentage\",\"metric_name\":\"Cumulative percentage of second dose vaccination uptake by vaccination date\"},{\"metric\":\"newPeopleVaccinatedFirstDoseByVaccinationDate\",\"metric_name\":\"New people vaccinated with a first dose by vaccination date\"},{\"metric\":\"newPeopleVaccinatedSecondDoseByVaccinationDate\",\"metric_name\":\"New people vaccinated with a second dose by vaccination date\"}],\"page\":{\"title\":\"Vaccinations\",\"uri\":\"/details/vaccinations\"},\"type\":\"data issue\"},{\"applicable_to\":[\"England UTLAs\",\"England LTLAs\",\"England MSOAs\",\"UK\",\"England\",\"England regions\"],\"body\":\"Because of processing issues there is no update to vaccination data for regions, local authorities and MSOAs in England.\\r\\n\\r\\nFigures missing from 6 November 2021 have been added in this release.\",\"date\":\"2021-11-08\",\"details\":\"\",\"display_banner\":true,\"heading\":\"Delay in update to local vaccination data in England\",\"high_priority\":false,\"id\":\"b5578786-e0e4-44b3-b705-2eeaa411cd2e\",\"metrics\":[{\"metric\":\"cumPeopleVaccinatedFirstDoseByVaccinationDate\",\"metric_name\":\"Cumulative people vaccinated 1st dose by vaccination date\"},{\"metric\":\"cumPeopleVaccinatedSecondDoseByVaccinationDate\",\"metric_name\":\"Cumulative people vaccinated 2nd dose by vaccination date\"},{\"metric\":\"cumVaccinationFirstDoseUptakeByVaccinationDatePercentage\",\"metric_name\":\"Cumulative percentage of people vaccinated with a first dose by vaccination date\"},{\"metric\":\"cumVaccinationSecondDoseUptakeByVaccinationDatePercentage\",\"metric_name\":\"Cumulative percentage of second dose vaccination uptake by vaccination date\"},{\"metric\":\"newPeopleVaccinatedFirstDoseByVaccinationDate\",\"metric_name\":\"New people vaccinated with a first dose by vaccination date\"},{\"metric\":\"newPeopleVaccinatedSecondDoseByVaccinationDate\",\"metric_name\":\"New people vaccinated with a second dose by vaccination date\"},{\"metric\":\"vaccinationsAgeDemographics\",\"metric_name\":\"Vaccinations age demographics breakdown\"}],\"page\":{\"title\":\"Vaccinations\",\"uri\":\"/details/vaccinations\"},\"type\":\"data issue\"},{\"applicable_to\":[\"Scotland\",\"Scotland local authorities\",\"England\",\"England regions\",\"England UTLAs\",\"England LTLAs\",\"England MSOAs\"],\"body\":\"Because of technical issues there is no update to vaccination data for regions, local authorities and MSOAs in England and Scotland.\\r\\n\\r\\nFigures will be updated when available. It is likely that data for Scottish local authorities will continue to be delayed whilst we work with Public Health Scotland to process these data in time for the UK dashboard update.\",\"date\":\"2021-11-05\",\"details\":\"\",\"display_banner\":true,\"heading\":\"No update to local vaccination data\",\"high_priority\":false,\"id\":\"fbaf221b-0cd2-4cbc-91b7-3a6d03a9ea13\",\"metrics\":[{\"metric\":\"cumPeopleVaccinatedFirstDoseByVaccinationDate\",\"metric_name\":\"Cumulative people vaccinated 1st dose by vaccination date\"},{\"metric\":\"cumPeopleVaccinatedSecondDoseByVaccinationDate\",\"metric_name\":\"Cumulative people vaccinated 2nd dose by vaccination date\"},{\"metric\":\"cumVaccinationFirstDoseUptakeByVaccinationDatePercentage\",\"metric_name\":\"Cumulative percentage of people vaccinated with a first dose by vaccination date\"},{\"metric\":\"cumVaccinationSecondDoseUptakeByVaccinationDatePercentage\",\"metric_name\":\"Cumulative percentage of second dose vaccination uptake by vaccination date\"},{\"metric\":\"newPeopleVaccinatedFirstDoseByVaccinationDate\",\"metric_name\":\"New people vaccinated with a first dose by vaccination date\"},{\"metric\":\"newPeopleVaccinatedSecondDoseByVaccinationDate\",\"metric_name\":\"New people vaccinated with a second dose by vaccination date\"},{\"metric\":\"vaccinationsAgeDemographics\",\"metric_name\":\"Vaccinations age demographics breakdown\"}],\"page\":{\"title\":\"Vaccinations\",\"uri\":\"/details/vaccinations\"},\"type\":\"data issue\"},{\"applicable_to\":[\"UK\",\"Scotland\"],\"body\":\"Public Health Scotland have changed the way that dose 3 and booster vaccinations are reported. They are now only reported as a combined number, and not available separately. The historical data for the individual metrics have been removed from the downloadable data.\\r\\n\\r\\nDue to a change in the way data are processed, some vaccinations previously reported as dose 1 or dose 2 are now reported as dose 3 or booster.\",\"date\":\"2021-11-04\",\"details\":\"\",\"display_banner\":true,\"heading\":\"Change to reporting of dose 3 and booster vaccinations in Scotland\",\"high_priority\":false,\"id\":\"26e9eb6b-7d32-443f-9369-0cb0dd8267e4\",\"metrics\":[{\"metric\":\"cumPeopleVaccinatedBoosterDoseByPublishDate\",\"metric_name\":\"Cumulative people vaccinated booster dose by publish date\"},{\"metric\":\"cumPeopleVaccinatedThirdDoseByPublishDate\",\"metric_name\":\"Cumulative people vaccinated 3rd dose by publish date\"},{\"metric\":\"cumPeopleVaccinatedThirdInjectionByPublishDate\",\"metric_name\":\"Cumulative people vaccinated with a booster dose plus new people vaccinated with a third dose by publish date\"},{\"metric\":\"cumVaccinationBoosterDoseUptakeByPublishDatePercentage\",\"metric_name\":\"Cumulative percentage of people vaccinated with a booster dose by publish date\"},{\"metric\":\"cumVaccinationThirdInjectionUptakeByPublishDatePercentage\",\"metric_name\":\"Cumulative percentage of people vaccinated with a booster dose plus people vaccinated with third dose by publish date\"},{\"metric\":\"newPeopleVaccinatedBoosterDoseByPublishDate\",\"metric_name\":\"New people vaccinated with a booster dose by publish date\"},{\"metric\":\"newPeopleVaccinatedThirdDoseByPublishDate\",\"metric_name\":\"New people vaccinated with a third dose by publish date\"},{\"metric\":\"newPeopleVaccinatedThirdInjectionByPublishDate\",\"metric_name\":\"New people vaccinated with a booster dose plus new people vaccinated with a third dose by publish date\"}],\"page\":{\"title\":\"Vaccinations\",\"uri\":\"/details/vaccinations\"},\"type\":\"update\"},{\"applicable_to\":[\"Scotland local authorities\"],\"body\":\"Because of a delay to publication of vaccination data for Scottish local authorities, it was not possible to include it in today's update. Figures will be added in the next release.\",\"date\":\"2021-11-04\",\"details\":\"\",\"display_banner\":true,\"heading\":\"No update to vaccinations for Scottish local authorities\",\"high_priority\":false,\"id\":\"2517664d-bb01-4d89-bc5e-f4910a3caa56\",\"metrics\":[{\"metric\":\"cumPeopleVaccinatedFirstDoseByVaccinationDate\",\"metric_name\":\"Cumulative people vaccinated 1st dose by vaccination date\"},{\"metric\":\"cumPeopleVaccinatedSecondDoseByVaccinationDate\",\"metric_name\":\"Cumulative people vaccinated 2nd dose by vaccination date\"},{\"metric\":\"cumVaccinationFirstDoseUptakeByVaccinationDatePercentage\",\"metric_name\":\"Cumulative percentage of people vaccinated with a first dose by vaccination date\"},{\"metric\":\"cumVaccinationSecondDoseUptakeByVaccinationDatePercentage\",\"metric_name\":\"Cumulative percentage of second dose vaccination uptake by vaccination date\"},{\"metric\":\"newPeopleVaccinatedFirstDoseByVaccinationDate\",\"metric_name\":\"New people vaccinated with a first dose by vaccination date\"},{\"metric\":\"newPeopleVaccinatedSecondDoseByVaccinationDate\",\"metric_name\":\"New people vaccinated with a second dose by vaccination date\"}],\"page\":{\"title\":\"Vaccinations\",\"uri\":\"/details/vaccinations\"},\"type\":\"data issue\"},{\"applicable_to\":[\"Scotland local authorities\"],\"body\":\"Because of a delay to publication of vaccination data for Scottish local authorities, it was not possible to include it in today's update. Figures will be added in the next release.\",\"date\":\"2021-11-03\",\"details\":\"\",\"display_banner\":true,\"heading\":\"No update to vaccinations for Scottish local authorities\",\"high_priority\":false,\"id\":\"c0e9cf88-e6d9-4485-92ea-c7b9649229aa\",\"metrics\":[{\"metric\":\"cumPeopleVaccinatedFirstDoseByVaccinationDate\",\"metric_name\":\"Cumulative people vaccinated 1st dose by vaccination date\"},{\"metric\":\"cumPeopleVaccinatedSecondDoseByVaccinationDate\",\"metric_name\":\"Cumulative people vaccinated 2nd dose by vaccination date\"},{\"metric\":\"cumVaccinationFirstDoseUptakeByVaccinationDatePercentage\",\"metric_name\":\"Cumulative percentage of people vaccinated with a first dose by vaccination date\"},{\"metric\":\"cumVaccinationSecondDoseUptakeByVaccinationDatePercentage\",\"metric_name\":\"Cumulative percentage of second dose vaccination uptake by vaccination date\"},{\"metric\":\"newPeopleVaccinatedFirstDoseByVaccinationDate\",\"metric_name\":\"New people vaccinated with a first dose by vaccination date\"},{\"metric\":\"newPeopleVaccinatedSecondDoseByVaccinationDate\",\"metric_name\":\"New people vaccinated with a second dose by vaccination date\"}],\"page\":{\"title\":\"Vaccinations\",\"uri\":\"/details/vaccinations\"},\"type\":\"data issue\"},{\"applicable_to\":[\"UK\",\"England\"],\"body\":\"Daily counts of deaths in England rely on multiple data sources. Deaths data were not received from NHS England on 1st November 2021. This means that two days’ worth of data from this data source are potentially included in today’s figures.\\r\\n\\r\\nToday’s overnight changes are likely higher than would be expected.\",\"date\":\"2021-11-02\",\"details\":\"More information on this issue was published by [NHS England](https://www.england.nhs.uk/statistics/statistical-work-applicable_tos/covid-19-daily-deaths/):\\r\\n\\r\\nNOTE: Due to a technical fault, the system used to collect daily data on individuals who’ve died with COVID-19 in hospitals was offline on Sunday. As a result, the data over the next few days may be higher while the records are entered into the system.\",\"display_banner\":true,\"heading\":\"Higher number of deaths reported in England\",\"high_priority\":false,\"id\":\"1bef55ad-a433-49b5-bba4-0cbed497508d\",\"metrics\":[{\"metric\":\"cumDeaths28DaysByPublishDate\",\"metric_name\":\"Cumulative deaths within 28 days of a positive test by publish date\"},{\"metric\":\"newDeaths28DaysByPublishDate\",\"metric_name\":\"New deaths 28 days of a positive test by publish date\"}],\"page\":{\"title\":\"Deaths\",\"uri\":\"/details/deaths\"},\"type\":\"data issue\"},{\"applicable_to\":[\"UK\",\"England\"],\"body\":\"Daily counts of deaths in England rely on multiple data sources. Deaths data was not received from NHS England on 1st November 2021. This will have an impact on the total number of deaths reported.\",\"date\":\"2021-11-01\",\"details\":\"More information on this issue was published by [NHS England](https://www.england.nhs.uk/statistics/statistical-work-applicable_tos/covid-19-daily-deaths/):\\r\\n\\r\\nNOTE: There was a nationwide CPNS system outage throughout Sunday 31 October, with no access for providers to upload records and no regional or national validation. Therefore, the daily announced deaths file was unable to be produced for Monday 1st November. The CPNS system issues have been resolved and daily reporting will be restored as normal from Tues 2 Nov, including counts that could not be recorded for the previous period during the system outage.\",\"display_banner\":true,\"heading\":\"Lower number of deaths reported in England\",\"high_priority\":false,\"id\":\"a1f17864-9022-4dee-be4f-43346fa068fb\",\"metrics\":[{\"metric\":\"cumDeaths28DaysByPublishDate\",\"metric_name\":\"Cumulative deaths within 28 days of a positive test by publish date\"},{\"metric\":\"newDeaths28DaysByPublishDate\",\"metric_name\":\"New deaths 28 days of a positive test by publish date\"}],\"page\":{\"title\":\"Deaths\",\"uri\":\"/details/deaths\"},\"type\":\"data issue\"},{\"applicable_to\":[\"Scotland local authorities\",\"UK\",\"Scotland\"],\"body\":\"Open data feeds from Public Health Scotland have not updated so it has only been possible to update headline metrics (cases, deaths within 28 days of a positive test and vaccinations by report date) for Scotland.\\r\\n\\r\\nOther metrics for Scotland and for Scottish local authorities will be updated in the next release.\",\"date\":\"2021-10-31\",\"details\":\"\",\"display_banner\":true,\"heading\":\"Update to headlines only for Scotland\",\"high_priority\":false,\"id\":\"35068770-975c-48a6-a297-c35223482b25\",\"metrics\":[{\"metric\":\"cumCasesBySpecimenDate\",\"metric_name\":\"Cumulative cases by specimen date\"},{\"metric\":\"cumDeaths28DaysByDeathDate\",\"metric_name\":\"Cumulative deaths within 28 days of a positive test by death date\"},{\"metric\":\"cumPeopleVaccinatedFirstDoseByVaccinationDate\",\"metric_name\":\"Cumulative people vaccinated 1st dose by vaccination date\"},{\"metric\":\"cumPeopleVaccinatedSecondDoseByVaccinationDate\",\"metric_name\":\"Cumulative people vaccinated 2nd dose by vaccination date\"},{\"metric\":\"cumVaccinationFirstDoseUptakeByVaccinationDatePercentage\",\"metric_name\":\"Cumulative percentage of people vaccinated with a first dose by vaccination date\"},{\"metric\":\"cumVaccinationSecondDoseUptakeByVaccinationDatePercentage\",\"metric_name\":\"Cumulative percentage of second dose vaccination uptake by vaccination date\"},{\"metric\":\"newAdmissions\",\"metric_name\":\"New admissions\"},{\"metric\":\"newCasesBySpecimenDate\",\"metric_name\":\"New cases by specimen date\"},{\"metric\":\"newDeaths28DaysByDeathDate\",\"metric_name\":\"New deaths within 28 days of a positive test by death date\"},{\"metric\":\"newPeopleVaccinatedFirstDoseByVaccinationDate\",\"metric_name\":\"New people vaccinated with a first dose by vaccination date\"},{\"metric\":\"newPeopleVaccinatedSecondDoseByVaccinationDate\",\"metric_name\":\"New people vaccinated with a second dose by vaccination date\"}],\"page\":{\"title\":\"Vaccinations\",\"uri\":\"/details/vaccinations\"},\"type\":\"data issue\"},{\"applicable_to\":[\"Scotland\",\"Scotland local authorities\"],\"body\":\"Because of processing issues with vaccination data in Scotland, it has only been possible to update the headline totals at nation level.\\r\\n\\r\\nData at local authority have not been updated. Figures will be added when available.\",\"date\":\"2021-10-29\",\"details\":\"\",\"display_banner\":true,\"heading\":\"Headline totals only for vaccinations in Scotland\",\"high_priority\":false,\"id\":\"4d96458e-fa8d-4d44-a8c6-9ce209ef6a26\",\"metrics\":[{\"metric\":\"cumPeopleVaccinatedFirstDoseByVaccinationDate\",\"metric_name\":\"Cumulative people vaccinated 1st dose by vaccination date\"},{\"metric\":\"cumPeopleVaccinatedSecondDoseByVaccinationDate\",\"metric_name\":\"Cumulative people vaccinated 2nd dose by vaccination date\"},{\"metric\":\"cumVaccinationFirstDoseUptakeByVaccinationDatePercentage\",\"metric_name\":\"Cumulative percentage of people vaccinated with a first dose by vaccination date\"},{\"metric\":\"cumVaccinationSecondDoseUptakeByVaccinationDatePercentage\",\"metric_name\":\"Cumulative percentage of second dose vaccination uptake by vaccination date\"},{\"metric\":\"newPeopleVaccinatedFirstDoseByVaccinationDate\",\"metric_name\":\"New people vaccinated with a first dose by vaccination date\"},{\"metric\":\"newPeopleVaccinatedSecondDoseByVaccinationDate\",\"metric_name\":\"New people vaccinated with a second dose by vaccination date\"},{\"metric\":\"vaccinationsAgeDemographics\",\"metric_name\":\"Vaccinations age demographics breakdown\"}],\"page\":{\"title\":\"Vaccinations\",\"uri\":\"/details/vaccinations\"},\"type\":\"data issue\"},{\"applicable_to\":[\"All NHS regions\"],\"body\":\"Estimates for the South West have been paused until we gain a full understanding of the impact of the reported incident of the incorrect negative PCR test results on estimates in this region. UKHSA is confident that R is above 1 in the South West and that the epidemic is growing in this region.\",\"date\":\"2021-10-29\",\"details\":\"\",\"display_banner\":true,\"heading\":\"No update to R value and growth rate for South West\",\"high_priority\":false,\"id\":\"7ceb85ea-07f0-416b-9a54-182d769fda76\",\"metrics\":[{\"metric\":\"transmissionRateGrowthRateMax\",\"metric_name\":\"Maximum transmission growth rate\"},{\"metric\":\"transmissionRateGrowthRateMin\",\"metric_name\":\"Transmission rate growth rate min\"},{\"metric\":\"transmissionRateMax\",\"metric_name\":\"Maximum transmission rate (R)\"},{\"metric\":\"transmissionRateMin\",\"metric_name\":\"Minimum transmission rate (R)\"}],\"page\":{\"title\":\"Healthcare\",\"uri\":\"/details/healthcare\"},\"type\":\"update\"}],\"length\":20,\"page\":1,\"total_length\":234,\"total_pages\":12}" } } } } }, "400": { "description": "Bad request. Reason provided in response body where possible." }, "404": { "description": "Not found." }, "429": { "description": "Too many requests - request has been throttled.", "headers": { "retry-after": { "description": "Time in seconds to wait before resubmitting the request.", "required": true, "schema": { "type": "integer" } } } }, "500": { "description": "Server error" } } } }, "/log_banners/{date}/{page}/{area_type}/{area_name}": { "get": { "summary": "Log banners", "description": "Returns log banners.", "operationId": "log-banners", "parameters": [ { "name": "date", "in": "path", "description": "The date of the banners to be returned. Formatted as YYYY-MM-DD", "required": true, "schema": { "type": "string", "example": "2021-08-05" } }, { "name": "page", "in": "path", "description": "Returns the banners for the specified category (page).", "required": true, "schema": { "type": "string", "example": "Daily Summary" } }, { "name": "area_type", "in": "path", "description": "Type of the area by which to filter the areas associated with the given category.", "required": true, "schema": { "enum": [ "overview", "nation", "region", "utla", "ltla", "msoa", "nhsRegion", "nhsTrust" ], "type": "string", "example": "overview" } }, { "name": "area_name", "in": "path", "description": "Name of the area within the given area type.", "required": true, "schema": { "type": "string", "example": "United Kingdom" } }, { "name": "page", "in": "query", "description": "Returns page of results. There are 20 results per page and page count starts at 1.", "required": false, "schema": { "type": "integer", "default": 1, "example": 1 } }, { "name": "Accept", "in": "header", "required": true, "schema": { "enum": [ "application/json" ], "type": "string", "default": "application/json" } } ], "responses": { "200": { "description": "", "headers": { "content-type": { "required": true, "schema": { "enum": [ "application/vnd.UKHSA-COVID19.v1+json; charset=utf-8" ], "type": "string" } }, "server": { "required": true, "description": "Server application name and version.", "schema": { "type": "string" } }, "Strict-Transport-Security": { "required": true, "description": "", "schema": { "type": "string" } }, "x-frame-options": { "required": true, "schema": { "type": "string" } }, "x-content-type-options": { "required": true, "schema": { "type": "string" } }, "x-xss-protection": { "required": true, "schema": { "type": "string" } }, "referrer-policy": { "required": true, "schema": { "type": "string" } }, "content-security-policy": { "required": true, "schema": { "type": "string" } }, "x-ukhsa-media-type": { "required": true, "schema": { "type": "string" } }, "ukhsa-server-loc": { "required": false, "description": "Identifier for the specific server responding to the request.", "schema": { "type": "string" } }, "Request-Context": { "required": true, "description": "Correlation ID of the request.", "schema": { "type": "string" } }, "ukhsa-website-request": { "required": true, "description": "Identifier to determine whether the request originates from the website.", "schema": { "type": "number" } } }, "content": { "application/json": { "schema": { "$ref": "#/components/schemas/log-banners" }, "examples": { "Banners for August 5th on Daily Summary page for the UK": { "value": "[{\"body\":\"Rates for cases and deaths for nations, regions and local authorities have been updated to use the latest population estimates for mid-2020, published by the Office for National Statistics. \\r\\n\\r\\nHospital admission rates for NHS Regions have been updated to use the mid-2019 population estimates, which are the most current for that geography. \\r\\n \\r\\nThe updated population has been applied to all dates throughout the pandemic.\",\"date\":\"2021-08-05\",\"heading\":\"Updated population estimates used for rates of cases, hospital admissions and deaths\",\"high_priority\":false,\"id\":\"3e80c9b6-ebc5-4669-9e94-80f894e6fd38\",\"type\":\"change to metric\"},{\"body\":\"The daily reported vaccination figures for England since 27 July 2021 included a small number of people vaccinated in Wales. \\r\\n\\r\\nThese vaccinations have been removed from the figures for England for all affected dates, to ensure there is no double counting with the figures for Wales. \\r\\n\\r\\nThe UK totals have also been revised to reflect the change in the England numbers.\",\"date\":\"2021-08-05\",\"heading\":\"Revision to England vaccination numbers\",\"high_priority\":false,\"id\":\"d4a1dd7a-d070-4515-a106-7c9e7c9576e1\",\"type\":\"data issue\"}]" } } } } }, "400": { "description": "Bad request. Reason provided in response body where possible." }, "404": { "description": "Not found." }, "429": { "description": "Too many requests - request has been throttled.", "headers": { "retry-after": { "description": "Time in seconds to wait before resubmitting the request.", "required": true, "schema": { "type": "integer" } } } }, "500": { "description": "Server error" } } } }, "/change_logs/{date}": { "get": { "summary": "Change logs: dated", "description": "Returns change logs for specified month.", "operationId": "60f56748b0cd58c54c65bbbc", "parameters": [ { "name": "date", "in": "path", "description": "Month and year formatted as YYYY-MM", "required": true, "schema": { "type": "string", "example": "2021-08" } }, { "name": "search", "in": "query", "description": "Search the contents of the change logs for matching strings.", "schema": { "type": "string", "example": "population" } }, { "name": "title", "in": "query", "description": "Returns the change logs for the specified category (page).", "schema": { "type": "string", "example": "Daily Summary" } }, { "name": "type", "in": "query", "description": "Returns the change logs of the specified type.", "schema": { "type": "string", "example": "update" } }, { "name": "page", "in": "query", "description": "Returns page of results. There are 20 results per page and page count starts at 1.", "required": false, "schema": { "type": "integer", "default": 1, "example": 1 } }, { "name": "Accept", "in": "header", "required": true, "schema": { "enum": [ "application/json" ], "type": "string", "default": "application/json" } } ], "responses": { "200": { "description": "", "headers": { "content-type": { "required": true, "schema": { "enum": [ "application/vnd.UKHSA-COVID19.v1+json; charset=utf-8" ], "type": "string" } }, "server": { "required": true, "description": "Server application name and version.", "schema": { "type": "string" } }, "Strict-Transport-Security": { "required": true, "description": "", "schema": { "type": "string" } }, "x-frame-options": { "required": true, "schema": { "type": "string" } }, "x-content-type-options": { "required": true, "schema": { "type": "string" } }, "x-xss-protection": { "required": true, "schema": { "type": "string" } }, "referrer-policy": { "required": true, "schema": { "type": "string" } }, "content-security-policy": { "required": true, "schema": { "type": "string" } }, "x-ukhsa-media-type": { "required": true, "schema": { "type": "string" } }, "ukhsa-server-loc": { "required": false, "description": "Identifier for the specific server responding to the request.", "schema": { "type": "string" } }, "Request-Context": { "required": true, "description": "Correlation ID of the request.", "schema": { "type": "string" } }, "ukhsa-website-request": { "required": true, "description": "Identifier to determine whether the request originates from the website.", "schema": { "type": "number" } } }, "content": { "application/json": { "schema": { "$ref": "#/components/schemas/change-logs" }, "examples": { "Results for July 2021": { "value": "{\"data\":[{\"applicable_to\":[\"UK\",\"England\",\"England regions\",\"England UTLAs\",\"England LTLAs\"],\"body\":\"The current LFD test metrics will be deprecated on 1 December 2021.\\r\\n\\r\\nThere are no changes to the metric definitions, these metrics are being renamed to match the naming convention of other metrics.\\r\\n\\r\\n\\r\\n\\r\\nThe new metric names are `newLFDTestsBySpecimenDate` and `cumLFDTestsBySpecimenDate`.\",\"date\":\"2021-11-29\",\"details\":\"\",\"display_banner\":true,\"heading\":\"Change to metric names of LFD test metrics\",\"high_priority\":false,\"id\":\"0f18334e-c6f2-4bd9-91e3-4f184741c943\",\"metrics\":[{\"metric\":\"cumLFDTests\",\"metric_name\":\"Cumulative LFD tests\"},{\"metric\":\"newLFDTests\",\"metric_name\":\"New LFD tests\"}],\"page\":{\"title\":\"Testing\",\"uri\":\"/details/testing\"},\"type\":\"change to metric\"},{\"applicable_to\":[\"Northern Ireland\",\"Wales\",\"UK\",\"England\",\"Scotland\"],\"body\":\"The current virus test metrics will be deprecated on 1 December 2021.\\r\\n\\r\\nThere are no changes to the metric definitions, these metrics are being renamed to match the naming convention of other metrics.\\r\\n\\r\\n\\r\\n\\r\\nThe new metric names are `newVirusTestsByPublishDate` and `cumVirusTestsByPublishDate`.\",\"date\":\"2021-11-29\",\"details\":\"\",\"display_banner\":true,\"heading\":\"Change to metric names of virus test metrics\",\"high_priority\":false,\"id\":\"a55ac6f1-e694-4c01-8690-747f3b6f2e1a\",\"metrics\":[{\"metric\":\"cumVirusTests\",\"metric_name\":\"Cumulative virus tests\"},{\"metric\":\"newVirusTests\",\"metric_name\":\"New virus tests\"}],\"page\":{\"title\":\"Testing\",\"uri\":\"/details/testing\"},\"type\":\"change to metric\"},{\"applicable_to\":[\"UK\",\"Northern Ireland\"],\"body\":\"Because of technical issues, the update of reported vaccinations for Northern Ireland is delayed. \\r\\n\\r\\nUK vaccinations by report date only include those newly reported from England and Scotland. Data for Wales are routinely not updated at weekends.\",\"date\":\"2021-11-27\",\"details\":\"\",\"display_banner\":true,\"heading\":\"Delay to vaccination data for Northern Ireland\",\"high_priority\":false,\"id\":\"e9672141-2c68-45b5-9611-62732a8bedf5\",\"metrics\":[{\"metric\":\"cumPeopleVaccinatedThirdDoseByPublishDate\",\"metric_name\":\"Cumulative people vaccinated 3rd dose by publish date\"},{\"metric\":\"cumVaccinationBoosterDoseUptakeByPublishDatePercentage\",\"metric_name\":\"Cumulative percentage of people vaccinated with a booster dose by publish date\"},{\"metric\":\"cumVaccinationFirstDoseUptakeByPublishDatePercentage\",\"metric_name\":\"Cumulative vaccination 1st dose uptake by publish date percentage\"},{\"metric\":\"cumVaccinationSecondDoseUptakeByPublishDatePercentage\",\"metric_name\":\"Cumulative vaccination 2nd dose uptake by publish date percentage\"},{\"metric\":\"cumVaccinationThirdInjectionUptakeByPublishDatePercentage\",\"metric_name\":\"Cumulative percentage of people vaccinated with a booster dose plus people vaccinated with third dose by publish date\"},{\"metric\":\"cumVaccinesGivenByPublishDate\",\"metric_name\":\"Cumulative vaccines given by publish date\"},{\"metric\":\"newPeopleVaccinatedBoosterDoseByPublishDate\",\"metric_name\":\"New people vaccinated with a booster dose by publish date\"},{\"metric\":\"newPeopleVaccinatedFirstDoseByPublishDate\",\"metric_name\":\"New people vaccinated 1st dose by publish date\"},{\"metric\":\"newPeopleVaccinatedSecondDoseByVaccinationDate\",\"metric_name\":\"New people vaccinated with a second dose by vaccination date\"},{\"metric\":\"newPeopleVaccinatedThirdDoseByPublishDate\",\"metric_name\":\"New people vaccinated with a third dose by publish date\"},{\"metric\":\"newPeopleVaccinatedThirdInjectionByPublishDate\",\"metric_name\":\"New people vaccinated with a booster dose plus new people vaccinated with a third dose by publish date\"},{\"metric\":\"newVaccinesGivenByPublishDate\",\"metric_name\":\"New vaccines given by publish date\"}],\"page\":{\"title\":\"Vaccinations\",\"uri\":\"/details/vaccinations\"},\"type\":\"data issue\"},{\"applicable_to\":[\"England\"],\"body\":\"Because of a processing issue, positive lateral flow tests followed by a negative PCR test in England were not removed on 23 Nov 2021. Today's figures include removals for 2 days.\\r\\n\\r\\n\\r\\n\\r\\nWe are aware that the cases by test type metric is not currently categorising cases correctly. We are investigating the cause of this and will correct this as soon as we are able.\",\"date\":\"2021-11-24\",\"details\":\"\",\"display_banner\":true,\"heading\":\"Issue with cases by test type\",\"high_priority\":false,\"id\":\"b13acbb3-f3e7-40fc-8775-e6b42baec2ed\",\"metrics\":[{\"metric\":\"cumCasesLFDConfirmedPCRBySpecimenDate\",\"metric_name\":\"Cumulative cases LFD confirmed by PCR by specimen date\"},{\"metric\":\"cumCasesLFDOnlyBySpecimenDate\",\"metric_name\":\"Cumulative cases LFD-only by specimen date\"},{\"metric\":\"cumCasesPCROnlyBySpecimenDate\",\"metric_name\":\"Cumulative cases PCR only by specimen date\"},{\"metric\":\"newCasesLFDConfirmedPCRBySpecimenDate\",\"metric_name\":\"New cases LFD confirmed by PCR by specimen date\"},{\"metric\":\"newCasesLFDOnlyBySpecimenDate\",\"metric_name\":\"New cases LFD only by specimen date\"},{\"metric\":\"newCasesPCROnlyBySpecimenDate\",\"metric_name\":\"New cases PCR only by specimen date\"}],\"page\":{\"title\":\"Cases\",\"uri\":\"/details/cases\"},\"type\":\"data issue\"},{\"applicable_to\":[\"UK\",\"England\",\"England regions\",\"England UTLAs\",\"England LTLAs\",\"England MSOAs\"],\"body\":\"Because of processing issues there is no update to vaccination data for regions, local authorities and MSOAs in England today.\\r\\n\\r\\nUpdated figures will be added in the next release.\",\"date\":\"2021-11-23\",\"details\":\"\",\"display_banner\":true,\"heading\":\"Delay in update to local vaccination data in England\",\"high_priority\":false,\"id\":\"48d77765-2156-4430-a804-c88b9660ea6e\",\"metrics\":[{\"metric\":\"cumPeopleVaccinatedFirstDoseByVaccinationDate\",\"metric_name\":\"Cumulative people vaccinated 1st dose by vaccination date\"},{\"metric\":\"cumPeopleVaccinatedSecondDoseByVaccinationDate\",\"metric_name\":\"Cumulative people vaccinated 2nd dose by vaccination date\"},{\"metric\":\"cumVaccinationFirstDoseUptakeByVaccinationDatePercentage\",\"metric_name\":\"Cumulative percentage of people vaccinated with a first dose by vaccination date\"},{\"metric\":\"cumVaccinationSecondDoseUptakeByVaccinationDatePercentage\",\"metric_name\":\"Cumulative percentage of second dose vaccination uptake by vaccination date\"},{\"metric\":\"newPeopleVaccinatedFirstDoseByVaccinationDate\",\"metric_name\":\"New people vaccinated with a first dose by vaccination date\"},{\"metric\":\"newPeopleVaccinatedSecondDoseByVaccinationDate\",\"metric_name\":\"New people vaccinated with a second dose by vaccination date\"},{\"metric\":\"vaccinationsAgeDemographics\",\"metric_name\":\"Vaccinations age demographics breakdown\"}],\"page\":{\"title\":\"Vaccinations\",\"uri\":\"/details/vaccinations\"},\"type\":\"data issue\"},{\"applicable_to\":[\"England\",\"England regions\",\"England UTLAs\",\"England LTLAs\",\"England MSOAs\",\"UK\"],\"body\":\"Because of processing issues there is no update to vaccination data for regions, local authorities and MSOAs in England today.\\r\\n\\r\\nUpdated figures will be added in the next release.\",\"date\":\"2021-11-19\",\"details\":\"\",\"display_banner\":true,\"heading\":\"Delay in update to local vaccination data in England\",\"high_priority\":false,\"id\":\"7c27fd25-0cb2-48b4-9eef-8f0cd4513cbf\",\"metrics\":[{\"metric\":\"cumPeopleVaccinatedFirstDoseByVaccinationDate\",\"metric_name\":\"Cumulative people vaccinated 1st dose by vaccination date\"},{\"metric\":\"cumPeopleVaccinatedSecondDoseByVaccinationDate\",\"metric_name\":\"Cumulative people vaccinated 2nd dose by vaccination date\"},{\"metric\":\"cumVaccinationFirstDoseUptakeByVaccinationDatePercentage\",\"metric_name\":\"Cumulative percentage of people vaccinated with a first dose by vaccination date\"},{\"metric\":\"cumVaccinationSecondDoseUptakeByVaccinationDatePercentage\",\"metric_name\":\"Cumulative percentage of second dose vaccination uptake by vaccination date\"},{\"metric\":\"newPeopleVaccinatedFirstDoseByVaccinationDate\",\"metric_name\":\"New people vaccinated with a first dose by vaccination date\"},{\"metric\":\"newPeopleVaccinatedSecondDoseByVaccinationDate\",\"metric_name\":\"New people vaccinated with a second dose by vaccination date\"},{\"metric\":\"vaccinationsAgeDemographics\",\"metric_name\":\"Vaccinations age demographics breakdown\"}],\"page\":{\"title\":\"Vaccinations\",\"uri\":\"/details/vaccinations\"},\"type\":\"data issue\"},{\"applicable_to\":[\"Wales local authorities\",\"England UTLAs\",\"All NHS trusts\",\"UK\",\"England\",\"England regions\",\"England MSOAs\",\"Wales\",\"All NHS regions\",\"England LTLAs\",\"Scotland\",\"Scotland local authorities\",\"Northern Ireland\",\"Northern Ireland local authorities\"],\"body\":\"We have created a new metrics documentation page listing all current and historical metrics.\\r\\n\\r\\n\\r\\n\\r\\nMetrics can be searched for based on name, category, type or availability by applicable_to type.\\r\\n\\r\\n\\r\\n\\r\\nA brief description of each metric is provided, along with additional details such as the date it was last updated, a more in depth description (including data sources), underlying methodologies and lists of any changes or updates.\",\"date\":\"2021-11-19\",\"details\":\"\",\"display_banner\":true,\"heading\":\"New Metrics documentation\",\"high_priority\":false,\"id\":\"e854d002-3049-4de2-b205-ad9c61a1c932\",\"metrics\":[],\"page\":{\"title\":\"Vaccinations\",\"uri\":\"/metrics\"},\"type\":\"new feature\"},{\"applicable_to\":[\"UK\",\"Scotland\",\"Scotland local authorities\"],\"body\":\"Because of an improvement to data processing in Scotland, a number of records previously reported as first dose vaccinations are now reported as second dose, third dose or booster. This has resulted in a reduction in the total number of first dose vaccinations given in Scotland.\",\"date\":\"2021-11-12\",\"details\":\"\",\"display_banner\":true,\"heading\":\"Adjustment to Scottish vaccinations\",\"high_priority\":false,\"id\":\"05b9f0d0-a1dc-45ad-8caf-6ccae1f42f51\",\"metrics\":[{\"metric\":\"cumPeopleVaccinatedFirstDoseByPublishDate\",\"metric_name\":\"Cumulative people vaccinated 1st dose by publish date\"},{\"metric\":\"cumPeopleVaccinatedFirstDoseByVaccinationDate\",\"metric_name\":\"Cumulative people vaccinated 1st dose by vaccination date\"},{\"metric\":\"cumPeopleVaccinatedSecondDoseByPublishDate\",\"metric_name\":\"Cumulative people vaccinated 2nd dose by publish date\"},{\"metric\":\"cumPeopleVaccinatedSecondDoseByVaccinationDate\",\"metric_name\":\"Cumulative people vaccinated 2nd dose by vaccination date\"},{\"metric\":\"cumPeopleVaccinatedThirdInjectionByPublishDate\",\"metric_name\":\"Cumulative people vaccinated with a booster dose plus new people vaccinated with a third dose by publish date\"},{\"metric\":\"cumVaccinationFirstDoseUptakeByPublishDatePercentage\",\"metric_name\":\"Cumulative vaccination 1st dose uptake by publish date percentage\"},{\"metric\":\"cumVaccinationFirstDoseUptakeByVaccinationDatePercentage\",\"metric_name\":\"Cumulative percentage of people vaccinated with a first dose by vaccination date\"},{\"metric\":\"cumVaccinationSecondDoseUptakeByPublishDatePercentage\",\"metric_name\":\"Cumulative vaccination 2nd dose uptake by publish date percentage\"},{\"metric\":\"cumVaccinationSecondDoseUptakeByVaccinationDatePercentage\",\"metric_name\":\"Cumulative percentage of second dose vaccination uptake by vaccination date\"},{\"metric\":\"cumVaccinationThirdInjectionUptakeByPublishDatePercentage\",\"metric_name\":\"Cumulative percentage of people vaccinated with a booster dose plus people vaccinated with third dose by publish date\"},{\"metric\":\"newPeopleVaccinatedFirstDoseByPublishDate\",\"metric_name\":\"New people vaccinated 1st dose by publish date\"},{\"metric\":\"newPeopleVaccinatedFirstDoseByVaccinationDate\",\"metric_name\":\"New people vaccinated with a first dose by vaccination date\"},{\"metric\":\"newPeopleVaccinatedSecondDoseByPublishDate\",\"metric_name\":\"New people vaccinated 2nd dose by publish date\"},{\"metric\":\"newPeopleVaccinatedSecondDoseByVaccinationDate\",\"metric_name\":\"New people vaccinated with a second dose by vaccination date\"},{\"metric\":\"newPeopleVaccinatedThirdInjectionByPublishDate\",\"metric_name\":\"New people vaccinated with a booster dose plus new people vaccinated with a third dose by publish date\"},{\"metric\":\"vaccinationsAgeDemographics\",\"metric_name\":\"Vaccinations age demographics breakdown\"}],\"page\":{\"title\":\"Vaccinations\",\"uri\":\"/details/vaccinations\"},\"type\":\"data issue\"},{\"applicable_to\":[\"England\",\"UK\"],\"body\":\"There was a technical issue from 9 to 10 November 2021 that affected the numbers of vaccinations in England reported by NHS England. Some vaccinations recorded on those days could not be counted in the figures until today. The increase in vaccinations reported for 10 November 2021 therefore appears higher than increases on previous days.\",\"date\":\"2021-11-11\",\"details\":\"\",\"display_banner\":true,\"heading\":\"Vaccinations in England includes delayed reports\",\"high_priority\":false,\"id\":\"6e2ddf27-91b9-4d66-8878-5e6082271cc0\",\"metrics\":[{\"metric\":\"cumPeopleVaccinatedFirstDoseByVaccinationDate\",\"metric_name\":\"Cumulative people vaccinated 1st dose by vaccination date\"},{\"metric\":\"cumPeopleVaccinatedSecondDoseByPublishDate\",\"metric_name\":\"Cumulative people vaccinated 2nd dose by publish date\"},{\"metric\":\"cumPeopleVaccinatedThirdInjectionByPublishDate\",\"metric_name\":\"Cumulative people vaccinated with a booster dose plus new people vaccinated with a third dose by publish date\"},{\"metric\":\"cumVaccinationFirstDoseUptakeByPublishDatePercentage\",\"metric_name\":\"Cumulative vaccination 1st dose uptake by publish date percentage\"},{\"metric\":\"cumVaccinationSecondDoseUptakeByPublishDatePercentage\",\"metric_name\":\"Cumulative vaccination 2nd dose uptake by publish date percentage\"},{\"metric\":\"cumVaccinationThirdInjectionUptakeByPublishDatePercentage\",\"metric_name\":\"Cumulative percentage of people vaccinated with a booster dose plus people vaccinated with third dose by publish date\"},{\"metric\":\"newPeopleVaccinatedFirstDoseByPublishDate\",\"metric_name\":\"New people vaccinated 1st dose by publish date\"},{\"metric\":\"newPeopleVaccinatedSecondDoseByPublishDate\",\"metric_name\":\"New people vaccinated 2nd dose by publish date\"},{\"metric\":\"newPeopleVaccinatedThirdInjectionByPublishDate\",\"metric_name\":\"New people vaccinated with a booster dose plus new people vaccinated with a third dose by publish date\"}],\"page\":{\"title\":\"Vaccinations\",\"uri\":\"/details/vaccinations\"},\"type\":\"data issue\"},{\"applicable_to\":[\"Scotland local authorities\"],\"body\":\"Because of a delay to publication of vaccination data for Scottish local authorities, it was not possible to include it in today's update. Figures will be added in the next release.\",\"date\":\"2021-11-09\",\"details\":\"\",\"display_banner\":true,\"heading\":\"No update to vaccinations for Scottish local authorities\",\"high_priority\":false,\"id\":\"3875bd00-41c0-4e6d-9e31-c6afe9e6665a\",\"metrics\":[{\"metric\":\"cumPeopleVaccinatedFirstDoseByVaccinationDate\",\"metric_name\":\"Cumulative people vaccinated 1st dose by vaccination date\"},{\"metric\":\"cumPeopleVaccinatedSecondDoseByVaccinationDate\",\"metric_name\":\"Cumulative people vaccinated 2nd dose by vaccination date\"},{\"metric\":\"cumVaccinationFirstDoseUptakeByVaccinationDatePercentage\",\"metric_name\":\"Cumulative percentage of people vaccinated with a first dose by vaccination date\"},{\"metric\":\"cumVaccinationSecondDoseUptakeByVaccinationDatePercentage\",\"metric_name\":\"Cumulative percentage of second dose vaccination uptake by vaccination date\"},{\"metric\":\"newPeopleVaccinatedFirstDoseByVaccinationDate\",\"metric_name\":\"New people vaccinated with a first dose by vaccination date\"},{\"metric\":\"newPeopleVaccinatedSecondDoseByVaccinationDate\",\"metric_name\":\"New people vaccinated with a second dose by vaccination date\"}],\"page\":{\"title\":\"Vaccinations\",\"uri\":\"/details/vaccinations\"},\"type\":\"data issue\"},{\"applicable_to\":[\"UK\",\"England\",\"England regions\",\"England UTLAs\",\"England LTLAs\",\"England MSOAs\"],\"body\":\"Because of processing issues there is no update to vaccination data for regions, local authorities and MSOAs in England.\\r\\n\\r\\nFigures missing from 6 November 2021 have been added in this release.\",\"date\":\"2021-11-08\",\"details\":\"\",\"display_banner\":true,\"heading\":\"Delay in update to local vaccination data in England\",\"high_priority\":false,\"id\":\"b5578786-e0e4-44b3-b705-2eeaa411cd2e\",\"metrics\":[{\"metric\":\"cumPeopleVaccinatedFirstDoseByVaccinationDate\",\"metric_name\":\"Cumulative people vaccinated 1st dose by vaccination date\"},{\"metric\":\"cumPeopleVaccinatedSecondDoseByVaccinationDate\",\"metric_name\":\"Cumulative people vaccinated 2nd dose by vaccination date\"},{\"metric\":\"cumVaccinationFirstDoseUptakeByVaccinationDatePercentage\",\"metric_name\":\"Cumulative percentage of people vaccinated with a first dose by vaccination date\"},{\"metric\":\"cumVaccinationSecondDoseUptakeByVaccinationDatePercentage\",\"metric_name\":\"Cumulative percentage of second dose vaccination uptake by vaccination date\"},{\"metric\":\"newPeopleVaccinatedFirstDoseByVaccinationDate\",\"metric_name\":\"New people vaccinated with a first dose by vaccination date\"},{\"metric\":\"newPeopleVaccinatedSecondDoseByVaccinationDate\",\"metric_name\":\"New people vaccinated with a second dose by vaccination date\"},{\"metric\":\"vaccinationsAgeDemographics\",\"metric_name\":\"Vaccinations age demographics breakdown\"}],\"page\":{\"title\":\"Vaccinations\",\"uri\":\"/details/vaccinations\"},\"type\":\"data issue\"},{\"applicable_to\":[\"England UTLAs\",\"England LTLAs\",\"England MSOAs\",\"Scotland\",\"Scotland local authorities\",\"England\",\"England regions\"],\"body\":\"Because of technical issues there is no update to vaccination data for regions, local authorities and MSOAs in England and Scotland.\\r\\n\\r\\nFigures will be updated when available. It is likely that data for Scottish local authorities will continue to be delayed whilst we work with Public Health Scotland to process these data in time for the UK dashboard update.\",\"date\":\"2021-11-05\",\"details\":\"\",\"display_banner\":true,\"heading\":\"No update to local vaccination data\",\"high_priority\":false,\"id\":\"fbaf221b-0cd2-4cbc-91b7-3a6d03a9ea13\",\"metrics\":[{\"metric\":\"cumPeopleVaccinatedFirstDoseByVaccinationDate\",\"metric_name\":\"Cumulative people vaccinated 1st dose by vaccination date\"},{\"metric\":\"cumPeopleVaccinatedSecondDoseByVaccinationDate\",\"metric_name\":\"Cumulative people vaccinated 2nd dose by vaccination date\"},{\"metric\":\"cumVaccinationFirstDoseUptakeByVaccinationDatePercentage\",\"metric_name\":\"Cumulative percentage of people vaccinated with a first dose by vaccination date\"},{\"metric\":\"cumVaccinationSecondDoseUptakeByVaccinationDatePercentage\",\"metric_name\":\"Cumulative percentage of second dose vaccination uptake by vaccination date\"},{\"metric\":\"newPeopleVaccinatedFirstDoseByVaccinationDate\",\"metric_name\":\"New people vaccinated with a first dose by vaccination date\"},{\"metric\":\"newPeopleVaccinatedSecondDoseByVaccinationDate\",\"metric_name\":\"New people vaccinated with a second dose by vaccination date\"},{\"metric\":\"vaccinationsAgeDemographics\",\"metric_name\":\"Vaccinations age demographics breakdown\"}],\"page\":{\"title\":\"Vaccinations\",\"uri\":\"/details/vaccinations\"},\"type\":\"data issue\"},{\"applicable_to\":[\"Scotland\",\"UK\"],\"body\":\"Public Health Scotland have changed the way that dose 3 and booster vaccinations are reported. They are now only reported as a combined number, and not available separately. The historical data for the individual metrics have been removed from the downloadable data.\\r\\n\\r\\nDue to a change in the way data are processed, some vaccinations previously reported as dose 1 or dose 2 are now reported as dose 3 or booster.\",\"date\":\"2021-11-04\",\"details\":\"\",\"display_banner\":true,\"heading\":\"Change to reporting of dose 3 and booster vaccinations in Scotland\",\"high_priority\":false,\"id\":\"26e9eb6b-7d32-443f-9369-0cb0dd8267e4\",\"metrics\":[{\"metric\":\"cumPeopleVaccinatedBoosterDoseByPublishDate\",\"metric_name\":\"Cumulative people vaccinated booster dose by publish date\"},{\"metric\":\"cumPeopleVaccinatedThirdDoseByPublishDate\",\"metric_name\":\"Cumulative people vaccinated 3rd dose by publish date\"},{\"metric\":\"cumPeopleVaccinatedThirdInjectionByPublishDate\",\"metric_name\":\"Cumulative people vaccinated with a booster dose plus new people vaccinated with a third dose by publish date\"},{\"metric\":\"cumVaccinationBoosterDoseUptakeByPublishDatePercentage\",\"metric_name\":\"Cumulative percentage of people vaccinated with a booster dose by publish date\"},{\"metric\":\"cumVaccinationThirdInjectionUptakeByPublishDatePercentage\",\"metric_name\":\"Cumulative percentage of people vaccinated with a booster dose plus people vaccinated with third dose by publish date\"},{\"metric\":\"newPeopleVaccinatedBoosterDoseByPublishDate\",\"metric_name\":\"New people vaccinated with a booster dose by publish date\"},{\"metric\":\"newPeopleVaccinatedThirdDoseByPublishDate\",\"metric_name\":\"New people vaccinated with a third dose by publish date\"},{\"metric\":\"newPeopleVaccinatedThirdInjectionByPublishDate\",\"metric_name\":\"New people vaccinated with a booster dose plus new people vaccinated with a third dose by publish date\"}],\"page\":{\"title\":\"Vaccinations\",\"uri\":\"/details/vaccinations\"},\"type\":\"update\"},{\"applicable_to\":[\"Scotland local authorities\"],\"body\":\"Because of a delay to publication of vaccination data for Scottish local authorities, it was not possible to include it in today's update. Figures will be added in the next release.\",\"date\":\"2021-11-04\",\"details\":\"\",\"display_banner\":true,\"heading\":\"No update to vaccinations for Scottish local authorities\",\"high_priority\":false,\"id\":\"2517664d-bb01-4d89-bc5e-f4910a3caa56\",\"metrics\":[{\"metric\":\"cumPeopleVaccinatedFirstDoseByVaccinationDate\",\"metric_name\":\"Cumulative people vaccinated 1st dose by vaccination date\"},{\"metric\":\"cumPeopleVaccinatedSecondDoseByVaccinationDate\",\"metric_name\":\"Cumulative people vaccinated 2nd dose by vaccination date\"},{\"metric\":\"cumVaccinationFirstDoseUptakeByVaccinationDatePercentage\",\"metric_name\":\"Cumulative percentage of people vaccinated with a first dose by vaccination date\"},{\"metric\":\"cumVaccinationSecondDoseUptakeByVaccinationDatePercentage\",\"metric_name\":\"Cumulative percentage of second dose vaccination uptake by vaccination date\"},{\"metric\":\"newPeopleVaccinatedFirstDoseByVaccinationDate\",\"metric_name\":\"New people vaccinated with a first dose by vaccination date\"},{\"metric\":\"newPeopleVaccinatedSecondDoseByVaccinationDate\",\"metric_name\":\"New people vaccinated with a second dose by vaccination date\"}],\"page\":{\"title\":\"Vaccinations\",\"uri\":\"/details/vaccinations\"},\"type\":\"data issue\"},{\"applicable_to\":[\"Scotland local authorities\"],\"body\":\"Because of a delay to publication of vaccination data for Scottish local authorities, it was not possible to include it in today's update. Figures will be added in the next release.\",\"date\":\"2021-11-03\",\"details\":\"\",\"display_banner\":true,\"heading\":\"No update to vaccinations for Scottish local authorities\",\"high_priority\":false,\"id\":\"c0e9cf88-e6d9-4485-92ea-c7b9649229aa\",\"metrics\":[{\"metric\":\"cumPeopleVaccinatedFirstDoseByVaccinationDate\",\"metric_name\":\"Cumulative people vaccinated 1st dose by vaccination date\"},{\"metric\":\"cumPeopleVaccinatedSecondDoseByVaccinationDate\",\"metric_name\":\"Cumulative people vaccinated 2nd dose by vaccination date\"},{\"metric\":\"cumVaccinationFirstDoseUptakeByVaccinationDatePercentage\",\"metric_name\":\"Cumulative percentage of people vaccinated with a first dose by vaccination date\"},{\"metric\":\"cumVaccinationSecondDoseUptakeByVaccinationDatePercentage\",\"metric_name\":\"Cumulative percentage of second dose vaccination uptake by vaccination date\"},{\"metric\":\"newPeopleVaccinatedFirstDoseByVaccinationDate\",\"metric_name\":\"New people vaccinated with a first dose by vaccination date\"},{\"metric\":\"newPeopleVaccinatedSecondDoseByVaccinationDate\",\"metric_name\":\"New people vaccinated with a second dose by vaccination date\"}],\"page\":{\"title\":\"Vaccinations\",\"uri\":\"/details/vaccinations\"},\"type\":\"data issue\"},{\"applicable_to\":[\"England\",\"UK\"],\"body\":\"Daily counts of deaths in England rely on multiple data sources. Deaths data were not received from NHS England on 1st November 2021. This means that two days’ worth of data from this data source are potentially included in today’s figures.\\r\\n\\r\\nToday’s overnight changes are likely higher than would be expected.\",\"date\":\"2021-11-02\",\"details\":\"More information on this issue was published by [NHS England](https://www.england.nhs.uk/statistics/statistical-work-applicable_tos/covid-19-daily-deaths/):\\r\\n\\r\\nNOTE: Due to a technical fault, the system used to collect daily data on individuals who’ve died with COVID-19 in hospitals was offline on Sunday. As a result, the data over the next few days may be higher while the records are entered into the system.\",\"display_banner\":true,\"heading\":\"Higher number of deaths reported in England\",\"high_priority\":false,\"id\":\"1bef55ad-a433-49b5-bba4-0cbed497508d\",\"metrics\":[{\"metric\":\"cumDeaths28DaysByPublishDate\",\"metric_name\":\"Cumulative deaths within 28 days of a positive test by publish date\"},{\"metric\":\"newDeaths28DaysByPublishDate\",\"metric_name\":\"New deaths 28 days of a positive test by publish date\"}],\"page\":{\"title\":\"Deaths\",\"uri\":\"/details/deaths\"},\"type\":\"data issue\"},{\"applicable_to\":[\"UK\",\"England\"],\"body\":\"Daily counts of deaths in England rely on multiple data sources. Deaths data was not received from NHS England on 1st November 2021. This will have an impact on the total number of deaths reported.\",\"date\":\"2021-11-01\",\"details\":\"More information on this issue was published by [NHS England](https://www.england.nhs.uk/statistics/statistical-work-applicable_tos/covid-19-daily-deaths/):\\r\\n\\r\\nNOTE: There was a nationwide CPNS system outage throughout Sunday 31 October, with no access for providers to upload records and no regional or national validation. Therefore, the daily announced deaths file was unable to be produced for Monday 1st November. The CPNS system issues have been resolved and daily reporting will be restored as normal from Tues 2 Nov, including counts that could not be recorded for the previous period during the system outage.\",\"display_banner\":true,\"heading\":\"Lower number of deaths reported in England\",\"high_priority\":false,\"id\":\"a1f17864-9022-4dee-be4f-43346fa068fb\",\"metrics\":[{\"metric\":\"cumDeaths28DaysByPublishDate\",\"metric_name\":\"Cumulative deaths within 28 days of a positive test by publish date\"},{\"metric\":\"newDeaths28DaysByPublishDate\",\"metric_name\":\"New deaths 28 days of a positive test by publish date\"}],\"page\":{\"title\":\"Deaths\",\"uri\":\"/details/deaths\"},\"type\":\"data issue\"}],\"length\":17,\"page\":1,\"total_length\":17,\"total_pages\":1}" } } } } }, "400": { "description": "Bad request. Reason provided in response body where possible." }, "404": { "description": "Not found." }, "429": { "description": "Too many requests - request has been throttled.", "headers": { "retry-after": { "description": "Time in seconds to wait before resubmitting the request.", "required": true, "schema": { "type": "integer" } } } }, "500": { "description": "Server error" } } } }, "/change_logs/log/{id}": { "get": { "summary": "Change logs: Record", "operationId": "changelogs-record", "description": "Returns a specific log by its UUID.", "parameters": [ { "name": "id", "in": "path", "description": "Record ID (UUID 4)", "required": true, "schema": { "type": "string", "example": "d4a1dd7a-d070-4515-a106-7c9e7c9576e1" } }, { "name": "Accept", "in": "header", "required": true, "schema": { "enum": [ "application/json" ], "type": "string", "default": "application/json" } } ], "responses": { "200": { "description": "", "headers": { "content-type": { "required": true, "schema": { "enum": [ "application/vnd.UKHSA-COVID19.v1+json; charset=utf-8" ], "type": "string" } }, "server": { "required": true, "description": "Server application name and version.", "schema": { "type": "string" } }, "Strict-Transport-Security": { "required": true, "description": "", "schema": { "type": "string" } }, "x-frame-options": { "required": true, "schema": { "type": "string" } }, "x-content-type-options": { "required": true, "schema": { "type": "string" } }, "x-xss-protection": { "required": true, "schema": { "type": "string" } }, "referrer-policy": { "required": true, "schema": { "type": "string" } }, "content-security-policy": { "required": true, "schema": { "type": "string" } }, "x-ukhsa-media-type": { "required": true, "schema": { "type": "string" } }, "ukhsa-server-loc": { "required": false, "description": "Identifier for the specific server responding to the request.", "schema": { "type": "string" } }, "Request-Context": { "required": true, "description": "Correlation ID of the request.", "schema": { "type": "string" } }, "ukhsa-website-request": { "required": true, "description": "Identifier to determine whether the request originates from the website.", "schema": { "type": "number" } } }, "content": { "application/json": { "schema": { "$ref": "#/components/schemas/change-log" }, "examples": { "response for id `0f18334e-c6f2-4bd9-91e3-4f184741c943`": { "value": "{\"area\":[\"UK\",\"England\",\"England regions\",\"England UTLAs\",\"England LTLAs\"],\"body\":\"The current LFD test metrics will be deprecated on 1 December 2021.\\r\\n\\r\\nThere are no changes to the metric definitions, these metrics are being renamed to match the naming convention of other metrics.\\r\\n\\r\\n\\r\\n\\r\\nThe new metric names are `newLFDTestsBySpecimenDate` and `cumLFDTestsBySpecimenDate`.\",\"date\":\"2021-11-29\",\"details\":\"\",\"display_banner\":true,\"heading\":\"Change to metric names of LFD test metrics\",\"high_priority\":false,\"id\":\"0f18334e-c6f2-4bd9-91e3-4f184741c943\",\"metrics\":[{\"metric\":\"cumLFDTests\",\"metric_name\":\"Cumulative LFD tests\"},{\"metric\":\"newLFDTests\",\"metric_name\":\"New LFD tests\"}],\"page\":{\"title\":\"Testing\",\"uri\":\"/details/testing\"},\"type\":\"change to metric\"}" } } } } }, "400": { "description": "Bad request. Reason provided in response body where possible." }, "404": { "description": "Not found." }, "429": { "description": "Too many requests - request has been throttled.", "headers": { "retry-after": { "description": "Time in seconds to wait before resubmitting the request.", "required": true, "schema": { "type": "integer" } } } }, "500": { "description": "Server error" } } } }, "/change_logs/components/{component}": { "get": { "summary": "Change logs components", "operationId": "60f5678913d5ce28b7fbadcd", "description": "Returns valid components for the query parameters of the change logs.", "parameters": [ { "name": "component", "in": "path", "required": true, "schema": { "enum": [ "titles", "types", "dates" ], "type": "string", "example": "types" } }, { "name": "Accept", "in": "header", "required": true, "schema": { "enum": [ "application/json" ], "type": "string", "default": "application/json" } } ], "responses": { "200": { "description": "", "headers": { "content-type": { "required": true, "schema": { "enum": [ "application/vnd.UKHSA-COVID19.v1+json; charset=utf-8" ], "type": "string" } }, "server": { "required": true, "description": "Server application name and version.", "schema": { "type": "string" } }, "Strict-Transport-Security": { "required": true, "description": "", "schema": { "type": "string" } }, "x-frame-options": { "required": true, "schema": { "type": "string" } }, "x-content-type-options": { "required": true, "schema": { "type": "string" } }, "x-xss-protection": { "required": true, "schema": { "type": "string" } }, "referrer-policy": { "required": true, "schema": { "type": "string" } }, "content-security-policy": { "required": true, "schema": { "type": "string" } }, "x-ukhsa-media-type": { "required": true, "schema": { "type": "string" } }, "ukhsa-server-loc": { "required": false, "description": "Identifier for the specific server responding to the request.", "schema": { "type": "string" } }, "Request-Context": { "required": true, "description": "Correlation ID of the request.", "schema": { "type": "string" } }, "ukhsa-website-request": { "required": true, "description": "Identifier to determine whether the request originates from the website.", "schema": { "type": "number" } } }, "content": { "application/json": { "examples": { "Response for types": { "value": "[{\"tag\":\"update\"},{\"tag\":\"other\"},{\"tag\":\"new metric\"},{\"tag\":\"new feature\"},{\"tag\":\"new content\"},{\"tag\":\"data issue\"},{\"tag\":\"change to metric\"}]" } } } } }, "400": { "description": "Bad request. Reason provided in response body where possible." }, "404": { "description": "Not found." }, "429": { "description": "Too many requests - request has been throttled.", "headers": { "retry-after": { "description": "Time in seconds to wait before resubmitting the request.", "required": true, "schema": { "type": "integer" } } } }, "500": { "description": "Server error" } } } }, "/change_logs/{type}.xml": { "get": { "summary": "Change Logs - feed", "operationId": "changelogs-feed", "description": "Returns either an atom or rss feed of Change Logs.", "parameters": [ { "name": "type", "in": "path", "description": "One of \"atom\" or \"rss\"", "required": true, "schema": { "enum": [ "atom", "rss" ], "type": "string", "default": "atom" } }, { "name": "Accept", "in": "header", "required": true, "schema": { "enum": [ "application/xml", "text/xml", "application/atom+xml", "application/rss+xml" ], "type": "string", "default": "application/xml" } } ], "responses": { "200": { "description": "", "headers": { "content-type": { "required": true, "schema": { "enum": [ "application/xml", "text/xml", "application/atom+xml", "application/rss+xml" ], "type": "string" } }, "server": { "required": true, "description": "Server application name and version.", "schema": { "type": "string" } }, "Strict-Transport-Security": { "required": true, "description": "", "schema": { "type": "string" } }, "x-frame-options": { "required": true, "schema": { "type": "string" } }, "x-content-type-options": { "required": true, "schema": { "type": "string" } }, "x-xss-protection": { "required": true, "schema": { "type": "string" } }, "referrer-policy": { "required": true, "schema": { "type": "string" } }, "content-security-policy": { "required": true, "schema": { "type": "string" } }, "x-ukhsa-media-type": { "required": true, "schema": { "type": "string" } }, "ukhsa-server-loc": { "required": false, "description": "Identifier for the specific server responding to the request.", "schema": { "type": "string" } }, "Request-Context": { "required": true, "description": "Correlation ID of the request.", "schema": { "type": "string" } }, "ukhsa-website-request": { "required": true, "description": "Identifier to determine whether the request originates from the website.", "schema": { "type": "number" } } } }, "400": { "description": "Bad request. Reason provided in response body where possible." }, "404": { "description": "Not found." }, "429": { "description": "Too many requests - request has been throttled.", "headers": { "retry-after": { "description": "Time in seconds to wait before resubmitting the request.", "required": true, "schema": { "type": "integer" } } } }, "500": { "description": "Server error" } } } }, "/announcements": { "get": { "summary": "Announcements", "operationId": "announcements", "description": "Returns all announcements.", "parameters": [ { "name": "Accept", "in": "header", "required": true, "schema": { "enum": [ "application/json" ], "type": "string", "default": "application/json" } } ], "responses": { "200": { "description": "", "headers": { "content-type": { "required": true, "schema": { "enum": [ "application/vnd.UKHSA-COVID19.v1+json; charset=utf-8" ], "type": "string" } }, "server": { "required": true, "description": "Server application name and version.", "schema": { "type": "string" } }, "Strict-Transport-Security": { "required": true, "description": "", "schema": { "type": "string" } }, "x-frame-options": { "required": true, "schema": { "type": "string" } }, "x-content-type-options": { "required": true, "schema": { "type": "string" } }, "x-xss-protection": { "required": true, "schema": { "type": "string" } }, "referrer-policy": { "required": true, "schema": { "type": "string" } }, "content-security-policy": { "required": true, "schema": { "type": "string" } }, "x-ukhsa-media-type": { "required": true, "schema": { "type": "string" } }, "ukhsa-server-loc": { "required": false, "description": "Identifier for the specific server responding to the request.", "schema": { "type": "string" } }, "Request-Context": { "required": true, "description": "Correlation ID of the request.", "schema": { "type": "string" } }, "ukhsa-website-request": { "required": true, "description": "Identifier to determine whether the request originates from the website.", "schema": { "type": "number" } } }, "content": { "application/json": { "schema": { "$ref": "#/components/schemas/announcements" }, "examples": { "Response for announcements": { "value": "[\n {\n \"body\": \"On Thursday 5 August, case, hospital admission and death rates per 100,000 people for the UK, nations, regions and local authorities will be updated to use the mid-2020 population estimates.\",\n \"date\": \"2021-08-03\",\n \"expire\": \"2021-08-05\",\n \"has_expired\": true,\n \"id\": \"e6817475-dd68-4153-859c-91bc209421e6\",\n \"launch\": \"2021-08-03\"\n },\n {\n \"body\": \"Because of technical difficulties in processing England deaths data, today's update is delayed.\\nUK figures for 26 July 2021: 24,950 new cases | 46,589,211 people have now received the first dose of a vaccine | 37,287,384 have received a 2nd dose.\",\n \"date\": \"2021-07-26\",\n \"expire\": \"2021-07-26\",\n \"has_expired\": true,\n \"id\": \"e9dc5984-3a06-4a48-89ab-1f51322efeb4\",\n \"launch\": \"2021-07-25\"\n },\n {\n \"body\": \"Because of technical difficulties in processing England deaths data, today's update is delayed.\",\n \"date\": \"2021-07-25\",\n \"expire\": \"2021-07-25\",\n \"has_expired\": true,\n \"id\": \"dcd7d3f2-fb12-4856-899b-ad8aaa5daeff\",\n \"launch\": \"2021-07-24\"\n },\n {\n \"body\": \"Because of technical difficulties in processing England deaths data, today's update is delayed.\",\n \"date\": \"2021-07-24\",\n \"expire\": \"2021-07-24\",\n \"has_expired\": true,\n \"id\": \"4574413a-6d96-428c-85ee-d6ef1426d1f7\",\n \"launch\": \"2021-07-23\"\n },\n {\n \"body\": \"On Thursday 22 July, vaccination uptake for the UK, nations and Scottish local authorities will be updated to use the mid-2020 population estimates.\",\n \"date\": \"2021-07-20\",\n \"expire\": \"2021-07-22\",\n \"has_expired\": true,\n \"id\": \"f72d2ea8-fbc4-43f7-a0d1-3bc542eee397\",\n \"launch\": \"2021-07-20\"\n },\n {\n \"body\": \"Because of a processing issue, today's update is delayed.\\nUK figures for 14 July 2021: 42,302 new cases | 49 new deaths within 28 days of a positive test | 46,037,090 people have now received the first dose of a vaccine | 35,155,767 have received a 2nd dose.\",\n \"date\": \"2021-07-14\",\n \"expire\": \"2021-07-14\",\n \"has_expired\": true,\n \"id\": \"c7679c69-6e52-4dfd-95c6-869920400d1b\",\n \"launch\": \"2021-07-13\"\n },\n {\n \"body\": \"Because of a processing issue, today's update is delayed.\",\n \"date\": \"2021-07-03\",\n \"expire\": \"2021-07-03\",\n \"has_expired\": true,\n \"id\": \"13287842-c84e-4023-bd42-b49297bb184a\",\n \"launch\": \"2021-07-02\"\n },\n {\n \"body\": \"**No update to England vaccinations.** Following an IT issue reported to the NHS on 21 June, it has not been possible to update vaccination figures for England. UK totals only include updates from Northern Ireland, Scotland and Wales. [**More**](/details/whats-new)\",\n \"date\": \"2021-06-22\",\n \"expire\": \"2021-06-23\",\n \"has_expired\": true,\n \"id\": \"3bd18f1f-8f79-4d4a-9889-d437960bf2ad\",\n \"launch\": \"2021-06-22\"\n },\n {\n \"body\": \"**Improved local authority allocation for deaths in England.** Some deaths previously reported in England have been reallocated to different resident local authorities. Total deaths for England are unaffected, but some local authorities and regions will show inaccurate daily reported numbers because of this change. [**More**](/details/whats-new)\",\n \"date\": \"2021-06-16\",\n \"expire\": \"2021-06-17\",\n \"has_expired\": true,\n \"id\": \"5bc37a0d-293c-43d0-80e4-eeb9c4f7f67f\",\n \"launch\": \"2021-06-16\"\n },\n {\n \"body\": \"Because of technical difficulties affecting reporting of vaccine data from Public Health Wales, today's update is delayed. We will update the dashboard as soon as we are able to.\",\n \"date\": \"2021-05-30\",\n \"expire\": \"2021-05-30\",\n \"has_expired\": true,\n \"id\": \"1f6fe758-c0a8-4414-924a-4103400dc91e\",\n \"launch\": \"2021-05-29\"\n },\n {\n \"body\": \"Because of a delay in processing of vaccination data for local authorities and regions in England, they will be updated on the dashboard later today.\",\n \"date\": \"2021-05-25\",\n \"expire\": \"2021-05-26\",\n \"has_expired\": true,\n \"id\": \"2e97446c-8189-40e4-968e-9d07d0f98e57\",\n \"launch\": \"2021-05-25\"\n },\n {\n \"body\": \"**Revision to historical case data** The introduction of a new system disrupted the removal of cases where a positive rapid lateral flow test was followed by all negative laboratory tests taken within 3 days. 561 cases have been removed. Regions and LAs do not show the actual number of new cases reported. UK and England correctly reflect new cases reported. The issue will continue for a few days.\",\n \"date\": \"2021-05-19\",\n \"expire\": \"2021-05-20\",\n \"has_expired\": true,\n \"id\": \"edcebb61-ade5-4554-b66f-c7a70ccf67b7\",\n \"launch\": \"2021-05-19\"\n },\n {\n \"body\": \"**Revision to historical case data**. The introduction of a new system disrupted the removal of cases where a positive rapid lateral flow test was followed by all negative laboratory tests taken within 3 days. 4,776 additional cases have been removed. Regions and LAs do not show the actual number of new cases reported. UK and England correctly reflect new cases reported.\",\n \"date\": \"2021-05-18\",\n \"expire\": \"2021-05-19\",\n \"has_expired\": true,\n \"id\": \"3367b52e-5230-45a9-ac06-fa137fca3fa7\",\n \"launch\": \"2021-05-18\"\n },\n {\n \"body\": \"Because of a delay in receiving data from Public Health Scotland, today's update is delayed. The dashboard will not be updated before 5:30pm.\",\n \"date\": \"2021-05-11\",\n \"expire\": \"2021-05-11\",\n \"has_expired\": true,\n \"id\": \"e93d484d-69a3-4d8d-9e14-d49996786a46\",\n \"launch\": \"2021-05-10\"\n },\n {\n \"body\": \"Latest deaths data unavailable below UK level. [More](/details/whats-new)\",\n \"date\": \"2021-05-03\",\n \"expire\": \"2021-05-04\",\n \"has_expired\": true,\n \"id\": \"d6440d3e-ad71-49f5-9c8c-e819df23f907\",\n \"launch\": \"2021-05-03\"\n },\n {\n \"body\": \"Figures reported by Wales for 48 hour period. [More](/details/whats-new)\",\n \"date\": \"2021-04-19\",\n \"expire\": \"2021-04-20\",\n \"has_expired\": true,\n \"id\": \"83549e96-7d7e-4fd4-ae1f-88e05276431b\",\n \"launch\": \"2021-04-19\"\n },\n {\n \"body\": \"Due to a delay in receiving data from Public Health Wales, today's update is delayed.\",\n \"date\": \"2021-04-13\",\n \"expire\": \"2021-04-13\",\n \"has_expired\": true,\n \"id\": \"6ef82391-6a7d-49ab-9a5e-e19f1ffa5a55\",\n \"launch\": \"2021-04-12\"\n },\n {\n \"body\": \"**Change to case reporting and revision to historical case data** The way cases are reported has changed, resulting in the removal of a number of previously reported cases in England. This affects newly reported cases on 9 April. Regions and LAs do not show the actual number of new cases reported. UK and England newly reported cases have been adjusted and correctly reflect new cases reported.\",\n \"date\": \"2021-04-09\",\n \"expire\": \"2021-04-10\",\n \"has_expired\": true,\n \"id\": \"124951b4-0d15-487d-9013-9307bf04f4f0\",\n \"launch\": \"2021-04-07\"\n },\n {\n \"body\": \"During the Easter period, the COVID-19 Dashboard will be updated every day, but the amount of data being updated will vary. See full details in the [About the Data](/details/about-data#easter-2021-schedule) page.\",\n \"date\": \"2021-03-31\",\n \"expire\": \"2021-04-07\",\n \"has_expired\": true,\n \"id\": \"0fc3242d-5a3e-4e17-8715-e63ee39d6a74\",\n \"launch\": \"2021-03-30\"\n },\n {\n \"body\": \"Owing to a delay in receiving data from Northern Ireland, today's update is delayed.\",\n \"date\": \"2021-03-27\",\n \"expire\": \"2021-03-27\",\n \"has_expired\": true,\n \"id\": \"5705c20e-10c6-406e-8b0a-f2fc29cfce4b\",\n \"launch\": \"2021-03-26\"\n },\n {\n \"body\": \"Owing to processing issues for deaths in England, the numbers of deaths throughout the UK will be updated later. In the meantime, the number of newly reported deaths for 7 March 2021 may incorrectly show as zero.\",\n \"date\": \"2021-03-07\",\n \"expire\": \"2021-03-08\",\n \"has_expired\": true,\n \"id\": \"39f050e1-7ff5-4596-a040-8a9c1eb414d2\",\n \"launch\": \"2021-03-07\"\n },\n {\n \"body\": \"Owing to a delay in the submission of cases data for England to PHE, today's update is delayed.\",\n \"date\": \"2021-03-05\",\n \"expire\": \"2021-03-05\",\n \"has_expired\": true,\n \"id\": \"a214b990-1819-448b-a88a-c045d7c3ec24\",\n \"launch\": \"2021-03-04\"\n },\n {\n \"body\": \"Owing to an issue with the processing of cases data, the update for 3 March 2021 is delayed.\",\n \"date\": \"2021-03-02\",\n \"expire\": \"2021-03-03\",\n \"has_expired\": true,\n \"id\": \"cf30bd3f-6ada-40da-8f3a-5e5111db5327\",\n \"launch\": \"2021-03-02\"\n },\n {\n \"body\": \"Due to an issue with the processing of healthcare data for England, the most recent figures are incorrect. We are working to fix the issue and will publish corrected figures as soon as possible.\",\n \"date\": \"2021-02-05\",\n \"expire\": \"2021-02-06\",\n \"has_expired\": true,\n \"id\": \"b9b57c28-4aea-47b7-834c-f01203e1ccea\",\n \"launch\": \"2021-02-05\"\n },\n {\n \"body\": \"Complete our [quick survey](https://docs.google.com/forms/d/e/1FAIpQLSc4GnaNWayFyBJxnoGHOnL1Igwo6KsOtDBAQYBN6uxWCDvH7Q/viewform) to help us improve this website.\",\n \"date\": \"2021-02-02\",\n \"expire\": \"2021-02-09\",\n \"has_expired\": true,\n \"id\": \"0358e0b1-601d-472b-b904-5dbf7cafbaa9\",\n \"launch\": \"2021-02-02\"\n },\n {\n \"body\": \"Due to an issue with the processing of deaths data, the update for 29 January 2021 does not include any updates to deaths figures. These will be added later today.\",\n \"date\": \"2021-01-29\",\n \"expire\": \"2021-01-30\",\n \"has_expired\": true,\n \"id\": \"ba39c22c-bda1-4e9a-a4d8-0d1e9025fa35\",\n \"launch\": \"2021-01-29\"\n },\n {\n \"body\": \"Due to an issue with the processing of deaths data, the update for 14 January 2021 is delayed.\",\n \"date\": \"2021-01-13\",\n \"expire\": \"2021-01-14\",\n \"has_expired\": true,\n \"id\": \"f65c3009-c80b-4944-919f-35520f807fa4\",\n \"launch\": \"2021-01-13\"\n },\n {\n \"body\": \"Owing to issues with Public Health Scotland Open Data API service, deaths by date of death for Scotland are missing, and the UK totals therefore exclude Scotland.\",\n \"date\": \"2021-01-11\",\n \"expire\": \"2021-01-12\",\n \"has_expired\": true,\n \"id\": \"dc4ef70f-909f-4be9-b537-1eefe93af997\",\n \"launch\": \"2021-01-11\"\n },\n {\n \"body\": \"During the holiday period, the COVID-19 Dashboard will be updated every day, but the amount of data being updated will vary. See full details in the [About the Data](/details/about-data#new-year-2021-schedule) page.\",\n \"date\": \"2020-12-23\",\n \"expire\": \"2021-01-05\",\n \"has_expired\": true,\n \"id\": \"f30ccab5-2cde-47ac-befe-03d597940c2d\",\n \"launch\": \"2020-12-23\"\n }\n]" } } } } }, "400": { "description": "Bad request. Reason provided in response body where possible." }, "404": { "description": "Not found." }, "429": { "description": "Too many requests - request has been throttled.", "headers": { "retry-after": { "description": "Time in seconds to wait before resubmitting the request.", "required": true, "schema": { "type": "integer" } } } }, "500": { "description": "Server error" } } } }, "/announcements/latest": { "get": { "summary": "Announcement - Latest", "operationId": "announcement-latest", "parameters": [ { "name": "Accept", "in": "header", "required": true, "schema": { "enum": [ "application/json" ], "type": "string", "default": "application/json" } } ], "responses": { "200": { "description": "", "headers": { "content-type": { "required": true, "schema": { "enum": [ "application/vnd.UKHSA-COVID19.v1+json; charset=utf-8" ], "type": "string" } }, "server": { "required": true, "description": "Server application name and version.", "schema": { "type": "string" } }, "Strict-Transport-Security": { "required": true, "description": "", "schema": { "type": "string" } }, "x-frame-options": { "required": true, "schema": { "type": "string" } }, "x-content-type-options": { "required": true, "schema": { "type": "string" } }, "x-xss-protection": { "required": true, "schema": { "type": "string" } }, "referrer-policy": { "required": true, "schema": { "type": "string" } }, "content-security-policy": { "required": true, "schema": { "type": "string" } }, "x-ukhsa-media-type": { "required": true, "schema": { "type": "string" } }, "ukhsa-server-loc": { "required": false, "description": "Identifier for the specific server responding to the request.", "schema": { "type": "string" } }, "Request-Context": { "required": true, "description": "Correlation ID of the request.", "schema": { "type": "string" } }, "ukhsa-website-request": { "required": true, "description": "Identifier to determine whether the request originates from the website.", "schema": { "type": "number" } } } }, "400": { "description": "Bad request. Reason provided in response body where possible." }, "404": { "description": "Not found." }, "429": { "description": "Too many requests - request has been throttled.", "headers": { "retry-after": { "description": "Time in seconds to wait before resubmitting the request.", "required": true, "schema": { "type": "integer" } } } }, "500": { "description": "Server error" } } } }, "/announcements/{type}.xml": { "get": { "summary": "Announcements - feed", "operationId": "announcements-feed", "description": "Returns either an atom or rss feed of announcements.", "parameters": [ { "name": "type", "in": "path", "description": "One of \"atom\" or \"rss\"", "required": true, "schema": { "enum": [ "atom", "rss" ], "type": "string", "default": "atom" } }, { "name": "Accept", "in": "header", "required": true, "schema": { "enum": [ "application/xml", "text/xml", "application/atom+xml", "application/rss+xml" ], "type": "string", "default": "application/xml" } } ], "responses": { "200": { "description": "", "headers": { "content-type": { "required": true, "schema": { "enum": [ "application/xml", "text/xml", "application/atom+xml", "application/rss+xml" ], "type": "string" } }, "server": { "required": true, "description": "Server application name and version.", "schema": { "type": "string" } }, "Strict-Transport-Security": { "required": true, "description": "", "schema": { "type": "string" } }, "x-frame-options": { "required": true, "schema": { "type": "string" } }, "x-content-type-options": { "required": true, "schema": { "type": "string" } }, "x-xss-protection": { "required": true, "schema": { "type": "string" } }, "referrer-policy": { "required": true, "schema": { "type": "string" } }, "content-security-policy": { "required": true, "schema": { "type": "string" } }, "x-ukhsa-media-type": { "required": true, "schema": { "type": "string" } }, "ukhsa-server-loc": { "required": false, "description": "Identifier for the specific server responding to the request.", "schema": { "type": "string" } }, "Request-Context": { "required": true, "description": "Correlation ID of the request.", "schema": { "type": "string" } }, "ukhsa-website-request": { "required": true, "description": "Identifier to determine whether the request originates from the website.", "schema": { "type": "number" } } } }, "400": { "description": "Bad request. Reason provided in response body where possible." }, "404": { "description": "Not found." }, "429": { "description": "Too many requests - request has been throttled.", "headers": { "retry-after": { "description": "Time in seconds to wait before resubmitting the request.", "required": true, "schema": { "type": "integer" } } } }, "500": { "description": "Server error" } } } }, "/announcements/{id}": { "get": { "summary": "Announcement - Record", "operationId": "announcement-record", "description": "Return announcement by UUID.", "parameters": [ { "name": "id", "in": "path", "description": "Record ID (UUID 4)", "required": true, "schema": { "type": "string", "example": "e6817475-dd68-4153-859c-91bc209421e6" } }, { "name": "Accept", "in": "header", "required": true, "schema": { "enum": [ "application/json" ], "type": "string", "default": "application/json" } } ], "responses": { "200": { "description": "", "headers": { "content-type": { "required": true, "schema": { "enum": [ "application/vnd.UKHSA-COVID19.v1+json; charset=utf-8" ], "type": "string" } }, "server": { "required": true, "description": "Server application name and version.", "schema": { "type": "string" } }, "Strict-Transport-Security": { "required": true, "description": "", "schema": { "type": "string" } }, "x-frame-options": { "required": true, "schema": { "type": "string" } }, "x-content-type-options": { "required": true, "schema": { "type": "string" } }, "x-xss-protection": { "required": true, "schema": { "type": "string" } }, "referrer-policy": { "required": true, "schema": { "type": "string" } }, "content-security-policy": { "required": true, "schema": { "type": "string" } }, "x-ukhsa-media-type": { "required": true, "schema": { "type": "string" } }, "ukhsa-server-loc": { "required": false, "description": "Identifier for the specific server responding to the request.", "schema": { "type": "string" } }, "Request-Context": { "required": true, "description": "Correlation ID of the request.", "schema": { "type": "string" } }, "ukhsa-website-request": { "required": true, "description": "Identifier to determine whether the request originates from the website.", "schema": { "type": "number" } } }, "content": { "application/json": { "schema": { "$ref": "#/components/schemas/announcements" }, "examples": { "Response for id e6817475-dd68-4153-859c-91bc209421e6": { "value": "{\n \"body\": \"On Thursday 5 August, case, hospital admission and death rates per 100,000 people for the UK, nations, regions and local authorities will be updated to use the mid-2020 population estimates.\",\n \"date\": \"2021-08-03T00:00:00Z\",\n \"expire\": \"2021-08-05\",\n \"guid\": \"e6817475-dd68-4153-859c-91bc209421e6\",\n \"has_expired\": true,\n \"launch\": \"2021-08-03\"\n}" } } } } }, "400": { "description": "Bad request. Reason provided in response body where possible." }, "404": { "description": "Not found." }, "429": { "description": "Too many requests - request has been throttled.", "headers": { "retry-after": { "description": "Time in seconds to wait before resubmitting the request.", "required": true, "schema": { "type": "integer" } } } }, "500": { "description": "Server error" } } } }, "/xsl/{name}.xsl": { "get": { "summary": "XSLT", "operationId": "xslt", "parameters": [ { "name": "name", "in": "path", "required": true, "schema": { "type": "string", "enum": [ "atom", "rss" ] } }, { "name": "Accept", "in": "header", "required": true, "schema": { "enum": [ "text/xsl" ], "type": "string", "default": "text/xsl" } } ], "responses": { "200": { "description": "", "headers": { "content-type": { "required": true, "schema": { "enum": [ "text/xsl" ], "type": "string" } } } }, "400": { "description": "Bad request. Reason provided in response body where possible." }, "404": { "description": "Not found." }, "429": { "description": "Too many requests - request has been throttled.", "headers": { "retry-after": { "description": "Time in seconds to wait before resubmitting the request.", "required": true, "schema": { "type": "integer" } } } }, "500": { "description": "Server error" } } } } }, "components": { "schemas": { "area": { "type": "array", "items": { "required": [ "areaCode", "areaName" ], "type": "object", "properties": { "areaCode": { "type": "string" }, "areaName": { "type": "string" } } } }, "area-name": { "type": "object", "properties": { "areaCode": { "type": "string" }, "areaName": { "type": "string" }, "areaType": { "type": "string" } } }, "code": { "type": "object", "properties": { "ltla": { "type": "string" }, "ltlaCentroid": { "type": "array", "items": { "type": "number" } }, "ltlaName": { "type": "string" }, "msoa": { "type": "string" }, "msoaCentroid": { "type": "array", "items": { "type": "number" } }, "msoaName": { "type": "string" }, "nation": { "type": "string" }, "nationCentroid": { "type": "array", "items": { "type": "number" } }, "nationName": { "type": "string" }, "postcode": { "type": "string" }, "region": { "type": "string" }, "regionCentroid": { "type": "array", "items": { "type": "number" } }, "regionName": { "type": "string" }, "trimmedPostcode": { "type": "string" }, "utla": { "type": "string" }, "utlaCentroid": { "type": "array", "items": { "type": "number" } }, "utlaName": { "type": "string" } } }, "page-areas": { "type": "array", "items": { "required": [ "areaCode", "areaName", "areaType" ], "type": "object", "properties": { "areaCode": { "type": "string" }, "areaName": { "type": "string" }, "areaType": { "type": "string" } } } }, "metric-availability": { "type": "array", "items": { "required": [ "metric", "last_updated", "deprecated" ], "type": "object", "properties": { "metric": { "type": "string" }, "last_updated": { "type": "string" }, "deprecated": { "type": "string", "nullable": true } } } }, "page-areas-with-type": { "type": "array", "items": { "required": [ "areaCode", "areaName", "areaType" ], "type": "object", "properties": { "areaCode": { "type": "string" }, "areaName": { "type": "string" }, "areaType": { "type": "string" } } } }, "soa": { "type": "object", "properties": { "areaCode": { "type": "string" }, "areaName": { "type": "string" }, "areaType": { "type": "string" }, "date": { "type": "string" }, "metric": { "type": "string" }, "payload": { "type": "object" } }, "example": { "areaCode": "string", "areaName": "string", "areaType": "string", "date": "string", "metric": "string", "payload": {} } }, "change-logs": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "properties": { "body": { "type": "string" }, "date": { "type": "string" }, "details": { "type": "string" }, "display_banner": { "type": "boolean" }, "heading": { "type": "string" }, "high_priority": { "type": "boolean" }, "id": { "type": "string" }, "applicable_to": { "type": "array", "items": { "type": "string", "enum": [ "UK", "England", "England regions", "England UTLAs", "England LTLAs", "England MSOAs", "Scotland", "Scotland local authorities", "Northern Ireland", "Northern Ireland local authorities", "Wales local authorities", "All NHS regions", "All NHS trusts", "Unspecified" ] } }, "metrics": { "type": "array", "items": { "type": "object", "properties": { "metric": { "type": "string" }, "metric_name": { "type": "string" } }, "required": [ "metric", "metric_name" ] } }, "page": { "type": "object", "properties": { "title": { "type": "string" }, "uri": { "type": "string" } } }, "type": { "type": "string" } }, "required": [ "applicable_to", "body", "date", "details", "display_banner", "heading", "high_priority", "id", "metrics", "page", "type" ] } }, "length": { "type": "integer" }, "page": { "type": "integer" }, "total_length": { "type": "integer" }, "total_pages": { "type": "integer" } } }, "change-log": { "type": "object", "properties": { "body": { "type": "string" }, "date": { "type": "string" }, "details": { "type": "string" }, "display_banner": { "type": "boolean" }, "heading": { "type": "string" }, "high_priority": { "type": "boolean" }, "id": { "type": "string" }, "metrics": { "type": "array", "items": { "type": "object", "properties": { "metric": { "type": "string" }, "metric_name": { "type": "string" } }, "required": [ "metric", "metric_name" ] } }, "page": { "type": "object", "properties": { "title": { "type": "string" }, "uri": { "type": "string" } } }, "type": { "type": "string" } } }, "healthcheck": { "type": "object", "properties": { "status": { "type": "string" } } }, "metrics": { "type": "array", "items": { "type": "object", "properties": { "last_update": { "type": "string" }, "metric": { "type": "string" }, "metric_name": { "type": "string" }, "category": { "type": "string" }, "deprecated": { "type": "string", "nullable": true }, "doc_last_modified": { "type": "string", "nullable": true }, "tags": { "type": "array", "items": { "type": "string" } } }, "required": [ "last_update", "metric", "metric_name", "category", "tags" ] } }, "metric-doc": { "type": "object", "properties": { "metric_name": { "type": "string" }, "metric": { "type": "string" }, "deprecated": { "type": "string", "nullable": true }, "category": { "type": "string" }, "documentation": { "type": "object", "properties": { "abstract": { "type": "object", "properties": { "last_modified": { "type": "string" }, "body": { "type": "string" } }, "required": [ "last_modified", "body" ] }, "description": { "type": "object", "properties": { "last_modified": { "type": "string" }, "body": { "type": "string" } }, "required": [ "last_modified", "body" ] }, "methodology": { "type": "object", "properties": { "last_modified": { "type": "string" }, "body": { "type": "string" } }, "required": [ "last_modified", "body" ] } } }, "logs": { "type": "array", "items": [ { "type": "object", "properties": { "id": { "type": "string" }, "heading": { "type": "string" }, "date": { "type": "string" }, "expiry": { "type": "string", "nullable": true }, "type": { "type": "string" }, "applicable_to": { "type": "array", "items": { "type": "string", "enum": [ "UK", "England", "England regions", "England UTLAs", "England LTLAs", "England MSOAs", "Scotland", "Scotland local authorities", "Northern Ireland", "Northern Ireland local authorities", "Wales local authorities", "All NHS regions", "All NHS trusts", "Unspecified" ] } } }, "required": [ "id", "heading", "date", "expiry", "type", "applicable_to" ] } ] }, "tags": { "type": "array", "items": { "type": "string" } } }, "required": [ "metric_name", "metric", "deprecated", "category", "documentation", "logs", "tags" ] }, "log-banners": { "type": "array", "items": { "type": "object", "properties": { "body": { "type": "string" }, "date": { "type": "string" }, "heading": { "type": "string" }, "high_priority": { "type": "boolean" }, "id": { "type": "string" }, "type": { "type": "string" } }, "required": [ "body", "date", "heading", "high_priority", "id", "type" ] } }, "announcements": { "type": "array", "items": { "type": "object", "properties": { "body": { "type": "string" }, "date": { "type": "string" }, "expire": { "type": "string" }, "has_expired": { "type": "boolean" }, "id": { "type": "string" }, "launch": { "type": "string" } }, "required": [ "body", "date", "expire", "has_expired", "id", "launch" ] } } } } }