From ed5bbf473be461fdae775195bae6bf3f39d4114f Mon Sep 17 00:00:00 2001 From: Iain MacKay Date: Thu, 17 Apr 2025 09:55:38 +0000 Subject: [PATCH] cmsnav-747 Update OAS spec., sandbox examples --- sandbox/Sandbox endpoints - localhost.md | 28 +- sandbox/app.js | 10 + sandbox/handlers.js | 128 +- sandbox/package-lock.json | 2999 +-------------- sandbox/responses/_curl-commands.txt | 36 +- ...itions-acanthosis-nigricans-no-params.json | 771 ++-- .../conditions-achalasia-no-params.json | 360 +- .../conditions-acne-modules-true.json | 628 ++-- .../responses/conditions-acne-no-params.json | 849 +++-- .../conditions-angiography-no-params.json | 384 +- .../conditions-cancer-no-params.json | 528 +-- ...tions-root-category-a-genre-condition.json | 3128 ++++++++-------- ...onditions-root-category-a-genre-guide.json | 34 - .../conditions-root-category-a-genre-hub.json | 293 +- .../responses/conditions-root-category-a.json | 3289 +++++++++-------- .../responses/conditions-root-category-b.json | 3028 +++++++-------- .../responses/conditions-root-category-z.json | 94 +- .../responses/conditions-root-no-params.json | 739 +++- sandbox/responses/conditions-root-page-1.json | 740 +++- sandbox/responses/conditions-root-page-2.json | 760 +++- .../responses/conditions-root-page-29.json | 106 + .../responses/conditions-root-page-70.json | 175 - .../responses/conditions-zika-no-params.json | 845 +++-- .../responses/symptoms-root-category-a.json | 143 + .../responses/symptoms-root-category-b.json | 465 +++ .../responses/symptoms-root-no-params.json | 831 +++++ sandbox/responses/symptoms-root-page-1.json | 831 +++++ sandbox/responses/symptoms-root-page-6.json | 257 ++ .../tests-and-treatments-root-category-a.json | 302 ++ .../tests-and-treatments-root-category-b.json | 383 ++ .../tests-and-treatments-root-no-params.json | 805 ++++ .../tests-and-treatments-root-page-1.json | 805 ++++ .../tests-and-treatments-root-page-7.json | 576 +++ .../examples/ConditionsHealthAToZ.json | 1425 +++---- .../components/examples/SymptomsAToZ.json | 832 +++++ .../examples/TestsAndTreatmentsAToZ.json | 806 ++++ specification/nhs-website-content-api.yaml | 134 +- 37 files changed, 17565 insertions(+), 10982 deletions(-) delete mode 100644 sandbox/responses/conditions-root-category-a-genre-guide.json create mode 100644 sandbox/responses/conditions-root-page-29.json delete mode 100644 sandbox/responses/conditions-root-page-70.json create mode 100644 sandbox/responses/symptoms-root-category-a.json create mode 100644 sandbox/responses/symptoms-root-category-b.json create mode 100644 sandbox/responses/symptoms-root-no-params.json create mode 100644 sandbox/responses/symptoms-root-page-1.json create mode 100644 sandbox/responses/symptoms-root-page-6.json create mode 100644 sandbox/responses/tests-and-treatments-root-category-a.json create mode 100644 sandbox/responses/tests-and-treatments-root-category-b.json create mode 100644 sandbox/responses/tests-and-treatments-root-no-params.json create mode 100644 sandbox/responses/tests-and-treatments-root-page-1.json create mode 100644 sandbox/responses/tests-and-treatments-root-page-7.json create mode 100644 specification/components/examples/SymptomsAToZ.json create mode 100644 specification/components/examples/TestsAndTreatmentsAToZ.json diff --git a/sandbox/Sandbox endpoints - localhost.md b/sandbox/Sandbox endpoints - localhost.md index 9a92e8a..7aacf45 100644 --- a/sandbox/Sandbox endpoints - localhost.md +++ b/sandbox/Sandbox endpoints - localhost.md @@ -21,8 +21,6 @@ [Conditions Root - Category: A & Genre: Condition](http://localhost:9000/conditions/?category=a&genre=condition) -[Conditions Root - Category: A & Genre: Guide](http://localhost:9000/conditions/?category=a&genre=guide) - [Conditions Root - Category: A & Genre: Hub](http://localhost:9000/conditions/?category=a&genre=hub) [Conditions Root - Category: B](http://localhost:9000/conditions/?category=b) @@ -33,7 +31,7 @@ [Conditions Root - Page: 2](http://localhost:9000/conditions/?page=2) -[Conditions Root - Page: 70](http://localhost:9000/conditions/?page=70) +[Conditions Root - Page: 29](http://localhost:9000/conditions/?page=29) [Conditions Wildcard - Modules: false](http://localhost:9000/conditions/*?modules=false) @@ -146,3 +144,27 @@ [Periods](http://localhost:9000/womens-health/periods/) [Anaemia](http://localhost:9000/womens-health/anaemia/) + +## Symptoms + +[Symptoms Root](http://localhost:9000/symptoms/) + +[Symptoms Root - Category: A](http://localhost:9000/symptoms/?category=a) + +[Symptoms Root - Category: B](http://localhost:9000/symptoms/?category=b) + +[Symptoms Root - Page: 1](http://localhost:9000/symptoms/?page=1) + +[Symptoms Root - Page: 6](http://localhost:9000/symptoms/?page=6) + +## Tests and treatments + +[Tests and treatments Root](http://localhost:9000/tests-and-treatments/) + +[Tests and treatments - Category: A](http://localhost:9000/tests-and-treatments/?category=a) + +[Tests and treatments - Category: B](http://localhost:9000/tests-and-treatments/?category=b) + +[Tests and treatments - Page: 1](http://localhost:9000/tests-and-treatments/?page=1) + +[Tests and treatments - Page: 7](http://localhost:9000/tests-and-treatments/?page=7) diff --git a/sandbox/app.js b/sandbox/app.js index d3b4f72..5735bcf 100644 --- a/sandbox/app.js +++ b/sandbox/app.js @@ -215,6 +215,16 @@ app.all('/womens-health/', handlers.womensHealthRoot) app.all('/womens-health/periods/', handlers.womensHealthPeriods) app.all('/womens-health/anaemia/', handlers.womensHealthAnaemia) +// ****************************************************************** +// ** Symptoms +// ****************************************************************** +app.all('/symptoms/', handlers.symptomsRoot) + +// ****************************************************************** +// ** Tests and treatments +// ****************************************************************** +app.all('/tests-and-treatments/', handlers.testsAndTreatmentsRoot) + app.use((req, res, next) => { res.status(404).json(errorResourceNotFoundResponse) }) diff --git a/sandbox/handlers.js b/sandbox/handlers.js index 0d001fa..574ff84 100644 --- a/sandbox/handlers.js +++ b/sandbox/handlers.js @@ -19,14 +19,13 @@ const conditionsAcneModulesTrueResponse = require('./responses/conditions-acne-m const conditionsAngiographyResponse = require('./responses/conditions-angiography-no-params.json') const conditionsCancerResponse = require('./responses/conditions-cancer-no-params.json') const conditionsRootCategoryAGenreConditionResponse = require('./responses/conditions-root-category-a-genre-condition.json') -const conditionsRootCategoryAGenreGuideResponse = require('./responses/conditions-root-category-a-genre-guide.json') const conditionsRootCategoryAGenreHubResponse = require('./responses/conditions-root-category-a-genre-hub.json') const conditionsRootCategoryAResponse = require('./responses/conditions-root-category-a.json') const conditionsRootCategoryBResponse = require('./responses/conditions-root-category-b.json') const conditionsRootCategoryZResponse = require('./responses/conditions-root-category-z.json') const conditionsRootPage1Response = require('./responses/conditions-root-page-1.json') const conditionsRootPage2Response = require('./responses/conditions-root-page-2.json') -const conditionsRootPage70Response = require('./responses/conditions-root-page-70.json') +const conditionsRootPage29Response = require('./responses/conditions-root-page-29.json') const conditionsWildcardResponseNoParams = require('./responses/conditions-acne-no-params.json') const conditionsWildcardModulesTrueResponse = require('./responses/conditions-acne-modules-true.json') const conditionsZikaResponse = require('./responses/conditions-zika-no-params.json') @@ -86,6 +85,20 @@ const womensHealthRootResponse = require('./responses/womens-health-root-no-para const womensHealthPeriodsResponse = require('./responses/womens-health-periods-no-params.json') const womensHealthAnaemiaResponse = require('./responses/womens-health-anaemia-no-params.json') +// Symptoms - Responses +const symptomsRootNoParamsResponse = require('./responses/symptoms-root-no-params.json') +const symptomsRootCategoryAResponse = require('./responses/symptoms-root-category-a.json') +const symptomsRootCategoryBResponse = require('./responses/symptoms-root-category-b.json') +const symptomsRootPage1Response = require('./responses/symptoms-root-page-1.json') +const symptomsRootPage6Response = require('./responses/symptoms-root-page-6.json') + +// Tests and treatments - Responses +const testsAndTreatmentsRootNoParamsResponse = require('./responses/tests-and-treatments-root-no-params.json') +const testsAndTreatmentsRootCategoryAResponse = require('./responses/tests-and-treatments-root-category-a.json') +const testsAndTreatmentsRootCategoryBResponse = require('./responses/tests-and-treatments-root-category-b.json') +const testsAndTreatmentsRootPage1Response = require('./responses/tests-and-treatments-root-page-1.json') +const testsAndTreatmentsRootPage7Response = require('./responses/tests-and-treatments-root-page-7.json') + // ****************************************************************** // ** Root page // ****************************************************************** @@ -173,9 +186,6 @@ async function conditionsRoot(req, res, next) { if (req.query.category.toLowerCase() === 'a' && req.query.genre.toLowerCase() === 'condition') { // http://localhost:9000/conditions/?category=a&genre=condition responseJson = conditionsRootCategoryAGenreConditionResponse - } else if (req.query.category.toLowerCase() === 'a' && req.query.genre.toLowerCase() === 'guide') { - // http://localhost:9000/conditions/?category=a&genre=guide - responseJson = conditionsRootCategoryAGenreGuideResponse } else if (req.query.category.toLowerCase() === 'a' && req.query.genre.toLowerCase() === 'hub') { // http://localhost:9000/conditions/?category=a&genre=hub responseJson = conditionsRootCategoryAGenreHubResponse @@ -202,9 +212,9 @@ async function conditionsRoot(req, res, next) { } else if (req.query.page === '2') { // http://localhost:9000/conditions/?page=2 responseJson = conditionsRootPage2Response - } else if (req.query.page === '70') { - // http://localhost:9000/conditions/?page=70 - responseJson = conditionsRootPage70Response + } else if (req.query.page === '29') { + // http://localhost:9000/conditions/?page=29 + responseJson = conditionsRootPage29Response } else { responseJson = errorSandboxResponseNotFound } @@ -1108,6 +1118,106 @@ async function womensHealthAnaemia(req, res, next) { next() } +// ****************************************************************** +// ** Symptoms pages +// ****************************************************************** + +// Live website URL +// https://www.nhs.uk/symptoms/ +// This sandbox on localhost +// http://localhost:9000/symptoms/ +// API on Azure API Management +// https://api.nhs.uk/symptoms/ +// Wagtail (Python) Application (no auth key required) +// https://www.nhs.uk/content-api/symptoms/ +// Apigee Sandbox environment (no auth key required) +// https://sandbox.api.service.nhs.uk/nhs-website-content/symptoms/ +// Apigee Integration environment ('apikey' required in Header) +// https://int.api.service.nhs.uk/nhs-website-content/symptoms/ +// Apigee Production environment ('apikey' required in Header) +// https://api.service.nhs.uk/nhs-website-content/symptoms/ +async function symptomsRoot(req, res, next) { + let responseJson + if (req.query.category) { + if (req.query.category.toLowerCase() === 'a') { + // http://localhost:9000/symptoms/?category=a + responseJson = symptomsRootCategoryAResponse + } else if (req.query.category.toLowerCase() === 'b') { + // http://localhost:9000/symptoms/?category=b + responseJson = symptomsRootCategoryBResponse + } else { + responseJson = errorSandboxResponseNotFound + } + } else if (req.query.page) { + if (req.query.page === '1') { + // http://localhost:9000/symptoms/?page=1 + responseJson = symptomsRootPage1Response + } else if (req.query.page === '6') { + // http://localhost:9000/symptoms/?page=6 + responseJson = symptomsRootPage6Response + } else { + responseJson = errorSandboxResponseNotFound + } + } else { + // http://localhost:9000/symptoms/ + responseJson = symptomsRootNoParamsResponse + } + res.status(200).json(responseJson) + + res.end() + next() +} + +// ****************************************************************** +// ** Tests and treatment pages +// ****************************************************************** + +// Live website URL +// https://www.nhs.uk/tests-and-treatments/ +// This sandbox on localhost +// http://localhost:9000/tests-and-treatments/ +// API on Azure API Management +// https://api.nhs.uk/tests-and-treatments/ +// Wagtail (Python) Application (no auth key required) +// https://www.nhs.uk/content-api/tests-and-treatments/ +// Apigee Sandbox environment (no auth key required) +// https://sandbox.api.service.nhs.uk/nhs-website-content/tests-and-treatments/ +// Apigee Integration environment ('apikey' required in Header) +// https://int.api.service.nhs.uk/nhs-website-content/tests-and-treatments/ +// Apigee Production environment ('apikey' required in Header) +// https://api.service.nhs.uk/nhs-website-content/tests-and-treatments/ +async function testsAndTreatmentsRoot(req, res, next) { + let responseJson + if (req.query.category) { + if (req.query.category.toLowerCase() === 'a') { + // http://localhost:9000/tests-and-treatments/?category=a + responseJson = testsAndTreatmentsRootCategoryAResponse + } else if (req.query.category.toLowerCase() === 'b') { + // http://localhost:9000/tests-and-treatments/?category=b + responseJson = testsAndTreatmentsRootCategoryBResponse + } else { + responseJson = errorSandboxResponseNotFound + } + } else if (req.query.page) { + if (req.query.page === '1') { + // http://localhost:9000/tests-and-treatments/?page=1 + responseJson = testsAndTreatmentsRootPage1Response + } else if (req.query.page === '7') { + // http://localhost:9000/tests-and-treatments/?page=7 + responseJson = testsAndTreatmentsRootPage7Response + } else { + responseJson = errorSandboxResponseNotFound + } + } else { + // http://localhost:9000/tests-and-treatments/ + responseJson = testsAndTreatmentsRootNoParamsResponse + } + res.status(200).json(responseJson) + + res.end() + next() +} + // ****************************************************************** // ** Status // ****************************************************************** @@ -1167,4 +1277,6 @@ module.exports = { womensHealthAnaemia, womensHealthPeriods, womensHealthRoot, + symptomsRoot, + testsAndTreatmentsRoot, } diff --git a/sandbox/package-lock.json b/sandbox/package-lock.json index c0ec640..d294e90 100644 --- a/sandbox/package-lock.json +++ b/sandbox/package-lock.json @@ -1,2971 +1,8 @@ { "name": "nhs-website-content-api", "version": "1.0.0", - "lockfileVersion": 2, + "lockfileVersion": 1, "requires": true, - "packages": { - "": { - "name": "nhs-website-content-api", - "version": "1.0.0", - "license": "Unlicense", - "dependencies": { - "express": "^5.0.0-alpha.8", - "loglevel": "^1.7.1", - "uuid": "^8.3.2" - }, - "devDependencies": { - "chai": "^4 .2.0", - "mocha": "<7.0.0", - "mocha-junit-reporter": "^1.23.3", - "mocha-multi": "^1.1.3", - "nodemon": "^2.0.7", - "supertest": "^4.0.2" - } - }, - "node_modules/abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", - "dev": true - }, - "node_modules/accepts": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", - "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", - "dependencies": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/ansi-colors": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.3.tgz", - "integrity": "sha512-LEHHyuhlPY3TmuUYMh2oz89lTShfvgbmzaBcxve9t/9Wuy7Dwf4yoAKcND7KFT1HAQfqZ12qtc+DUrBMeKF9nw==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/ansi-regex": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz", - "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "dev": true, - "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "dev": true, - "dependencies": { - "sprintf-js": "~1.0.2" - } - }, - "node_modules/array-buffer-byte-length": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", - "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "is-array-buffer": "^3.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array-flatten": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-3.0.0.tgz", - "integrity": "sha512-zPMVc3ZYlGLNk4mpK1NzP2wg0ml9t7fUgDsayR5Y5rSzxQilzR9FGu/EH2jQOcKSAeAfWeylyW8juy3OkWRvNA==" - }, - "node_modules/array.prototype.reduce": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.6.tgz", - "integrity": "sha512-UW+Mz8LG/sPSU8jRDCjVr6J/ZKAGpHfwrZ6kWTG5qCxIEiXdVshqGnu5vEZA8S1y6X4aCSbQZ0/EEsfvEvBiSg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-array-method-boxes-properly": "^1.0.0", - "is-string": "^1.0.7" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/arraybuffer.prototype.slice": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz", - "integrity": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==", - "dev": true, - "dependencies": { - "array-buffer-byte-length": "^1.0.0", - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1", - "is-array-buffer": "^3.0.2", - "is-shared-array-buffer": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/assertion-error": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz", - "integrity": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==", - "dev": true, - "engines": { - "node": "*" - } - }, - "node_modules/asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", - "dev": true - }, - "node_modules/available-typed-arrays": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", - "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true - }, - "node_modules/binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/body-parser": { - "version": "2.0.0-beta.1", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.0.0-beta.1.tgz", - "integrity": "sha512-I1v2bt2OdYqtmk8nEFZuEf+9Opb30DphYwTPDbgg/OorSAoJOuTpWyDrZaSWQw7FdoevbBRCP2+9z/halXSWcA==", - "dependencies": { - "bytes": "3.1.1", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "~1.1.2", - "http-errors": "1.8.1", - "iconv-lite": "0.4.24", - "on-finished": "~2.3.0", - "qs": "6.9.6", - "raw-body": "2.4.2", - "type-is": "~1.6.18" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/body-parser/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dev": true, - "dependencies": { - "fill-range": "^7.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/browser-stdout": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz", - "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==", - "dev": true - }, - "node_modules/bytes": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.1.tgz", - "integrity": "sha512-dWe4nWO/ruEOY7HkUJ5gFt1DCFV9zPRoJr8pV0/ASQermOZjtq8jMjOprC0Kd10GLN+l7xaUPvxzJFWtxGu8Fg==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/call-bind": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz", - "integrity": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==", - "dev": true, - "dependencies": { - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.1", - "set-function-length": "^1.1.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/chai": { - "version": "4.3.10", - "resolved": "https://registry.npmjs.org/chai/-/chai-4.3.10.tgz", - "integrity": "sha512-0UXG04VuVbruMUYbJ6JctvH0YnC/4q3/AkT18q4NaITo91CUm0liMS9VqzT9vZhVQ/1eqPanMWjBM+Juhfb/9g==", - "dev": true, - "dependencies": { - "assertion-error": "^1.1.0", - "check-error": "^1.0.3", - "deep-eql": "^4.1.3", - "get-func-name": "^2.0.2", - "loupe": "^2.3.6", - "pathval": "^1.1.1", - "type-detect": "^4.0.8" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/chalk/node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/charenc": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz", - "integrity": "sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==", - "dev": true, - "engines": { - "node": "*" - } - }, - "node_modules/check-error": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/check-error/-/check-error-1.0.3.tgz", - "integrity": "sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==", - "dev": true, - "dependencies": { - "get-func-name": "^2.0.2" - }, - "engines": { - "node": "*" - } - }, - "node_modules/chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", - "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ], - "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - }, - "engines": { - "node": ">= 8.10.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/cliui": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", - "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", - "dev": true, - "dependencies": { - "string-width": "^3.1.0", - "strip-ansi": "^5.2.0", - "wrap-ansi": "^5.1.0" - } - }, - "node_modules/cliui/node_modules/ansi-regex": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", - "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/cliui/node_modules/string-width": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", - "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", - "dev": true, - "dependencies": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/cliui/node_modules/strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "dev": true, - "dependencies": { - "ansi-regex": "^4.1.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dev": true, - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "dev": true - }, - "node_modules/combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "dev": true, - "dependencies": { - "delayed-stream": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/component-emitter": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", - "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", - "dev": true - }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true - }, - "node_modules/content-disposition": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", - "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", - "dependencies": { - "safe-buffer": "5.2.1" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/content-type": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", - "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/cookie": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.1.tgz", - "integrity": "sha512-ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" - }, - "node_modules/cookiejar": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.4.tgz", - "integrity": "sha512-LDx6oHrK+PhzLKJU9j5S7/Y3jM/mUHvD/DeI1WQmJn652iPC5Y4TBzC9l+5OMOXlyTTA+SmVUPm0HQUwpD5Jqw==", - "dev": true - }, - "node_modules/core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", - "dev": true - }, - "node_modules/crypt": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz", - "integrity": "sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==", - "dev": true, - "engines": { - "node": "*" - } - }, - "node_modules/debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/deep-eql": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-4.1.3.tgz", - "integrity": "sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==", - "dev": true, - "dependencies": { - "type-detect": "^4.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/define-data-property": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz", - "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==", - "dev": true, - "dependencies": { - "get-intrinsic": "^1.2.1", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/define-properties": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", - "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", - "dev": true, - "dependencies": { - "define-data-property": "^1.0.1", - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", - "dev": true, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/destroy": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", - "integrity": "sha512-3NdhDuEXnfun/z7x9GOElY49LoqVHoGScmOKwmxhsS8N5Y+Z8KyPPDnaSzqWgYt/ji4mqwfTS34Htrk0zPIXVg==" - }, - "node_modules/diff": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz", - "integrity": "sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==", - "dev": true, - "engines": { - "node": ">=0.3.1" - } - }, - "node_modules/ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" - }, - "node_modules/emoji-regex": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", - "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", - "dev": true - }, - "node_modules/encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/es-abstract": { - "version": "1.22.2", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.2.tgz", - "integrity": "sha512-YoxfFcDmhjOgWPWsV13+2RNjq1F6UQnfs+8TftwNqtzlmFzEXvlUwdrNrYeaizfjQzRMxkZ6ElWMOJIFKdVqwA==", - "dev": true, - "dependencies": { - "array-buffer-byte-length": "^1.0.0", - "arraybuffer.prototype.slice": "^1.0.2", - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "es-set-tostringtag": "^2.0.1", - "es-to-primitive": "^1.2.1", - "function.prototype.name": "^1.1.6", - "get-intrinsic": "^1.2.1", - "get-symbol-description": "^1.0.0", - "globalthis": "^1.0.3", - "gopd": "^1.0.1", - "has": "^1.0.3", - "has-property-descriptors": "^1.0.0", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.5", - "is-array-buffer": "^3.0.2", - "is-callable": "^1.2.7", - "is-negative-zero": "^2.0.2", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "is-string": "^1.0.7", - "is-typed-array": "^1.1.12", - "is-weakref": "^1.0.2", - "object-inspect": "^1.12.3", - "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.5.1", - "safe-array-concat": "^1.0.1", - "safe-regex-test": "^1.0.0", - "string.prototype.trim": "^1.2.8", - "string.prototype.trimend": "^1.0.7", - "string.prototype.trimstart": "^1.0.7", - "typed-array-buffer": "^1.0.0", - "typed-array-byte-length": "^1.0.0", - "typed-array-byte-offset": "^1.0.0", - "typed-array-length": "^1.0.4", - "unbox-primitive": "^1.0.2", - "which-typed-array": "^1.1.11" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/es-abstract/node_modules/object.assign": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", - "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/es-array-method-boxes-properly": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", - "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==", - "dev": true - }, - "node_modules/es-set-tostringtag": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", - "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", - "dev": true, - "dependencies": { - "get-intrinsic": "^1.1.3", - "has": "^1.0.3", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", - "dev": true, - "dependencies": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" - }, - "node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "dev": true, - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/express": { - "version": "5.0.0-beta.1", - "resolved": "https://registry.npmjs.org/express/-/express-5.0.0-beta.1.tgz", - "integrity": "sha512-KPtBrlZoQu2Ps0Ce/Imqtq73AB0KBJ8Gx59yZQ3pmDJU2/LhcoZETo03oSgtTQufbcLXt/WBITk/jMjl/WMyrQ==", - "dependencies": { - "accepts": "~1.3.7", - "array-flatten": "3.0.0", - "body-parser": "2.0.0-beta.1", - "content-disposition": "0.5.4", - "content-type": "~1.0.4", - "cookie": "0.4.1", - "cookie-signature": "1.0.6", - "debug": "3.1.0", - "depd": "~1.1.2", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "~1.1.2", - "fresh": "0.5.2", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "mime-types": "~2.1.34", - "on-finished": "~2.3.0", - "parseurl": "~1.3.3", - "path-is-absolute": "1.0.1", - "proxy-addr": "~2.0.7", - "qs": "6.9.6", - "range-parser": "~1.2.1", - "router": "2.0.0-beta.1", - "safe-buffer": "5.2.1", - "send": "1.0.0-beta.1", - "serve-static": "2.0.0-beta.1", - "setprototypeof": "1.2.0", - "statuses": "~1.5.0", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" - }, - "engines": { - "node": ">= 4" - } - }, - "node_modules/extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", - "dev": true - }, - "node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dev": true, - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/finalhandler": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", - "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", - "dependencies": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "~2.3.0", - "parseurl": "~1.3.3", - "statuses": "~1.5.0", - "unpipe": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/finalhandler/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "dev": true, - "dependencies": { - "locate-path": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/flat": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/flat/-/flat-4.1.1.tgz", - "integrity": "sha512-FmTtBsHskrU6FJ2VxCnsDb84wu9zhmO3cUX2kGFb5tuwhfXxGciiT0oRY+cck35QmG+NmGh5eLz6lLCpWTqwpA==", - "dev": true, - "dependencies": { - "is-buffer": "~2.0.3" - }, - "bin": { - "flat": "cli.js" - } - }, - "node_modules/flat/node_modules/is-buffer": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", - "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "engines": { - "node": ">=4" - } - }, - "node_modules/for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", - "dev": true, - "dependencies": { - "is-callable": "^1.1.3" - } - }, - "node_modules/form-data": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.5.1.tgz", - "integrity": "sha512-m21N3WOmEEURgk6B9GLOE4RuWOFf28Lhh9qGYeNlGq4VDXUlJy2th2slBNU8Gp8EzloYZOibZJ7t5ecIrFSjVA==", - "dev": true, - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 0.12" - } - }, - "node_modules/formidable": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/formidable/-/formidable-1.2.6.tgz", - "integrity": "sha512-KcpbcpuLNOwrEjnbpMC0gS+X8ciDoZE1kkqzat4a8vrprf+s9pKNQ/QIwWfbfs4ltgmFl3MD177SNTkve3BwGQ==", - "deprecated": "Please upgrade to latest, formidable@v2 or formidable@v3! Check these notes: https://bit.ly/2ZEqIau", - "dev": true, - "funding": { - "url": "https://ko-fi.com/tunnckoCore/commissions" - } - }, - "node_modules/forwarded": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", - "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - "dev": true - }, - "node_modules/fsevents": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", - "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", - "dev": true, - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" - } - }, - "node_modules/function-bind": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/function.prototype.name": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", - "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "functions-have-names": "^1.2.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - "dev": true, - "engines": { - "node": "6.* || 8.* || >= 10.*" - } - }, - "node_modules/get-func-name": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.2.tgz", - "integrity": "sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==", - "dev": true, - "engines": { - "node": "*" - } - }, - "node_modules/get-intrinsic": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", - "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", - "dev": true, - "dependencies": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-symbol-description": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", - "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/glob": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz", - "integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - } - }, - "node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/globalthis": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", - "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", - "dev": true, - "dependencies": { - "define-properties": "^1.1.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "dev": true, - "dependencies": { - "get-intrinsic": "^1.1.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/growl": { - "version": "1.10.5", - "resolved": "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz", - "integrity": "sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==", - "dev": true, - "engines": { - "node": ">=4.x" - } - }, - "node_modules/has": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.4.tgz", - "integrity": "sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==", - "dev": true, - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/has-bigints": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/has-property-descriptors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", - "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", - "dev": true, - "dependencies": { - "get-intrinsic": "^1.1.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", - "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", - "dev": true, - "dependencies": { - "has-symbols": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/he": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", - "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", - "dev": true, - "bin": { - "he": "bin/he" - } - }, - "node_modules/http-errors": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz", - "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==", - "dependencies": { - "depd": "~1.1.2", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": ">= 1.5.0 < 2", - "toidentifier": "1.0.1" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ignore-by-default": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", - "integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==", - "dev": true - }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "dev": true, - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "node_modules/internal-slot": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", - "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", - "dev": true, - "dependencies": { - "get-intrinsic": "^1.2.0", - "has": "^1.0.3", - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/ipaddr.js": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/is-array-buffer": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", - "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.0", - "is-typed-array": "^1.1.10" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", - "dev": true, - "dependencies": { - "has-bigints": "^1.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dev": true, - "dependencies": { - "binary-extensions": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-buffer": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", - "dev": true - }, - "node_modules/is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", - "dev": true, - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dev": true, - "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-negative-zero": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", - "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true, - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/is-number-object": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", - "dev": true, - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-shared-array-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", - "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", - "dev": true, - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", - "dev": true, - "dependencies": { - "has-symbols": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-typed-array": { - "version": "1.1.12", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz", - "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", - "dev": true, - "dependencies": { - "which-typed-array": "^1.1.11" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-weakref": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", - "dev": true - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true - }, - "node_modules/js-yaml": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz", - "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==", - "dev": true, - "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", - "dev": true, - "dependencies": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true - }, - "node_modules/lodash.once": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz", - "integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==", - "dev": true - }, - "node_modules/log-symbols": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz", - "integrity": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==", - "dev": true, - "dependencies": { - "chalk": "^2.0.1" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/loglevel": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.8.1.tgz", - "integrity": "sha512-tCRIJM51SHjAayKwC+QAg8hT8vg6z7GSgLJKGvzuPb1Wc+hLzqtuVLxp6/HzSPOozuK+8ErAhy7U/sVzw8Dgfg==", - "engines": { - "node": ">= 0.6.0" - }, - "funding": { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/loglevel" - } - }, - "node_modules/loupe": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/loupe/-/loupe-2.3.7.tgz", - "integrity": "sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==", - "dev": true, - "dependencies": { - "get-func-name": "^2.0.1" - } - }, - "node_modules/md5": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/md5/-/md5-2.3.0.tgz", - "integrity": "sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==", - "dev": true, - "dependencies": { - "charenc": "0.0.2", - "crypt": "0.0.2", - "is-buffer": "~1.1.6" - } - }, - "node_modules/media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/merge-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" - }, - "node_modules/methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "dev": true, - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "dependencies": { - "mime-db": "1.52.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/mkdirp": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.4.tgz", - "integrity": "sha512-iG9AK/dJLtJ0XNgTuDbSyNS3zECqDlAhnQW4CsNxBG3LQJBbHmRX1egw39DmtOdCAqY+dKXV+sgPgilNWUKMVw==", - "deprecated": "Legacy versions of mkdirp are no longer supported. Please update to mkdirp 1.x. (Note that the API surface has changed to use Promises in 1.x.)", - "dev": true, - "dependencies": { - "minimist": "^1.2.5" - }, - "bin": { - "mkdirp": "bin/cmd.js" - } - }, - "node_modules/mocha": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/mocha/-/mocha-6.2.3.tgz", - "integrity": "sha512-0R/3FvjIGH3eEuG17ccFPk117XL2rWxatr81a57D+r/x2uTYZRbdZ4oVidEUMh2W2TJDa7MdAb12Lm2/qrKajg==", - "dev": true, - "dependencies": { - "ansi-colors": "3.2.3", - "browser-stdout": "1.3.1", - "debug": "3.2.6", - "diff": "3.5.0", - "escape-string-regexp": "1.0.5", - "find-up": "3.0.0", - "glob": "7.1.3", - "growl": "1.10.5", - "he": "1.2.0", - "js-yaml": "3.13.1", - "log-symbols": "2.2.0", - "minimatch": "3.0.4", - "mkdirp": "0.5.4", - "ms": "2.1.1", - "node-environment-flags": "1.0.5", - "object.assign": "4.1.0", - "strip-json-comments": "2.0.1", - "supports-color": "6.0.0", - "which": "1.3.1", - "wide-align": "1.1.3", - "yargs": "13.3.2", - "yargs-parser": "13.1.2", - "yargs-unparser": "1.6.0" - }, - "bin": { - "_mocha": "bin/_mocha", - "mocha": "bin/mocha" - }, - "engines": { - "node": ">= 6.0.0" - } - }, - "node_modules/mocha-junit-reporter": { - "version": "1.23.3", - "resolved": "https://registry.npmjs.org/mocha-junit-reporter/-/mocha-junit-reporter-1.23.3.tgz", - "integrity": "sha512-ed8LqbRj1RxZfjt/oC9t12sfrWsjZ3gNnbhV1nuj9R/Jb5/P3Xb4duv2eCfCDMYH+fEu0mqca7m4wsiVjsxsvA==", - "dev": true, - "dependencies": { - "debug": "^2.2.0", - "md5": "^2.1.0", - "mkdirp": "~0.5.1", - "strip-ansi": "^4.0.0", - "xml": "^1.0.0" - }, - "peerDependencies": { - "mocha": ">=2.2.5" - } - }, - "node_modules/mocha-junit-reporter/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/mocha-multi": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/mocha-multi/-/mocha-multi-1.1.7.tgz", - "integrity": "sha512-SXZRgHy0XiRTASyOp0p6fjOkdj+R62L6cqutnYyQOvIjNznJuUwzykxctypeRiOwPd+gfn4yt3NRulMQyI8Tzg==", - "dev": true, - "dependencies": { - "debug": "^4.1.1", - "is-string": "^1.0.4", - "lodash.once": "^4.1.1", - "mkdirp": "^1.0.4", - "object-assign": "^4.1.1" - }, - "engines": { - "node": ">=6.0.0" - }, - "peerDependencies": { - "mocha": ">=2.2.0 <7 || >=9" - } - }, - "node_modules/mocha-multi/node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dev": true, - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/mocha-multi/node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true, - "bin": { - "mkdirp": "bin/cmd.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/mocha-multi/node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "node_modules/mocha/node_modules/debug": { - "version": "3.2.6", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", - "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", - "deprecated": "Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)", - "dev": true, - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/mocha/node_modules/ms": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", - "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", - "dev": true - }, - "node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "node_modules/negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/node-environment-flags": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/node-environment-flags/-/node-environment-flags-1.0.5.tgz", - "integrity": "sha512-VNYPRfGfmZLx0Ye20jWzHUjyTW/c+6Wq+iLhDzUI4XmhrDd9l/FozXV3F2xOaXjvp0co0+v1YSR3CMP6g+VvLQ==", - "dev": true, - "dependencies": { - "object.getownpropertydescriptors": "^2.0.3", - "semver": "^5.7.0" - } - }, - "node_modules/nodemon": { - "version": "2.0.22", - "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-2.0.22.tgz", - "integrity": "sha512-B8YqaKMmyuCO7BowF1Z1/mkPqLk6cs/l63Ojtd6otKjMx47Dq1utxfRxcavH1I7VSaL8n5BUaoutadnsX3AAVQ==", - "dev": true, - "dependencies": { - "chokidar": "^3.5.2", - "debug": "^3.2.7", - "ignore-by-default": "^1.0.1", - "minimatch": "^3.1.2", - "pstree.remy": "^1.1.8", - "semver": "^5.7.1", - "simple-update-notifier": "^1.0.7", - "supports-color": "^5.5.0", - "touch": "^3.1.0", - "undefsafe": "^2.0.5" - }, - "bin": { - "nodemon": "bin/nodemon.js" - }, - "engines": { - "node": ">=8.10.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/nodemon" - } - }, - "node_modules/nodemon/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/nodemon/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/nodemon/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - }, - "node_modules/nodemon/node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/nopt": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz", - "integrity": "sha512-NWmpvLSqUrgrAC9HCuxEvb+PSloHpqVu+FqcO4eeF2h5qYRhA7ev6KvelyQAKtegUbC6RypJnlEOhd8vloNKYg==", - "dev": true, - "dependencies": { - "abbrev": "1" - }, - "bin": { - "nopt": "bin/nopt.js" - }, - "engines": { - "node": "*" - } - }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-inspect": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", - "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "dev": true, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object.assign": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz", - "integrity": "sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==", - "dev": true, - "dependencies": { - "define-properties": "^1.1.2", - "function-bind": "^1.1.1", - "has-symbols": "^1.0.0", - "object-keys": "^1.0.11" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object.getownpropertydescriptors": { - "version": "2.1.7", - "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.7.tgz", - "integrity": "sha512-PrJz0C2xJ58FNn11XV2lr4Jt5Gzl94qpy9Lu0JlfEj14z88sqbSBJCBEzdlNUCzY2gburhbrwOZ5BHCmuNUy0g==", - "dev": true, - "dependencies": { - "array.prototype.reduce": "^1.0.6", - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "safe-array-concat": "^1.0.0" - }, - "engines": { - "node": ">= 0.8" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/on-finished": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", - "integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==", - "dependencies": { - "ee-first": "1.1.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dev": true, - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dev": true, - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", - "dev": true, - "dependencies": { - "p-limit": "^2.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-to-regexp": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-3.2.0.tgz", - "integrity": "sha512-jczvQbCUS7XmS7o+y1aEO9OBVFeZBQ1MDSEqmO7xSoPgOPoowY/SxLpZ6Vh97/8qHZOteiCKb7gkG9gA2ZUxJA==" - }, - "node_modules/pathval": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/pathval/-/pathval-1.1.1.tgz", - "integrity": "sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==", - "dev": true, - "engines": { - "node": "*" - } - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true, - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", - "dev": true - }, - "node_modules/proxy-addr": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", - "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", - "dependencies": { - "forwarded": "0.2.0", - "ipaddr.js": "1.9.1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/pstree.remy": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz", - "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==", - "dev": true - }, - "node_modules/qs": { - "version": "6.9.6", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.9.6.tgz", - "integrity": "sha512-TIRk4aqYLNoJUbd+g2lEdz5kLWIuTMRagAXxl78Q0RiVjAOugHmeKNGdd3cwo/ktpf9aL9epCfFqWDEKysUlLQ==", - "engines": { - "node": ">=0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/range-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/raw-body": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.2.tgz", - "integrity": "sha512-RPMAFUJP19WIet/99ngh6Iv8fzAbqum4Li7AD6DtGaW2RpMB/11xDoalPiJMTbu6I3hkbMVkATvZrqb9EEqeeQ==", - "dependencies": { - "bytes": "3.1.1", - "http-errors": "1.8.1", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "dev": true, - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/readable-stream/node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", - "dev": true - }, - "node_modules/readable-stream/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "node_modules/readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "dev": true, - "dependencies": { - "picomatch": "^2.2.1" - }, - "engines": { - "node": ">=8.10.0" - } - }, - "node_modules/regexp.prototype.flags": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz", - "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "set-function-name": "^2.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/require-main-filename": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", - "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", - "dev": true - }, - "node_modules/router": { - "version": "2.0.0-beta.1", - "resolved": "https://registry.npmjs.org/router/-/router-2.0.0-beta.1.tgz", - "integrity": "sha512-GLoYgkhAGAiwVda5nt6Qd4+5RAPuQ4WIYLlZ+mxfYICI+22gnIB3eCfmhgV8+uJNPS1/39DOYi/vdrrz0/ouKA==", - "dependencies": { - "array-flatten": "3.0.0", - "methods": "~1.1.2", - "parseurl": "~1.3.3", - "path-to-regexp": "3.2.0", - "setprototypeof": "1.2.0", - "utils-merge": "1.0.1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/safe-array-concat": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.1.tgz", - "integrity": "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1", - "has-symbols": "^1.0.3", - "isarray": "^2.0.5" - }, - "engines": { - "node": ">=0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/safe-regex-test": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", - "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", - "is-regex": "^1.1.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - }, - "node_modules/semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", - "dev": true, - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/send": { - "version": "1.0.0-beta.1", - "resolved": "https://registry.npmjs.org/send/-/send-1.0.0-beta.1.tgz", - "integrity": "sha512-OKTRokcl/oo34O8+6aUpj8Jf2Bjw2D0tZzmX0/RvyfVC9ZOZW+HPAWAlhS817IsRaCnzYX1z++h2kHFr2/KNRg==", - "dependencies": { - "debug": "3.1.0", - "destroy": "~1.0.4", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "1.8.1", - "mime-types": "~2.1.34", - "ms": "2.1.3", - "on-finished": "~2.3.0", - "range-parser": "~1.2.1", - "statuses": "~1.5.0" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/send/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - }, - "node_modules/serve-static": { - "version": "2.0.0-beta.1", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-2.0.0-beta.1.tgz", - "integrity": "sha512-DEJ9on/tQeFO2Omj7ovT02lCp1YgP4Kb8W2lv2o/4keTFAbgc8HtH3yPd47++2wv9lvQeqiA7FHFDe5+8c4XpA==", - "dependencies": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "1.0.0-beta.1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", - "dev": true - }, - "node_modules/set-function-length": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.1.1.tgz", - "integrity": "sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==", - "dev": true, - "dependencies": { - "define-data-property": "^1.1.1", - "get-intrinsic": "^1.2.1", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/set-function-name": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz", - "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==", - "dev": true, - "dependencies": { - "define-data-property": "^1.0.1", - "functions-have-names": "^1.2.3", - "has-property-descriptors": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/setprototypeof": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" - }, - "node_modules/side-channel": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/simple-update-notifier": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-1.1.0.tgz", - "integrity": "sha512-VpsrsJSUcJEseSbMHkrsrAVSdvVS5I96Qo1QAQ4FxQ9wXFcB+pjj7FB7/us9+GcgfW4ziHtYMc1J0PLczb55mg==", - "dev": true, - "dependencies": { - "semver": "~7.0.0" - }, - "engines": { - "node": ">=8.10.0" - } - }, - "node_modules/simple-update-notifier/node_modules/semver": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", - "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", - "dev": true - }, - "node_modules/statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/string_decoder/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "node_modules/string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", - "dev": true, - "dependencies": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/string.prototype.trim": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz", - "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trimend": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz", - "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trimstart": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz", - "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==", - "dev": true, - "dependencies": { - "ansi-regex": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/superagent": { - "version": "3.8.3", - "resolved": "https://registry.npmjs.org/superagent/-/superagent-3.8.3.tgz", - "integrity": "sha512-GLQtLMCoEIK4eDv6OGtkOoSMt3D+oq0y3dsxMuYuDvaNUvuT8eFBuLmfR0iYYzHC1e8hpzC6ZsxbuP6DIalMFA==", - "deprecated": "Please upgrade to v7.0.2+ of superagent. We have fixed numerous issues with streams, form-data, attach(), filesystem errors not bubbling up (ENOENT on attach()), and all tests are now passing. See the releases tab for more information at .", - "dev": true, - "dependencies": { - "component-emitter": "^1.2.0", - "cookiejar": "^2.1.0", - "debug": "^3.1.0", - "extend": "^3.0.0", - "form-data": "^2.3.1", - "formidable": "^1.2.0", - "methods": "^1.1.1", - "mime": "^1.4.1", - "qs": "^6.5.1", - "readable-stream": "^2.3.5" - }, - "engines": { - "node": ">= 4.0" - } - }, - "node_modules/supertest": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/supertest/-/supertest-4.0.2.tgz", - "integrity": "sha512-1BAbvrOZsGA3YTCWqbmh14L0YEq0EGICX/nBnfkfVJn7SrxQV1I3pMYjSzG9y/7ZU2V9dWqyqk2POwxlb09duQ==", - "dev": true, - "dependencies": { - "methods": "^1.1.2", - "superagent": "^3.8.3" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/supports-color": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.0.0.tgz", - "integrity": "sha512-on9Kwidc1IUQo+bQdhi8+Tijpo0e1SS6RoGo2guUwn5vdaxw8RXOF9Vb2ws+ihWOmh4JnCJOvaziZWP1VABaLg==", - "dev": true, - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, - "node_modules/toidentifier": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", - "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", - "engines": { - "node": ">=0.6" - } - }, - "node_modules/touch": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz", - "integrity": "sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==", - "dev": true, - "dependencies": { - "nopt": "~1.0.10" - }, - "bin": { - "nodetouch": "bin/nodetouch.js" - } - }, - "node_modules/type-detect": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", - "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/type-is": { - "version": "1.6.18", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", - "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", - "dependencies": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/typed-array-buffer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz", - "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1", - "is-typed-array": "^1.1.10" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/typed-array-byte-length": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz", - "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "has-proto": "^1.0.1", - "is-typed-array": "^1.1.10" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/typed-array-byte-offset": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz", - "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", - "dev": true, - "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "has-proto": "^1.0.1", - "is-typed-array": "^1.1.10" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/typed-array-length": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", - "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "is-typed-array": "^1.1.9" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/unbox-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", - "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "has-bigints": "^1.0.2", - "has-symbols": "^1.0.3", - "which-boxed-primitive": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/undefsafe": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz", - "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==", - "dev": true - }, - "node_modules/unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", - "dev": true - }, - "node_modules/utils-merge": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/uuid": { - "version": "8.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", - "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", - "bin": { - "uuid": "dist/bin/uuid" - } - }, - "node_modules/vary": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dev": true, - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" - } - }, - "node_modules/which-boxed-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", - "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", - "dev": true, - "dependencies": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-module": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz", - "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==", - "dev": true - }, - "node_modules/which-typed-array": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.13.tgz", - "integrity": "sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==", - "dev": true, - "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.4", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/wide-align": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz", - "integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==", - "dev": true, - "dependencies": { - "string-width": "^1.0.2 || 2" - } - }, - "node_modules/wrap-ansi": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", - "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", - "dev": true, - "dependencies": { - "ansi-styles": "^3.2.0", - "string-width": "^3.0.0", - "strip-ansi": "^5.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/wrap-ansi/node_modules/ansi-regex": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", - "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/wrap-ansi/node_modules/string-width": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", - "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", - "dev": true, - "dependencies": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/wrap-ansi/node_modules/strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "dev": true, - "dependencies": { - "ansi-regex": "^4.1.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "dev": true - }, - "node_modules/xml": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/xml/-/xml-1.0.1.tgz", - "integrity": "sha512-huCv9IH9Tcf95zuYCsQraZtWnJvBtLVE0QHMOs8bWyZAFZNDcYjsPq1nEx8jKA9y+Beo9v+7OBPRisQTjinQMw==", - "dev": true - }, - "node_modules/y18n": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", - "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", - "dev": true - }, - "node_modules/yargs": { - "version": "13.3.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", - "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", - "dev": true, - "dependencies": { - "cliui": "^5.0.0", - "find-up": "^3.0.0", - "get-caller-file": "^2.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", - "string-width": "^3.0.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^13.1.2" - } - }, - "node_modules/yargs-parser": { - "version": "13.1.2", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", - "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", - "dev": true, - "dependencies": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - } - }, - "node_modules/yargs-unparser": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-1.6.0.tgz", - "integrity": "sha512-W9tKgmSn0DpSatfri0nx52Joq5hVXgeLiqR/5G0sZNDoLZFOr/xjBUDcShCOGNsBnEMNo1KAMBkTej1Hm62HTw==", - "dev": true, - "dependencies": { - "flat": "^4.1.0", - "lodash": "^4.17.15", - "yargs": "^13.3.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/yargs/node_modules/ansi-regex": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", - "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/yargs/node_modules/string-width": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", - "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", - "dev": true, - "dependencies": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/yargs/node_modules/strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "dev": true, - "dependencies": { - "ansi-regex": "^4.1.0" - }, - "engines": { - "node": ">=6" - } - } - }, "dependencies": { "abbrev": { "version": "1.1.1", @@ -4787,23 +1824,6 @@ "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==" }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - }, - "dependencies": { - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - } - } - }, "string-width": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", @@ -4847,6 +1867,23 @@ "es-abstract": "^1.22.1" } }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + }, + "dependencies": { + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + } + } + }, "strip-ansi": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", diff --git a/sandbox/responses/_curl-commands.txt b/sandbox/responses/_curl-commands.txt index c5fa318..8bda324 100644 --- a/sandbox/responses/_curl-commands.txt +++ b/sandbox/responses/_curl-commands.txt @@ -20,6 +20,10 @@ curl -X GET 'https://api.service.nhs.uk/nhs-website-content/vaccinations/' -H 'a curl -X GET 'https://api.service.nhs.uk/nhs-website-content/womens-health/' -H 'apikey: Oq5LuCPc5X69KFlIw6P7TVYrrJHSceX8' >> ./responses/womens-health-root-no-params.json +curl -X GET 'https://api.service.nhs.uk/nhs-website-content/symptoms/' -H 'apikey: Oq5LuCPc5X69KFlIw6P7TVYrrJHSceX8' >> ./responses/symptoms-root-no-params.json + +curl -X GET 'https://api.service.nhs.uk/nhs-website-content/tests-and-treatments/' -H 'apikey: Oq5LuCPc5X69KFlIw6P7TVYrrJHSceX8' >> ./responses/tests-and-treatments-root-no-params.json + ***************************************************************************************************************** ** Manifest pages ** @@ -54,8 +58,6 @@ curl -X GET 'https://api.service.nhs.uk/nhs-website-content/conditions/?category curl -X GET 'https://api.service.nhs.uk/nhs-website-content/conditions/?category=a&genre=condition' -H 'apikey: Oq5LuCPc5X69KFlIw6P7TVYrrJHSceX8' >> ./responses/conditions-category-a-genre-condition.json -curl -X GET 'https://api.service.nhs.uk/nhs-website-content/conditions/?category=a&genre=guide' -H 'apikey: Oq5LuCPc5X69KFlIw6P7TVYrrJHSceX8' >> ./responses/conditions-category-a-genre-guide.json - curl -X GET 'https://api.service.nhs.uk/nhs-website-content/conditions/?category=a&genre=hub' -H 'apikey: Oq5LuCPc5X69KFlIw6P7TVYrrJHSceX8' >> ./responses/conditions-category-a-genre-hub.json curl -X GET 'https://api.service.nhs.uk/nhs-website-content/conditions/?category=b' -H 'apikey: Oq5LuCPc5X69KFlIw6P7TVYrrJHSceX8' >> ./responses/conditions-category-b.json @@ -66,7 +68,7 @@ curl -X GET 'https://api.service.nhs.uk/nhs-website-content/conditions/?page=1' curl -X GET 'https://api.service.nhs.uk/nhs-website-content/conditions/?page=2' -H 'apikey: Oq5LuCPc5X69KFlIw6P7TVYrrJHSceX8' >> ./responses/conditions-page-2.json -curl -X GET 'https://api.service.nhs.uk/nhs-website-content/conditions/?page=70' -H 'apikey: Oq5LuCPc5X69KFlIw6P7TVYrrJHSceX8' >> ./responses/conditions-page-70.json +curl -X GET 'https://api.service.nhs.uk/nhs-website-content/conditions/?page=29' -H 'apikey: Oq5LuCPc5X69KFlIw6P7TVYrrJHSceX8' >> ./responses/conditions-page-29.json ***************************************************************************************************************** @@ -157,9 +159,35 @@ curl -X GET 'https://api.service.nhs.uk/nhs-website-content/vaccinations/travel- ***************************************************************************************************************** -** Women's health pages ** +** Women's health pages ** ***************************************************************************************************************** curl -X GET 'https://api.service.nhs.uk/nhs-website-content/womens-health/periods/' -H 'apikey: Oq5LuCPc5X69KFlIw6P7TVYrrJHSceX8' >> ./responses/womens-health-periods-no-params.json curl -X GET 'https://api.service.nhs.uk/nhs-website-content/womens-health/aneamia/' -H 'apikey: Oq5LuCPc5X69KFlIw6P7TVYrrJHSceX8' >> ./responses/womens-health-anaemia-no-params.json + + +***************************************************************************************************************** +** Symptoms pages ** +***************************************************************************************************************** + +curl -X GET 'https://api.service.nhs.uk/nhs-website-content/symptoms/?category=a' -H 'apikey: Oq5LuCPc5X69KFlIw6P7TVYrrJHSceX8' >> ./responses/symptoms-root-category-a.json + +curl -X GET 'https://api.service.nhs.uk/nhs-website-content/symptoms/?category=b' -H 'apikey: Oq5LuCPc5X69KFlIw6P7TVYrrJHSceX8' >> ./responses/symptoms-root-category-b.json + +curl -X GET 'https://api.service.nhs.uk/nhs-website-content/symptoms/?page=1' -H 'apikey: Oq5LuCPc5X69KFlIw6P7TVYrrJHSceX8' >> ./responses/symptoms-root-page-1.json + +curl -X GET 'https://api.service.nhs.uk/nhs-website-content/symptoms/?page=6' -H 'apikey: Oq5LuCPc5X69KFlIw6P7TVYrrJHSceX8' >> ./responses/symptoms-root-page-6.json + + +***************************************************************************************************************** +** Tests and treatments pages ** +***************************************************************************************************************** + +curl -X GET 'https://api.service.nhs.uk/nhs-website-content/tests-and-treatments/?category=a' -H 'apikey: Oq5LuCPc5X69KFlIw6P7TVYrrJHSceX8' >> ./responses/tests-and-treatments-root-category-a.json + +curl -X GET 'https://api.service.nhs.uk/nhs-website-content/tests-and-treatments/?category=b' -H 'apikey: Oq5LuCPc5X69KFlIw6P7TVYrrJHSceX8' >> ./responses/tests-and-treatments-root-category-b.json + +curl -X GET 'https://api.service.nhs.uk/nhs-website-content/tests-and-treatments/?page=1' -H 'apikey: Oq5LuCPc5X69KFlIw6P7TVYrrJHSceX8' >> ./responses/tests-and-treatments-root-page-1.json + +curl -X GET 'https://api.service.nhs.uk/nhs-website-content/tests-and-treatments/?page=7' -H 'apikey: Oq5LuCPc5X69KFlIw6P7TVYrrJHSceX8' >> ./responses/tests-and-treatments-root-page-7.json diff --git a/sandbox/responses/conditions-acanthosis-nigricans-no-params.json b/sandbox/responses/conditions-acanthosis-nigricans-no-params.json index c20459d..82d68ac 100644 --- a/sandbox/responses/conditions-acanthosis-nigricans-no-params.json +++ b/sandbox/responses/conditions-acanthosis-nigricans-no-params.json @@ -2,310 +2,525 @@ "@context": "http://schema.org", "@type": "MedicalWebPage", "name": "Acanthosis nigricans", - "copyrightHolder": { "name": "Crown Copyright", "@type": "Organization" }, + "copyrightHolder": { + "name": "Crown Copyright", + "@type": "Organization" + }, "license": "https://developer.api.nhs.uk/terms", "author": { - "url": "https://www.nhs.uk", - "logo": "https://assets.nhs.uk/nhsuk-cms/images/nhs-attribution.width-510.png", - "email": "nhswebsite.servicedesk@nhs.net", - "@type": "Organization", - "name": "NHS website" + "url": "https://www.nhs.uk", + "logo": "https://assets.nhs.uk/nhsuk-cms/images/nhs-attribution.width-510.png", + "email": "nhswebsite.servicedesk@nhs.net", + "@type": "Organization", + "name": "NHS website" + }, + "about": { + "@type": "WebPage", + "name": "Acanthosis nigricans", + "alternateName": "" }, - "about": { "@type": "WebPage", "name": "Acanthosis nigricans", "alternateName": "" }, "description": "Acanthosis nigricans is the term for darkened, thickened patches of skin in the armpit and around the groin and neck. Find out about the main causes and treatments.", "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acanthosis-nigricans/", - "genre": ["Condition"], + "genre": [ + "Condition" + ], "keywords": [], - "dateModified": "2021-11-30T15:42:29+00:00", - "lastReviewed": ["2021-06-20T00:00:00+00:00", "2024-06-20T00:00:00+00:00"], + "dateModified": "2025-02-20T13:24:49+00:00", + "lastReviewed": [ + "2024-07-04T00:00:00+00:00", + "2027-07-04T00:00:00+00:00" + ], "breadcrumb": { - "@context": "http://schema.org", - "@type": "BreadcrumbList", - "itemListElement": [ + "@context": "http://schema.org", + "@type": "BreadcrumbList", + "itemListElement": [ + { + "@type": "ListItem", + "position": 0, + "item": { + "@id": "https://api.service.nhs.uk/nhs-website-content/conditions/", + "name": "Conditions A to Z", + "genre": [] + } + }, + { + "@type": "ListItem", + "position": 1, + "item": { + "@id": "https://api.service.nhs.uk/nhs-website-content/conditions/acanthosis-nigricans/", + "name": "Acanthosis nigricans", + "genre": [ + "Condition" + ] + } + } + ] + }, + "hasPart": [ + { + "@type": "HealthTopicContent", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acanthosis-nigricans/#symptoms", + "hasHealthAspect": "http://schema.org/SymptomsHealthAspect", + "headline": "Check if you have acanthosis nigricans", + "description": "The main symptom of acanthosis nigricans is patches of skin that are darker and thicker than usual. Sometimes the skin is itchy.", + "hasPart": [ + { + "@type": "WebPageElement", + "headline": "", + "text": "

The main symptom of acanthosis nigricans is patches of skin that are darker and thicker than usual.

They can appear anywhere on the body.

" + }, + { + "@type": "WebPageElement", + "text": "

The patches are dry and feel similar to velvet.

", + "image": [ + { + "@type": "ImageObject", + "name": "Dark patches of skin that form a band around the lower part of the neck on a person with medium brown skin.", + "url": "https://assets.nhs.uk/nhsuk-cms/images/A_0917_acanthosis-nigricans_C5HE23.original.max-600x600.jpg", + "caption": "The patches are dry and feel similar to velvet.", + "provider": "Alamy Images", + "license": "

Benedicte Desrus / Alamy Stock Photo https://www.alamy.com/stock-photo-childhood-obesity-in-mexico-37878235.html?pv=1&stamp=2&imageid=D82F3D1E-88DD-48FC-8591-AE73FADBC974&p=68490&n=0&orientation=0&pn=1&searchtype=0&IsFromSearch=1&srch=foo%3dbar%26st%3d0%26pn%3d1%26ps%3d100%26sortby%3d2%26resultview%3dsortbyPopular%26npgs%3d0%26qt%3dC5HE23%26qt_raw%3dC5HE23%26lic%3d3%26mr%3d0%26pr%3d0%26ot%3d0%26creative%3d%26ag%3d0%26hc%3d0%26pc%3d%26blackwhite%3d%26cutout%3d%26tbar%3d1%26et%3d0x000000000000000000000%26vp%3d0%26loc%3d0%26imgt%3d0%26dtfr%3d%26dtto%3d%26size%3d0xFF%26archive%3d1%26groupid%3d%26pseudoid%3d%26a%3d%26cdid%3d%26cdsrt%3d%26name%3d%26qn%3d%26apalib%3d%26apalic%3d%26lightbox%3d%26gname%3d%26gtype%3d%26xstx%3d0%26simid%3d%26saveQry%3d%26editorial%3d1%26nu%3d%26t%3d%26edoptin%3d%26customgeoip%3d%26cap%3d1%26cbstore%3d1%26vd%3d0%26lb%3d%26fi%3d2%26edrf%3d0%26ispremium%3d1%26flip%3d0%26pl%3d

", + "datePublished": "2017-09-18T11:45:25+00:00", + "keywords": [ + "Skin", + "Neck", + "acanthosis-nigricans", + "Groin", + "itchy", + "Armpit", + "dermatology", + "dermatological", + "darker patches" + ] + } + ] + }, + { + "@type": "WebPageElement", + "text": "

They're most common in skin folds, such as the armpits, neck or groin.

", + "image": [ + { + "@type": "ImageObject", + "name": "A dark patch of skin on the armpit of a person with white skin. The patch covers most of the person's armpit.", + "url": "https://assets.nhs.uk/nhsuk-cms/images/S_0318_Acanthosis-nigricans_C0131055.origina.max-600x600.jpg", + "caption": "They're most common in skin folds, such as the armpits, neck or groin.", + "provider": "Science Photo Library", + "license": "

CID, ISM /SCIENCE PHOTO LIBRARY https://www.sciencephoto.com/media/459432/view

", + "datePublished": "2018-03-12T15:16:27+00:00", + "keywords": [ + "Skin", + "Neck", + "acanthosis-nigricans", + "Groin", + "itchy", + "Armpit", + "dermatology", + "dermatological", + "darker patches" + ] + } + ] + }, + { + "@type": "WebPageElement", + "text": "

Some people also have tiny growths (skin tags) on the patches.

", + "image": [ + { + "@type": "ImageObject", + "name": "Dark patches of skin covering the armpit of someone with medium brown skin. There are also about 50 small skin tags.", + "url": "https://assets.nhs.uk/nhsuk-cms/images/S_0318_Acanthosis_nigricans_C0373908.origina.max-600x600.jpg", + "caption": "Some people also have tiny growths (skin tags) on the patches.", + "provider": "Science Photo Library", + "license": "

ANDRE LABBE, ISM/SCIENCE PHOTO LIBRARY https://www.sciencephoto.com/media/886025/view

", + "datePublished": "2018-03-12T15:17:48+00:00", + "keywords": [ + "Skin", + "Neck", + "acanthosis-nigricans", + "Groin", + "itchy", + "Armpit", + "dermatology", + "dermatological", + "darker patches" + ] + } + ] + }, + { + "@type": "WebPageElement", + "headline": "", + "text": "

The patches often appear gradually without any other symptoms.

Sometimes the skin may be itchy.

" + } + ] + }, + { + "@type": "HealthTopicContent", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acanthosis-nigricans/#non-urgent-medical-help", + "hasHealthAspect": "http://schema.org/MedicalHelpNonurgentHealthAspect", + "headline": "", + "description": "", + "hasPart": [ + { + "@type": "WebPageElement", + "identifier": "primary", + "headline": "See a GP if:", + "text": "\n" + } + ] + }, + { + "@type": "HealthTopicContent", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acanthosis-nigricans/#diagnosis", + "hasHealthAspect": "http://schema.org/DiagnosisHealthAspect", + "headline": "What happens at your appointment", + "description": "A GP can usually diagnose acanthosis nigricans by looking at your skin. You may need tests to find out what's causing it.", + "hasPart": [ + { + "@type": "WebPageElement", + "headline": "", + "text": "

A GP can usually tell if it's acanthosis nigricans by looking at your skin.

Although acanthosis nigricans is usually harmless, it's best to get any skin changes checked out.

Rarely, it can be a sign of something more serious, such as cancer.

You may need some tests to find out what's causing the patches.

" + } + ] + }, + { + "@type": "HealthTopicContent", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acanthosis-nigricans/#causes", + "hasHealthAspect": "http://schema.org/CausesHealthAspect", + "headline": "Causes of acanthosis nigricans", + "description": "Acanthosis nigricans is most often caused by obesity. Other causes include type 2 diabetes, hormone conditions and taking certain medicines.", + "hasPart": [ + { + "@type": "WebPageElement", + "headline": "", + "text": "

The most common cause of acanthosis nigricans is obesity.

Other causes include:

Sometimes healthy people with no other conditions get acanthosis nigricans. This is more common in people with black or brown skin.

" + } + ] + }, { - "@type": "ListItem", - "position": 0, - "item": { "@id": "https://api.service.nhs.uk/nhs-website-content/conditions/", "name": "Health A to Z", "genre": [] } + "@type": "HealthTopicContent", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acanthosis-nigricans/#medical-treatments", + "hasHealthAspect": "http://schema.org/TreatmentsHealthAspect", + "headline": "Treating acanthosis nigricans", + "description": "Treatment for acanthosis nigricans depends on the cause. You may need to lose weight or take medicines.", + "hasPart": [ + { + "@type": "WebPageElement", + "headline": "", + "text": "

Once a GP knows what's causing acanthosis nigricans, they can recommend the best treatment.

The patches should fade over time once the cause is treated.

If you're very overweight, a GP may recommend losing weight.

Depending on the cause, they may also recommend:

There's no specific treatment for the patches themselves. A skin specialist (dermatologist) may be able to suggest treatments to improve their appearance, but finding and treating the cause is usually recommended first.

" + } + ] }, { - "@type": "ListItem", - "position": 1, - "item": { - "@id": "https://api.service.nhs.uk/nhs-website-content/conditions/acanthosis-nigricans/", - "name": "Acanthosis nigricans", - "genre": ["Condition"] - } + "@type": "HealthTopicContent", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acanthosis-nigricans/#overview", + "hasHealthAspect": "http://schema.org/OverviewHealthAspect", + "headline": "", + "description": "Acanthosis nigricans is a skin condition where you have dry, dark patches of skin, usually in the armpits, neck or groin.", + "hasPart": [ + { + "@type": "WebPageElement", + "headline": "Acanthosis nigricans", + "text": "Symptoms" + }, + { + "@type": "WebPageElement", + "headline": "Acanthosis nigricans", + "text": "Diagnosis" + }, + { + "@type": "WebPageElement", + "headline": "Acanthosis nigricans", + "text": "Causes" + }, + { + "@type": "WebPageElement", + "headline": "Acanthosis nigricans", + "text": "Medical treatments" + }, + { + "text": "

The main symptom of acanthosis nigricans is patches of skin that are darker and thicker than usual. Sometimes the skin is itchy.

", + "@type": "WebPageElement" + }, + { + "text": "

A GP can usually diagnose acanthosis nigricans by looking at your skin. You may need tests to find out what's causing it.

", + "@type": "WebPageElement" + }, + { + "text": "

Acanthosis nigricans is most often caused by obesity. Other causes include type 2 diabetes, hormone conditions and taking certain medicines.

", + "@type": "WebPageElement" + }, + { + "text": "

Treatment for acanthosis nigricans depends on the cause. You may need to lose weight or take medicines.

", + "@type": "WebPageElement" + } + ] } - ] - }, - "hasPart": [], + ], "relatedLink": [ - { - "@type": "LinkRole", - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acanthosis-nigricans/", - "linkRelationship": "Navigation", - "position": 0, - "name": "Acanthosis nigricans" - } + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acanthosis-nigricans/", + "linkRelationship": "Navigation", + "position": 0, + "name": "Acanthosis nigricans" + } ], "contentSubTypes": [], "mainEntityOfPage": [ - { - "identifier": "0", - "name": "section heading", - "position": 0, - "@type": "WebPageElement", - "mainEntityOfPage": [ - { - "position": 0, - "identifier": "1", - "text": "

Acanthosis nigricans is the name for dry, dark patches of skin that usually appear in the armpits, neck or groin. It could be a sign of an underlying condition, so it needs to be checked by a GP.

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "description": "", - "hasPart": [ - { - "position": 0, - "identifier": "1", - "text": "

Acanthosis nigricans is the name for dry, dark patches of skin that usually appear in the armpits, neck or groin. It could be a sign of an underlying condition, so it needs to be checked by a GP.

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ] - }, - { - "identifier": "0", - "name": "section heading", - "position": 1, - "@type": "WebPageElement", - "mainEntityOfPage": [ - { + { "position": 0, - "identifier": "1", - "text": "

The main symptom of acanthosis nigricans is patches of skin that are darker and thicker than usual.

They can appear anywhere on the body.

", + "identifier": 0, + "text": "Acanthosis nigricans is the name for dry, dark patches of skin that usually appear in the armpits, neck or groin. It could be a sign of an underlying condition, so it needs to be checked by a GP.", + "name": "lead paragraph", + "@type": "WebPageElement" + }, + { + "identifier": "0", + "name": "section heading", + "position": 1, "@type": "WebPageElement", - "name": "markdown", - "headline": "" - }, - { - "position": 2, - "identifier": "13", - "@type": "ImageObject", - "name": "A dark patch of skin on the armpit of a person with white skin. The patch covers most of the person's armpit.", - "url": "https://assets.nhs.uk/nhsuk-cms/images/S_0318_Acanthosis-nigricans_C0131055.max-600x600.jpg", - "caption": "

They're most common in skin folds, such as the armpits, neck or groin.

", - "provider": "Science Photo Library", - "datePublished": "2018-03-12T15:16:27+00:00", - "keywords": [ - "Skin", - "Neck", - "acanthosis-nigricans", - "Groin", - "itchy", - "Armpit", - "dermatology", - "dermatological", - "darker patches" + "mainEntityOfPage": [ + { + "position": 0, + "identifier": "1", + "text": "

The main symptom of acanthosis nigricans is patches of skin that are darker and thicker than usual.

They can appear anywhere on the body.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + }, + { + "position": 2, + "identifier": "13", + "@type": "ImageObject", + "name": "A dark patch of skin on the armpit of a person with white skin. The patch covers most of the person's armpit.", + "url": "https://assets.nhs.uk/nhsuk-cms/images/S_0318_Acanthosis-nigricans_C0131055.origina.max-600x600.jpg", + "caption": "

They're most common in skin folds, such as the armpits, neck or groin.

", + "provider": "Science Photo Library", + "datePublished": "2018-03-12T15:16:27+00:00", + "keywords": [ + "Skin", + "Neck", + "acanthosis-nigricans", + "Groin", + "itchy", + "Armpit", + "dermatology", + "dermatological", + "darker patches" + ], + "credit": "

CID, ISM /SCIENCE PHOTO LIBRARY https://www.sciencephoto.com/media/459432/view

" + }, + { + "position": 3, + "identifier": "13", + "@type": "ImageObject", + "name": "Dark patches of skin covering the armpit of someone with medium brown skin. There are also about 50 small skin tags.", + "url": "https://assets.nhs.uk/nhsuk-cms/images/S_0318_Acanthosis_nigricans_C0373908.origina.max-600x600.jpg", + "caption": "

Some people also have tiny growths (skin tags) on the patches.

", + "provider": "Science Photo Library", + "datePublished": "2018-03-12T15:17:48+00:00", + "keywords": [ + "Skin", + "Neck", + "acanthosis-nigricans", + "Groin", + "itchy", + "Armpit", + "dermatology", + "dermatological", + "darker patches" + ], + "credit": "

ANDRE LABBE, ISM/SCIENCE PHOTO LIBRARY https://www.sciencephoto.com/media/886025/view

" + }, + { + "position": 4, + "identifier": "1", + "text": "

The patches often appear gradually without any other symptoms.

Sometimes the skin may be itchy.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } ], - "credit": "

CID, ISM /SCIENCE PHOTO LIBRARY https://www.sciencephoto.com/media/459432/view

" - }, - { - "position": 3, - "identifier": "13", - "@type": "ImageObject", - "name": "Dark patches of skin covering the armpit of someone with medium brown skin. There are also about 50 small skin tags.", - "url": "https://assets.nhs.uk/nhsuk-cms/images/S_0318_Acanthosis_nigricans_C0373908.max-600x600.jpg", - "caption": "

Some people also have tiny growths (skin tags) on the patches.

", - "provider": "Science Photo Library", - "datePublished": "2018-03-12T15:17:48+00:00", - "keywords": [ - "Skin", - "Neck", - "acanthosis-nigricans", - "Groin", - "itchy", - "Armpit", - "dermatology", - "dermatological", - "darker patches" + "description": "The main symptom of acanthosis nigricans is patches of skin that are darker and thicker than usual. Sometimes the skin is itchy.", + "hasPart": [ + { + "position": 0, + "identifier": "1", + "text": "

The main symptom of acanthosis nigricans is patches of skin that are darker and thicker than usual.

They can appear anywhere on the body.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + }, + { + "position": 2, + "identifier": "13", + "@type": "ImageObject", + "name": "A dark patch of skin on the armpit of a person with white skin. The patch covers most of the person's armpit.", + "url": "https://assets.nhs.uk/nhsuk-cms/images/S_0318_Acanthosis-nigricans_C0131055.origina.max-600x600.jpg", + "caption": "

They're most common in skin folds, such as the armpits, neck or groin.

", + "provider": "Science Photo Library", + "datePublished": "2018-03-12T15:16:27+00:00", + "keywords": [ + "Skin", + "Neck", + "acanthosis-nigricans", + "Groin", + "itchy", + "Armpit", + "dermatology", + "dermatological", + "darker patches" + ], + "credit": "

CID, ISM /SCIENCE PHOTO LIBRARY https://www.sciencephoto.com/media/459432/view

" + }, + { + "position": 3, + "identifier": "13", + "@type": "ImageObject", + "name": "Dark patches of skin covering the armpit of someone with medium brown skin. There are also about 50 small skin tags.", + "url": "https://assets.nhs.uk/nhsuk-cms/images/S_0318_Acanthosis_nigricans_C0373908.origina.max-600x600.jpg", + "caption": "

Some people also have tiny growths (skin tags) on the patches.

", + "provider": "Science Photo Library", + "datePublished": "2018-03-12T15:17:48+00:00", + "keywords": [ + "Skin", + "Neck", + "acanthosis-nigricans", + "Groin", + "itchy", + "Armpit", + "dermatology", + "dermatological", + "darker patches" + ], + "credit": "

ANDRE LABBE, ISM/SCIENCE PHOTO LIBRARY https://www.sciencephoto.com/media/886025/view

" + }, + { + "position": 4, + "identifier": "1", + "text": "

The patches often appear gradually without any other symptoms.

Sometimes the skin may be itchy.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } ], - "credit": "

ANDRE LABBE, ISM/SCIENCE PHOTO LIBRARY https://www.sciencephoto.com/media/886025/view

" - }, - { - "position": 4, - "identifier": "1", - "text": "

The patches often appear gradually without any other symptoms.

Sometimes the skin may be itchy.

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "description": "", - "hasPart": [ - { - "position": 0, - "identifier": "1", - "text": "

The main symptom of acanthosis nigricans is patches of skin that are darker and thicker than usual.

They can appear anywhere on the body.

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "" - }, - { + "hasHealthAspect": "http://schema.org/SymptomsHealthAspect", + "headline": "Check if you have acanthosis nigricans" + }, + { + "identifier": "0", + "name": "section heading", "position": 2, - "identifier": "13", - "@type": "ImageObject", - "name": "A dark patch of skin on the armpit of a person with white skin. The patch covers most of the person's armpit.", - "url": "https://assets.nhs.uk/nhsuk-cms/images/S_0318_Acanthosis-nigricans_C0131055.max-600x600.jpg", - "caption": "

They're most common in skin folds, such as the armpits, neck or groin.

", - "provider": "Science Photo Library", - "datePublished": "2018-03-12T15:16:27+00:00", - "keywords": [ - "Skin", - "Neck", - "acanthosis-nigricans", - "Groin", - "itchy", - "Armpit", - "dermatology", - "dermatological", - "darker patches" + "@type": "WebPageElement", + "mainEntityOfPage": [ + { + "position": 0, + "@type": "WebPageElement", + "name": "non-urgent", + "identifier": "5", + "text": "

See a GP if:

\n
  • you have new dark patches on your skin
  • you have any skin changes you're unsure about
\n
" + } ], - "credit": "

CID, ISM /SCIENCE PHOTO LIBRARY https://www.sciencephoto.com/media/459432/view

" - }, - { - "position": 3, - "identifier": "13", - "@type": "ImageObject", - "name": "Dark patches of skin covering the armpit of someone with medium brown skin. There are also about 50 small skin tags.", - "url": "https://assets.nhs.uk/nhsuk-cms/images/S_0318_Acanthosis_nigricans_C0373908.max-600x600.jpg", - "caption": "

Some people also have tiny growths (skin tags) on the patches.

", - "provider": "Science Photo Library", - "datePublished": "2018-03-12T15:17:48+00:00", - "keywords": [ - "Skin", - "Neck", - "acanthosis-nigricans", - "Groin", - "itchy", - "Armpit", - "dermatology", - "dermatological", - "darker patches" + "description": "", + "hasPart": [ + { + "position": 0, + "@type": "WebPageElement", + "name": "non-urgent", + "identifier": "5", + "text": "

See a GP if:

\n
  • you have new dark patches on your skin
  • you have any skin changes you're unsure about
\n
" + } ], - "credit": "

ANDRE LABBE, ISM/SCIENCE PHOTO LIBRARY https://www.sciencephoto.com/media/886025/view

" - }, - { - "position": 4, - "identifier": "1", - "text": "

The patches often appear gradually without any other symptoms.

Sometimes the skin may be itchy.

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "headline": "Check if you have acanthosis nigricans" - }, - { - "identifier": "0", - "name": "section heading", - "position": 2, - "@type": "WebPageElement", - "mainEntityOfPage": [ - { - "position": 0, - "@type": "WebPageElement", - "name": "non-urgent", - "identifier": "5", - "text": "

See a GP if you have:

\n
  • new dark patches on your skin
  • any skin changes you're unsure about
\n
" - }, - { - "position": 1, - "identifier": "1", - "text": "

Although acanthosis nigricans is usually harmless, it's best to get any skin changes checked out.

Rarely, it can be a sign of something more serious, such as cancer.

A GP can usually tell if it's acanthosis nigricans by looking at your skin.

You may need some tests to find out what's causing the patches.

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "What happens at your appointment" - } - ], - "description": "", - "hasPart": [ - { - "position": 0, - "@type": "WebPageElement", - "name": "non-urgent", - "identifier": "5", - "text": "

See a GP if you have:

\n
  • new dark patches on your skin
  • any skin changes you're unsure about
\n
" - }, - { - "position": 1, - "identifier": "1", - "text": "

Although acanthosis nigricans is usually harmless, it's best to get any skin changes checked out.

Rarely, it can be a sign of something more serious, such as cancer.

A GP can usually tell if it's acanthosis nigricans by looking at your skin.

You may need some tests to find out what's causing the patches.

", + "hasHealthAspect": "http://schema.org/MedicalHelpNonurgentHealthAspect" + }, + { + "identifier": "0", + "name": "section heading", + "position": 3, "@type": "WebPageElement", - "name": "markdown", + "mainEntityOfPage": [ + { + "position": 0, + "identifier": "1", + "text": "

A GP can usually tell if it's acanthosis nigricans by looking at your skin.

Although acanthosis nigricans is usually harmless, it's best to get any skin changes checked out.

Rarely, it can be a sign of something more serious, such as cancer.

You may need some tests to find out what's causing the patches.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "description": "A GP can usually diagnose acanthosis nigricans by looking at your skin. You may need tests to find out what's causing it.", + "hasPart": [ + { + "position": 0, + "identifier": "1", + "text": "

A GP can usually tell if it's acanthosis nigricans by looking at your skin.

Although acanthosis nigricans is usually harmless, it's best to get any skin changes checked out.

Rarely, it can be a sign of something more serious, such as cancer.

You may need some tests to find out what's causing the patches.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "hasHealthAspect": "http://schema.org/DiagnosisHealthAspect", "headline": "What happens at your appointment" - } - ] - }, - { - "identifier": "0", - "name": "section heading", - "position": 3, - "@type": "WebPageElement", - "mainEntityOfPage": [ - { - "position": 0, - "identifier": "1", - "text": "

The most common cause of acanthosis nigricans is being very overweight.

Other causes include:

Sometimes healthy people with no other conditions get acanthosis nigricans. This is more common in people with black or brown skin.

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "description": "", - "hasPart": [ - { - "position": 0, - "identifier": "1", - "text": "

The most common cause of acanthosis nigricans is being very overweight.

Other causes include:

Sometimes healthy people with no other conditions get acanthosis nigricans. This is more common in people with black or brown skin.

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "headline": "Causes of acanthosis nigricans" - }, - { - "identifier": "0", - "name": "section heading", - "position": 4, - "@type": "WebPageElement", - "mainEntityOfPage": [ - { - "position": 0, - "identifier": "1", - "text": "

Once a GP knows what's causing acanthosis nigricans, they can recommend the best treatment.

The patches should fade over time once the cause is treated.

If you're very overweight, a GP may recommend losing weight.

Depending on the cause, they may also recommend:

There's no specific treatment for the patches themselves. A skin specialist (dermatologist) may be able to suggest treatments to improve their appearance, but finding and treating the cause is usually recommended first.

", + }, + { + "identifier": "0", + "name": "section heading", + "position": 4, "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "description": "", - "hasPart": [ - { - "position": 0, - "identifier": "1", - "text": "

Once a GP knows what's causing acanthosis nigricans, they can recommend the best treatment.

The patches should fade over time once the cause is treated.

If you're very overweight, a GP may recommend losing weight.

Depending on the cause, they may also recommend:

There's no specific treatment for the patches themselves. A skin specialist (dermatologist) may be able to suggest treatments to improve their appearance, but finding and treating the cause is usually recommended first.

", + "mainEntityOfPage": [ + { + "position": 0, + "identifier": "1", + "text": "

The most common cause of acanthosis nigricans is obesity.

Other causes include:

Sometimes healthy people with no other conditions get acanthosis nigricans. This is more common in people with black or brown skin.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "description": "Acanthosis nigricans is most often caused by obesity. Other causes include type 2 diabetes, hormone conditions and taking certain medicines.", + "hasPart": [ + { + "position": 0, + "identifier": "1", + "text": "

The most common cause of acanthosis nigricans is obesity.

Other causes include:

Sometimes healthy people with no other conditions get acanthosis nigricans. This is more common in people with black or brown skin.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "hasHealthAspect": "http://schema.org/CausesHealthAspect", + "headline": "Causes of acanthosis nigricans" + }, + { + "identifier": "0", + "name": "section heading", + "position": 5, "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "headline": "Treating acanthosis nigricans" - } + "mainEntityOfPage": [ + { + "position": 0, + "identifier": "1", + "text": "

Once a GP knows what's causing acanthosis nigricans, they can recommend the best treatment.

The patches should fade over time once the cause is treated.

If you're very overweight, a GP may recommend losing weight.

Depending on the cause, they may also recommend:

There's no specific treatment for the patches themselves. A skin specialist (dermatologist) may be able to suggest treatments to improve their appearance, but finding and treating the cause is usually recommended first.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "description": "Treatment for acanthosis nigricans depends on the cause. You may need to lose weight or take medicines.", + "hasPart": [ + { + "position": 0, + "identifier": "1", + "text": "

Once a GP knows what's causing acanthosis nigricans, they can recommend the best treatment.

The patches should fade over time once the cause is treated.

If you're very overweight, a GP may recommend losing weight.

Depending on the cause, they may also recommend:

There's no specific treatment for the patches themselves. A skin specialist (dermatologist) may be able to suggest treatments to improve their appearance, but finding and treating the cause is usually recommended first.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "hasHealthAspect": "http://schema.org/TreatmentsHealthAspect", + "headline": "Treating acanthosis nigricans" + } ], "webpage": "https://www.nhs.uk/conditions/acanthosis-nigricans/" } diff --git a/sandbox/responses/conditions-achalasia-no-params.json b/sandbox/responses/conditions-achalasia-no-params.json index ea8c089..671c7c2 100644 --- a/sandbox/responses/conditions-achalasia-no-params.json +++ b/sandbox/responses/conditions-achalasia-no-params.json @@ -2,189 +2,221 @@ "@context": "http://schema.org", "@type": "MedicalWebPage", "name": "Achalasia", - "copyrightHolder": { "name": "Crown Copyright", "@type": "Organization" }, + "copyrightHolder": { + "name": "Crown Copyright", + "@type": "Organization" + }, "license": "https://developer.api.nhs.uk/terms", "author": { - "url": "https://www.nhs.uk", - "logo": "https://assets.nhs.uk/nhsuk-cms/images/nhs-attribution.width-510.png", - "email": "nhswebsite.servicedesk@nhs.net", - "@type": "Organization", - "name": "NHS website" + "url": "https://www.nhs.uk", + "logo": "https://assets.nhs.uk/nhsuk-cms/images/nhs-attribution.width-510.png", + "email": "nhswebsite.servicedesk@nhs.net", + "@type": "Organization", + "name": "NHS website" + }, + "about": { + "@type": "WebPage", + "name": "Achalasia", + "alternateName": "" }, - "about": { "@type": "WebPage", "name": "Achalasia", "alternateName": "" }, "description": "Read about achalasia, a disorder of the gullet (oesophagus) where it loses the ability to move food along. The valve at the end of the gullet also fails to open.", "url": "https://api.service.nhs.uk/nhs-website-content/conditions/achalasia/", - "genre": ["Condition"], + "genre": [ + "Condition" + ], "keywords": [], - "dateModified": "2023-07-05T15:04:16+00:00", - "lastReviewed": ["2020-12-24T14:50:00+00:00", "2023-12-24T15:00:00+00:00"], + "dateModified": "2023-12-12T10:14:58+00:00", + "lastReviewed": [ + "2023-12-05T14:50:00+00:00", + "2026-12-05T15:00:00+00:00" + ], "breadcrumb": { - "@context": "http://schema.org", - "@type": "BreadcrumbList", - "itemListElement": [ - { - "@type": "ListItem", - "position": 0, - "item": { "@id": "https://api.service.nhs.uk/nhs-website-content/conditions/", "name": "Health A to Z", "genre": [] } - }, - { - "@type": "ListItem", - "position": 1, - "item": { - "@id": "https://api.service.nhs.uk/nhs-website-content/conditions/achalasia/", - "name": "Achalasia", - "genre": ["Condition"] - } - } - ] + "@context": "http://schema.org", + "@type": "BreadcrumbList", + "itemListElement": [ + { + "@type": "ListItem", + "position": 0, + "item": { + "@id": "https://api.service.nhs.uk/nhs-website-content/conditions/", + "name": "Conditions A to Z", + "genre": [] + } + }, + { + "@type": "ListItem", + "position": 1, + "item": { + "@id": "https://api.service.nhs.uk/nhs-website-content/conditions/achalasia/", + "name": "Achalasia", + "genre": [ + "Condition" + ] + } + } + ] }, "hasPart": [], "relatedLink": [ - { - "@type": "LinkRole", - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/achalasia/", - "linkRelationship": "Navigation", - "position": 0, - "name": "Achalasia" - } + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/achalasia/", + "linkRelationship": "Navigation", + "position": 0, + "name": "Achalasia" + } ], "contentSubTypes": [], "mainEntityOfPage": [ - { - "identifier": "0", - "name": "section heading", - "position": 0, - "@type": "WebPageElement", - "mainEntityOfPage": [ - { - "position": 0, - "identifier": "1", - "text": "

Achalasia is a rare disorder of the food pipe (oesophagus), which can make it difficult to swallow food and drink.

Normally, the muscles of the oesophagus contract to squeeze food along towards the stomach. A ring of muscle at the end of the food pipe then relaxes to let food into the stomach.

In achalasia, the muscles in the oesophagus do not contract correctly and the ring of muscle can fail to open properly, or does not open at all. Food and drink cannot pass into the stomach and becomes stuck. It is often brought back up.

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "description": "", - "hasPart": [ - { - "position": 0, - "identifier": "1", - "text": "

Achalasia is a rare disorder of the food pipe (oesophagus), which can make it difficult to swallow food and drink.

Normally, the muscles of the oesophagus contract to squeeze food along towards the stomach. A ring of muscle at the end of the food pipe then relaxes to let food into the stomach.

In achalasia, the muscles in the oesophagus do not contract correctly and the ring of muscle can fail to open properly, or does not open at all. Food and drink cannot pass into the stomach and becomes stuck. It is often brought back up.

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ] - }, - { - "identifier": "0", - "name": "section heading", - "position": 1, - "@type": "WebPageElement", - "mainEntityOfPage": [ - { - "position": 0, - "identifier": "1", - "text": "

Not everyone with achalasia will have symptoms.

But most people with achalasia will find it difficult to swallow food or drink (known as dysphagia). Swallowing tends to get gradually more difficult or painful over a couple of years, to the point where it is sometimes impossible.

Other symptoms include:

Symptoms of achalasia may start at any time of life.

Long-term achalasia increases the risk of developing cancer of the oesophagus. This means it's important to get appropriate treatment straight away, even if your symptoms are not bothering you.

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "Symptoms of achalasia" - } - ], - "description": "", - "hasPart": [ - { - "position": 0, - "identifier": "1", - "text": "

Not everyone with achalasia will have symptoms.

But most people with achalasia will find it difficult to swallow food or drink (known as dysphagia). Swallowing tends to get gradually more difficult or painful over a couple of years, to the point where it is sometimes impossible.

Other symptoms include:

Symptoms of achalasia may start at any time of life.

Long-term achalasia increases the risk of developing cancer of the oesophagus. This means it's important to get appropriate treatment straight away, even if your symptoms are not bothering you.

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "Symptoms of achalasia" - } - ] - }, - { - "identifier": "0", - "name": "section heading", - "position": 2, - "@type": "WebPageElement", - "mainEntityOfPage": [ - { - "position": 0, - "identifier": "1", - "text": "

Achalasia is thought to happen when the nerves in the oesophagus become damaged and stop working properly, which is why the muscles and ring of muscle do not work. The exact cause of this is unknown.

In some people, it may be linked to a viral infection. It may also be associated with having an autoimmune condition, where the body's immune system attacks healthy cells, tissue and organs.

In rare cases, achalasia may run in families.

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "Causes of achalasia" - } - ], - "description": "", - "hasPart": [ - { + { + "identifier": "0", + "name": "section heading", "position": 0, - "identifier": "1", - "text": "

Achalasia is thought to happen when the nerves in the oesophagus become damaged and stop working properly, which is why the muscles and ring of muscle do not work. The exact cause of this is unknown.

In some people, it may be linked to a viral infection. It may also be associated with having an autoimmune condition, where the body's immune system attacks healthy cells, tissue and organs.

In rare cases, achalasia may run in families.

", "@type": "WebPageElement", - "name": "markdown", - "headline": "Causes of achalasia" - } - ] - }, - { - "identifier": "0", - "name": "section heading", - "position": 3, - "@type": "WebPageElement", - "mainEntityOfPage": [ - { - "position": 0, - "identifier": "1", - "text": "

If a GP thinks you have achalasia, you'll be referred to hospital to have some diagnostic tests. Achalasia may also be diagnosed during an investigation, such as a chest X-ray, for another reason.

The tests for achalasia include:

", + "mainEntityOfPage": [ + { + "position": 0, + "identifier": "1", + "text": "

Achalasia is a rare disorder of the food pipe (oesophagus), which can make it difficult to swallow food and drink.

Normally, the muscles of the oesophagus contract to squeeze food along towards the stomach. A ring of muscle at the end of the food pipe then relaxes to let food into the stomach.

In achalasia, the muscles in the oesophagus do not contract correctly and the ring of muscle can fail to open properly, or does not open at all. Food and drink cannot pass into the stomach and becomes stuck. It is often brought back up.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "description": "", + "hasPart": [ + { + "position": 0, + "identifier": "1", + "text": "

Achalasia is a rare disorder of the food pipe (oesophagus), which can make it difficult to swallow food and drink.

Normally, the muscles of the oesophagus contract to squeeze food along towards the stomach. A ring of muscle at the end of the food pipe then relaxes to let food into the stomach.

In achalasia, the muscles in the oesophagus do not contract correctly and the ring of muscle can fail to open properly, or does not open at all. Food and drink cannot pass into the stomach and becomes stuck. It is often brought back up.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ] + }, + { + "identifier": "0", + "name": "section heading", + "position": 1, "@type": "WebPageElement", - "name": "markdown", - "headline": "Diagnosing achalasia" - } - ], - "description": "", - "hasPart": [ - { - "position": 0, - "identifier": "1", - "text": "

If a GP thinks you have achalasia, you'll be referred to hospital to have some diagnostic tests. Achalasia may also be diagnosed during an investigation, such as a chest X-ray, for another reason.

The tests for achalasia include:

", + "mainEntityOfPage": [ + { + "position": 0, + "identifier": "1", + "text": "

Not everyone with achalasia will have symptoms.

But most people with achalasia will find it difficult to swallow food or drink (known as dysphagia). Swallowing tends to get gradually more difficult or painful over a couple of years, to the point where it is sometimes impossible.

Other symptoms include:

Symptoms of achalasia may start at any time of life.

Swallowing problems can also be caused by cancers of the mouth, throat and oesophagus. There’s a link between long-term achalasia and the risk of developing cancer of the oesophagus, but the risk is small.

It’s always important to get symptoms checked straight away, even if your symptoms are not bothering you.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "Symptoms of achalasia" + } + ], + "description": "", + "hasPart": [ + { + "position": 0, + "identifier": "1", + "text": "

Not everyone with achalasia will have symptoms.

But most people with achalasia will find it difficult to swallow food or drink (known as dysphagia). Swallowing tends to get gradually more difficult or painful over a couple of years, to the point where it is sometimes impossible.

Other symptoms include:

Symptoms of achalasia may start at any time of life.

Swallowing problems can also be caused by cancers of the mouth, throat and oesophagus. There’s a link between long-term achalasia and the risk of developing cancer of the oesophagus, but the risk is small.

It’s always important to get symptoms checked straight away, even if your symptoms are not bothering you.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "Symptoms of achalasia" + } + ] + }, + { + "identifier": "0", + "name": "section heading", + "position": 2, "@type": "WebPageElement", - "name": "markdown", - "headline": "Diagnosing achalasia" - } - ] - }, - { - "identifier": "0", - "name": "section heading", - "position": 4, - "@type": "WebPageElement", - "mainEntityOfPage": [ - { - "position": 0, - "identifier": "1", - "text": "

There is no cure for achalasia, but treatment can help relieve the symptoms and make swallowing easier.

Your doctors will talk to you about the risks and benefits of the different treatment options.

Medicine

Medicines, such as nitrates or nifedipine, can help to relax the muscles in your oesophagus. This makes swallowing easier and less painful for some people, although they do not work for everyone.

The effect only lasts for a short time, so medicine may be used to ease symptoms while you wait for a more permanent treatment. They may cause headaches, but this usually improves over time.

Stretching the muscle (balloon dilation)

Under a sedative or general anaesthetic, a balloon is passed into the oesophagus using a long, thin flexible tube (endoscope). The balloon is then inflated to help stretch the ring of muscle that lets food into your stomach.

This improves swallowing for most people, but you may need treatment several times before your symptoms improve.

Balloon dilatation does carry a small risk of tearing the oesophagus (oesophageal rupture), which may require emergency surgery.

Botox injection

Using an endoscope, botox is injected into the ring of muscle that lets food into your stomach, causing it to relax.

It is usually effective for a few months and occasionally for a few years, but it has to be repeated. This is usually painless, and can be used for temporary relief in people who are not able to have other treatments.

Surgery

Under general anaesthetic, the muscle fibres in the ring of muscle that lets food into your stomach are cut. This is done using keyhole surgery (laparoscopy) and is called Heller's Myotomy.

It can permanently make swallowing easier.

Often a second procedure will be done at the same time to stop you getting acid reflux and heartburn, which can be a side effect of the Heller's Myotomy operation. Your surgeon will talk to you about this.

In rare cases some people may need an operation to remove part of their oesophagus.

Follow-up treatment

Balloon dilation and surgery can both cause side effects such as acid reflux and heartburn and chest pain. A GP may be able to prescribe medicine to help with this, and your surgeon may suggest you take this medicine routinely.

It's normal for chest pain to persist for a while after treatment. Drinking cold water may help relieve this.

You should see a GP if you still have swallowing difficulties or are continuing to lose weight after treatment.

", + "mainEntityOfPage": [ + { + "position": 0, + "identifier": "1", + "text": "

Achalasia is thought to happen when the nerves in the oesophagus become damaged and stop working properly, which is why the muscles and ring of muscle do not work. The exact cause of this is unknown.

In some people, it may be linked to a viral infection. It may also be associated with having an autoimmune condition, where the body's immune system attacks healthy cells, tissue and organs.

In rare cases, it's possible that achalasia is caused by a faulty gene.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "Causes of achalasia" + } + ], + "description": "", + "hasPart": [ + { + "position": 0, + "identifier": "1", + "text": "

Achalasia is thought to happen when the nerves in the oesophagus become damaged and stop working properly, which is why the muscles and ring of muscle do not work. The exact cause of this is unknown.

In some people, it may be linked to a viral infection. It may also be associated with having an autoimmune condition, where the body's immune system attacks healthy cells, tissue and organs.

In rare cases, it's possible that achalasia is caused by a faulty gene.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "Causes of achalasia" + } + ] + }, + { + "identifier": "0", + "name": "section heading", + "position": 3, "@type": "WebPageElement", - "name": "markdown", - "headline": "Treatments for achalasia" - } - ], - "description": "", - "hasPart": [ - { - "position": 0, - "identifier": "1", - "text": "

There is no cure for achalasia, but treatment can help relieve the symptoms and make swallowing easier.

Your doctors will talk to you about the risks and benefits of the different treatment options.

Medicine

Medicines, such as nitrates or nifedipine, can help to relax the muscles in your oesophagus. This makes swallowing easier and less painful for some people, although they do not work for everyone.

The effect only lasts for a short time, so medicine may be used to ease symptoms while you wait for a more permanent treatment. They may cause headaches, but this usually improves over time.

Stretching the muscle (balloon dilation)

Under a sedative or general anaesthetic, a balloon is passed into the oesophagus using a long, thin flexible tube (endoscope). The balloon is then inflated to help stretch the ring of muscle that lets food into your stomach.

This improves swallowing for most people, but you may need treatment several times before your symptoms improve.

Balloon dilatation does carry a small risk of tearing the oesophagus (oesophageal rupture), which may require emergency surgery.

Botox injection

Using an endoscope, botox is injected into the ring of muscle that lets food into your stomach, causing it to relax.

It is usually effective for a few months and occasionally for a few years, but it has to be repeated. This is usually painless, and can be used for temporary relief in people who are not able to have other treatments.

Surgery

Under general anaesthetic, the muscle fibres in the ring of muscle that lets food into your stomach are cut. This is done using keyhole surgery (laparoscopy) and is called Heller's Myotomy.

It can permanently make swallowing easier.

Often a second procedure will be done at the same time to stop you getting acid reflux and heartburn, which can be a side effect of the Heller's Myotomy operation. Your surgeon will talk to you about this.

In rare cases some people may need an operation to remove part of their oesophagus.

Follow-up treatment

Balloon dilation and surgery can both cause side effects such as acid reflux and heartburn and chest pain. A GP may be able to prescribe medicine to help with this, and your surgeon may suggest you take this medicine routinely.

It's normal for chest pain to persist for a while after treatment. Drinking cold water may help relieve this.

You should see a GP if you still have swallowing difficulties or are continuing to lose weight after treatment.

", + "mainEntityOfPage": [ + { + "position": 0, + "identifier": "1", + "text": "

If a GP thinks you have achalasia, you'll be referred to hospital to have some diagnostic tests. Achalasia may also be diagnosed during an investigation, such as a chest X-ray, for another reason.

The tests for achalasia include:

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "Diagnosing achalasia" + } + ], + "description": "", + "hasPart": [ + { + "position": 0, + "identifier": "1", + "text": "

If a GP thinks you have achalasia, you'll be referred to hospital to have some diagnostic tests. Achalasia may also be diagnosed during an investigation, such as a chest X-ray, for another reason.

The tests for achalasia include:

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "Diagnosing achalasia" + } + ] + }, + { + "identifier": "0", + "name": "section heading", + "position": 4, "@type": "WebPageElement", - "name": "markdown", - "headline": "Treatments for achalasia" - } - ] - } + "mainEntityOfPage": [ + { + "position": 0, + "identifier": "1", + "text": "

There is no cure for achalasia, but treatment can help relieve the symptoms and make swallowing easier.

Your doctors will talk to you about the risks and benefits of the different treatment options.

Medicine

Medicines, such as nitrates or nifedipine, can help to relax the muscles in your oesophagus. This makes swallowing easier and less painful for some people, although they do not work for everyone.

The effect only lasts for a short time, so medicine may be used to ease symptoms while you wait for a more permanent treatment. They may cause headaches, but this usually improves over time.

Stretching the muscle (balloon dilation)

Under a sedative, or sometimes a general anaesthetic, a balloon is passed into the oesophagus using a long, thin flexible tube (endoscope). The balloon is then inflated to help stretch the ring of muscle that lets food into your stomach.

This improves swallowing for most people, but you may need treatment several times before your symptoms improve.

Balloon dilatation does carry a small risk of tearing the oesophagus (oesophageal rupture), which may require emergency surgery.

Botox injection

Using an endoscope, botox is injected into the ring of muscle that lets food into your stomach, causing it to relax.

It is usually effective for a few months and occasionally for a few years, but it has to be repeated. This is usually painless, and can be used for temporary relief in people who are not able to have other treatments.

Surgery

Under general anaesthetic, the muscle fibres in the ring of muscle that lets food into your stomach are cut. This is done using keyhole surgery (laparoscopy) and is called Heller's myotomy.

It can permanently make swallowing easier.

Often a second procedure will be done at the same time to stop you getting acid reflux and heartburn, which can be a side effect of the Heller's myotomy operation. Your surgeon will talk to you about this and any other surgical options which may be the best option for you.

Follow-up treatment

Balloon dilation and surgery can both cause side effects such as acid reflux and heartburn and chest pain. A GP may be able to prescribe medicine to help with this, and your surgeon may suggest you take this medicine routinely.

It's normal for chest pain to persist for a while after treatment.

You should see a GP if you still have swallowing difficulties or are continuing to lose weight after treatment.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "Treatments for achalasia" + }, + { + "position": 1, + "@type": "WebPageElement", + "name": "Information", + "identifier": "3", + "text": "

Read about living with achalasia on the Achalasia Action website

" + } + ], + "description": "", + "hasPart": [ + { + "position": 0, + "identifier": "1", + "text": "

There is no cure for achalasia, but treatment can help relieve the symptoms and make swallowing easier.

Your doctors will talk to you about the risks and benefits of the different treatment options.

Medicine

Medicines, such as nitrates or nifedipine, can help to relax the muscles in your oesophagus. This makes swallowing easier and less painful for some people, although they do not work for everyone.

The effect only lasts for a short time, so medicine may be used to ease symptoms while you wait for a more permanent treatment. They may cause headaches, but this usually improves over time.

Stretching the muscle (balloon dilation)

Under a sedative, or sometimes a general anaesthetic, a balloon is passed into the oesophagus using a long, thin flexible tube (endoscope). The balloon is then inflated to help stretch the ring of muscle that lets food into your stomach.

This improves swallowing for most people, but you may need treatment several times before your symptoms improve.

Balloon dilatation does carry a small risk of tearing the oesophagus (oesophageal rupture), which may require emergency surgery.

Botox injection

Using an endoscope, botox is injected into the ring of muscle that lets food into your stomach, causing it to relax.

It is usually effective for a few months and occasionally for a few years, but it has to be repeated. This is usually painless, and can be used for temporary relief in people who are not able to have other treatments.

Surgery

Under general anaesthetic, the muscle fibres in the ring of muscle that lets food into your stomach are cut. This is done using keyhole surgery (laparoscopy) and is called Heller's myotomy.

It can permanently make swallowing easier.

Often a second procedure will be done at the same time to stop you getting acid reflux and heartburn, which can be a side effect of the Heller's myotomy operation. Your surgeon will talk to you about this and any other surgical options which may be the best option for you.

Follow-up treatment

Balloon dilation and surgery can both cause side effects such as acid reflux and heartburn and chest pain. A GP may be able to prescribe medicine to help with this, and your surgeon may suggest you take this medicine routinely.

It's normal for chest pain to persist for a while after treatment.

You should see a GP if you still have swallowing difficulties or are continuing to lose weight after treatment.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "Treatments for achalasia" + }, + { + "position": 1, + "@type": "WebPageElement", + "name": "Information", + "identifier": "3", + "text": "

Read about living with achalasia on the Achalasia Action website

" + } + ] + } ], "webpage": "https://www.nhs.uk/conditions/achalasia/" } diff --git a/sandbox/responses/conditions-acne-modules-true.json b/sandbox/responses/conditions-acne-modules-true.json index 6c47973..5f7bdbf 100644 --- a/sandbox/responses/conditions-acne-modules-true.json +++ b/sandbox/responses/conditions-acne-modules-true.json @@ -1,334 +1,334 @@ { "about": { - "name": "Acne", - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acne/", - "webpage": "https://www.nhs.uk/conditions/acne/" + "name": "Acne", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acne/", + "webpage": "https://www.nhs.uk/conditions/acne/" }, "modules": [ - { - "@type": "HealthTopicContent", - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acne/#symptoms", - "hasHealthAspect": "http://schema.org/SymptomsHealthAspect", - "headline": "Symptoms of acne", - "description": "The main symptoms of acne are spots on your face, back and chest. Your skin may be oily, or it may be hot or painful to touch.", - "hasPart": [ - { - "@type": "WebPageElement", - "headline": "", - "text": "

Acne most commonly develops on the:

" - }, - { - "@type": "WebPageElement", - "text": "", - "image": [ - { - "@type": "ImageObject", - "name": "Picture of acne spots.", - "url": "https://assets.nhs.uk/nhsuk-cms/images/S_0917_acne_M1080444.max-600x600.jpg", - "caption": "", - "provider": "Science Photo Library", - "license": "

DR P. MARAZZI/SCIENCE PHOTO LIBRARY https://www.sciencephoto.com/media/250116/view

", - "datePublished": "2017-09-21T10:41:58+00:00", - "keywords": [ - "Skin", - "Acne", - "Face", - "Chest", - "skin condition", - "Cysts", - "Spots", - "back", - "dermatology", - "dermatological", - "pustule", - "hormones", - "pustules", - "blackheads", - "whiteheads", - "nodules" - ] - } + { + "@type": "HealthTopicContent", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acne/#symptoms", + "hasHealthAspect": "http://schema.org/SymptomsHealthAspect", + "headline": "Symptoms of acne", + "description": "The main symptoms of acne are spots on your face, back and chest. Your skin may be oily, or it may be hot or painful to touch.", + "hasPart": [ + { + "@type": "WebPageElement", + "headline": "", + "text": "

Acne most commonly develops on the:

" + }, + { + "@type": "WebPageElement", + "text": "", + "image": [ + { + "@type": "ImageObject", + "name": "Picture of acne spots.", + "url": "https://assets.nhs.uk/nhsuk-cms/images/S_0917_acne_M1080444.original.max-600x600.jpg", + "caption": "", + "provider": "Science Photo Library", + "license": "

DR P. MARAZZI/SCIENCE PHOTO LIBRARY https://www.sciencephoto.com/media/250116/view

", + "datePublished": "2017-09-21T10:41:58+00:00", + "keywords": [ + "Skin", + "Acne", + "Face", + "Chest", + "skin condition", + "Cysts", + "Spots", + "back", + "dermatology", + "dermatological", + "pustule", + "hormones", + "pustules", + "blackheads", + "whiteheads", + "nodules" + ] + } + ] + }, + { + "@type": "WebPageElement", + "headline": "Types of spots", + "text": "

There are 6 main types of spot caused by acne:

" + } ] - }, - { - "@type": "WebPageElement", - "headline": "Types of spots", - "text": "

There are 6 main types of spot caused by acne:

" - } - ] - }, - { - "@type": "HealthTopicContent", - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acne/#self-care", - "hasHealthAspect": "http://schema.org/SelfCareHealthAspect", - "headline": "Things you can try if you have acne", - "description": "You can often treat acne with creams and gels bought from a pharmacy. If your acne is severe, a GP may prescribe stronger medicines or antibiotics.", - "hasPart": [ - { - "@type": "WebPageElement", - "headline": "", - "text": "

These self-help techniques may be useful:

Although acne cannot be cured, it can be controlled with treatment.

If you develop mild acne, it's a good idea to speak to a pharmacist for advice.

Several creams, lotions and gels\u00a0for treating spots are available to buy from pharmacies.

Products containing a low concentration of benzoyl peroxide may be recommended, but be careful as this can bleach clothing.

If your acne is severe or appears on your chest and back,\u00a0it may need to be treated with\u00a0antibiotics or stronger creams that are only\u00a0available on prescription.

" - } - ] - }, - { - "@type": "HealthTopicContent", - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acne/#causes", - "hasHealthAspect": "http://schema.org/CausesHealthAspect", - "headline": "Why do I have acne?", - "description": "Acne is often linked to changes in hormone levels during puberty, but can start at any age. It's also known to run in families.", - "hasPart": [ - { - "@type": "WebPageElement", - "headline": "", - "text": "

Acne is most commonly\u00a0linked to the changes in hormone levels during puberty, but can start at any age.

Certain hormones cause\u00a0the grease-producing glands next to hair follicles in the skin to produce larger amounts of oil (abnormal sebum).

This abnormal sebum changes the activity of a usually harmless skin bacterium called P. acnes, which becomes more aggressive and causes inflammation and pus.

The hormones also thicken the inner lining of the hair follicle, causing blockage of the pores. Cleaning the skin does not help to remove this blockage.

Other possible causes

Acne is known to run in families. If both your mother and father had acne, it's likely that you'll also have acne.

Hormonal changes, such as those that occur during the menstrual cycle or pregnancy, can also lead to episodes of acne in women.

There's no evidence that diet, poor hygiene or sexual activity play a role in acne.

" - } - ] - } + }, + { + "@type": "HealthTopicContent", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acne/#self-care", + "hasHealthAspect": "http://schema.org/SelfCareHealthAspect", + "headline": "Things you can try if you have acne", + "description": "You can often treat acne with creams and gels bought from a pharmacy. If your acne is severe, a GP may prescribe stronger medicines or antibiotics.", + "hasPart": [ + { + "@type": "WebPageElement", + "headline": "", + "text": "

These self-help techniques may be useful:

Although acne cannot be cured, it can be controlled with treatment.

If you develop mild acne, it's a good idea to speak to a pharmacist for advice.

Several creams, lotions and gels for treating spots are available to buy from pharmacies.

Products containing a low concentration of benzoyl peroxide may be recommended, but be careful as this can bleach clothing.

If your acne is severe or appears on your chest and back, it may need to be treated with antibiotics or stronger creams that are only available on prescription.

" + } + ] + }, + { + "@type": "HealthTopicContent", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acne/#causes", + "hasHealthAspect": "http://schema.org/CausesHealthAspect", + "headline": "Why do I have acne?", + "description": "Acne is often linked to changes in hormone levels during puberty, but can start at any age. It's also known to run in families.", + "hasPart": [ + { + "@type": "WebPageElement", + "headline": "", + "text": "

Acne is most commonly linked to the changes in hormone levels during puberty, but can start at any age.

Certain hormones cause the grease-producing glands next to hair follicles in the skin to produce larger amounts of oil (abnormal sebum).

This abnormal sebum changes the activity of a usually harmless skin bacterium called P. acnes, which becomes more aggressive and causes inflammation and pus.

The hormones also thicken the inner lining of the hair follicle, causing blockage of the pores. Cleaning the skin does not help to remove this blockage.

Other possible causes

Acne is known to run in families. If both your mother and father had acne, it's likely that you'll also have acne.

Hormonal changes, such as those that occur during the menstrual cycle or pregnancy, can also lead to episodes of acne in women.

There's no evidence that poor hygiene or sexual activity play a role in acne.

" + } + ] + } ], "mainEntityOfPage": [ - { - "identifier": "0", - "name": "section heading", - "position": 0, - "@type": "WebPageElement", - "mainEntityOfPage": [ - { - "position": 0, - "identifier": "1", - "text": "

Acne is a common skin condition that affects most people at some point. It causes spots, oily skin and sometimes skin\u00a0that's hot or painful to touch.

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "description": "", - "hasPart": [ - { - "position": 0, - "identifier": "1", - "text": "

Acne is a common skin condition that affects most people at some point. It causes spots, oily skin and sometimes skin\u00a0that's hot or painful to touch.

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ] - }, - { - "identifier": "0", - "name": "section heading", - "position": 1, - "@type": "WebPageElement", - "mainEntityOfPage": [ - { + { + "identifier": "0", + "name": "section heading", "position": 0, - "identifier": "1", - "text": "

Acne most commonly develops on the:

", "@type": "WebPageElement", - "name": "markdown", - "headline": "" - }, - { - "position": 1, - "identifier": "13", - "@type": "ImageObject", - "name": "Picture of acne spots.", - "url": "https://assets.nhs.uk/nhsuk-cms/images/S_0917_acne_M1080444.max-600x600.jpg", - "caption": "", - "provider": "Science Photo Library", - "datePublished": "2017-09-21T10:41:58+00:00", - "keywords": [ - "Skin", - "Acne", - "Face", - "Chest", - "skin condition", - "Cysts", - "Spots", - "back", - "dermatology", - "dermatological", - "pustule", - "hormones", - "pustules", - "blackheads", - "whiteheads", - "nodules" + "mainEntityOfPage": [ + { + "position": 0, + "identifier": "1", + "text": "

Acne is a common skin condition that affects most people at some point. It causes spots, oily skin and sometimes skin that's hot or painful to touch.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } ], - "credit": "

DR P. MARAZZI/SCIENCE PHOTO LIBRARY https://www.sciencephoto.com/media/250116/view

" - }, - { - "position": 2, - "identifier": "1", - "text": "

There are 6 main types of spot caused by acne:

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "Types of spots" - } - ], - "description": "The main symptoms of acne are spots on your face, back and chest. Your skin may be oily, or it may be hot or painful to touch.", - "hasPart": [ - { - "position": 0, - "identifier": "1", - "text": "

Acne most commonly develops on the:

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "" - }, - { + "description": "", + "hasPart": [ + { + "position": 0, + "identifier": "1", + "text": "

Acne is a common skin condition that affects most people at some point. It causes spots, oily skin and sometimes skin that's hot or painful to touch.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ] + }, + { + "identifier": "0", + "name": "section heading", "position": 1, - "identifier": "13", - "@type": "ImageObject", - "name": "Picture of acne spots.", - "url": "https://assets.nhs.uk/nhsuk-cms/images/S_0917_acne_M1080444.max-600x600.jpg", - "caption": "", - "provider": "Science Photo Library", - "datePublished": "2017-09-21T10:41:58+00:00", - "keywords": [ - "Skin", - "Acne", - "Face", - "Chest", - "skin condition", - "Cysts", - "Spots", - "back", - "dermatology", - "dermatological", - "pustule", - "hormones", - "pustules", - "blackheads", - "whiteheads", - "nodules" + "@type": "WebPageElement", + "mainEntityOfPage": [ + { + "position": 0, + "identifier": "1", + "text": "

Acne most commonly develops on the:

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + }, + { + "position": 1, + "identifier": "13", + "@type": "ImageObject", + "name": "Picture of acne spots.", + "url": "https://assets.nhs.uk/nhsuk-cms/images/S_0917_acne_M1080444.original.max-600x600.jpg", + "caption": "", + "provider": "Science Photo Library", + "datePublished": "2017-09-21T10:41:58+00:00", + "keywords": [ + "Skin", + "Acne", + "Face", + "Chest", + "skin condition", + "Cysts", + "Spots", + "back", + "dermatology", + "dermatological", + "pustule", + "hormones", + "pustules", + "blackheads", + "whiteheads", + "nodules" + ], + "credit": "

DR P. MARAZZI/SCIENCE PHOTO LIBRARY https://www.sciencephoto.com/media/250116/view

" + }, + { + "position": 2, + "identifier": "1", + "text": "

There are 6 main types of spot caused by acne:

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "Types of spots" + } ], - "credit": "

DR P. MARAZZI/SCIENCE PHOTO LIBRARY https://www.sciencephoto.com/media/250116/view

" - }, - { + "description": "The main symptoms of acne are spots on your face, back and chest. Your skin may be oily, or it may be hot or painful to touch.", + "hasPart": [ + { + "position": 0, + "identifier": "1", + "text": "

Acne most commonly develops on the:

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + }, + { + "position": 1, + "identifier": "13", + "@type": "ImageObject", + "name": "Picture of acne spots.", + "url": "https://assets.nhs.uk/nhsuk-cms/images/S_0917_acne_M1080444.original.max-600x600.jpg", + "caption": "", + "provider": "Science Photo Library", + "datePublished": "2017-09-21T10:41:58+00:00", + "keywords": [ + "Skin", + "Acne", + "Face", + "Chest", + "skin condition", + "Cysts", + "Spots", + "back", + "dermatology", + "dermatological", + "pustule", + "hormones", + "pustules", + "blackheads", + "whiteheads", + "nodules" + ], + "credit": "

DR P. MARAZZI/SCIENCE PHOTO LIBRARY https://www.sciencephoto.com/media/250116/view

" + }, + { + "position": 2, + "identifier": "1", + "text": "

There are 6 main types of spot caused by acne:

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "Types of spots" + } + ], + "hasHealthAspect": "http://schema.org/SymptomsHealthAspect", + "headline": "Symptoms of acne" + }, + { + "identifier": "0", + "name": "section heading", "position": 2, - "identifier": "1", - "text": "

There are 6 main types of spot caused by acne:

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "Types of spots" - } - ], - "hasHealthAspect": "http://schema.org/SymptomsHealthAspect", - "headline": "Symptoms of acne" - }, - { - "identifier": "0", - "name": "section heading", - "position": 2, - "@type": "WebPageElement", - "mainEntityOfPage": [ - { - "position": 0, - "identifier": "1", - "text": "

These self-help techniques may be useful:

Although acne cannot be cured, it can be controlled with treatment.

If you develop mild acne, it's a good idea to speak to a pharmacist for advice.

Several creams, lotions and gels\u00a0for treating spots are available to buy from pharmacies.

Products containing a low concentration of benzoyl peroxide may be recommended, but be careful as this can bleach clothing.

If your acne is severe or appears on your chest and back,\u00a0it may need to be treated with\u00a0antibiotics or stronger creams that are only\u00a0available on prescription.

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "description": "You can often treat acne with creams and gels bought from a pharmacy. If your acne is severe, a GP may prescribe stronger medicines or antibiotics.", - "hasPart": [ - { - "position": 0, - "identifier": "1", - "text": "

These self-help techniques may be useful:

Although acne cannot be cured, it can be controlled with treatment.

If you develop mild acne, it's a good idea to speak to a pharmacist for advice.

Several creams, lotions and gels\u00a0for treating spots are available to buy from pharmacies.

Products containing a low concentration of benzoyl peroxide may be recommended, but be careful as this can bleach clothing.

If your acne is severe or appears on your chest and back,\u00a0it may need to be treated with\u00a0antibiotics or stronger creams that are only\u00a0available on prescription.

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "hasHealthAspect": "http://schema.org/SelfCareHealthAspect", - "headline": "Things you can try if you have acne" - }, - { - "identifier": "0", - "name": "section heading", - "position": 3, - "@type": "WebPageElement", - "mainEntityOfPage": [ - { - "position": 0, - "identifier": "1", - "text": "

If you have mild acne, speak to a pharmacist about medicines to treat it.

If these do not control your acne, or it's making you feel very unhappy, see a GP.

You should see a GP if you have moderate or severe acne or you develop nodules or cysts, as they need to be treated properly to avoid scarring.\u00a0

Try to resist the temptation to pick or squeeze the spots, as this can lead to permanent scarring.

Treatments can take several months to work, so do not expect results overnight. Once they do start to work, the results are usually good.

", "@type": "WebPageElement", - "name": "markdown", - "headline": "When to seek medical advice" - } - ], - "description": "", - "hasPart": [ - { - "position": 0, - "identifier": "1", - "text": "

If you have mild acne, speak to a pharmacist about medicines to treat it.

If these do not control your acne, or it's making you feel very unhappy, see a GP.

You should see a GP if you have moderate or severe acne or you develop nodules or cysts, as they need to be treated properly to avoid scarring.\u00a0

Try to resist the temptation to pick or squeeze the spots, as this can lead to permanent scarring.

Treatments can take several months to work, so do not expect results overnight. Once they do start to work, the results are usually good.

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "When to seek medical advice" - } - ] - }, - { - "identifier": "0", - "name": "section heading", - "position": 4, - "@type": "WebPageElement", - "mainEntityOfPage": [ - { - "position": 0, - "identifier": "1", - "text": "

Acne is most commonly\u00a0linked to the changes in hormone levels during puberty, but can start at any age.

Certain hormones cause\u00a0the grease-producing glands next to hair follicles in the skin to produce larger amounts of oil (abnormal sebum).

This abnormal sebum changes the activity of a usually harmless skin bacterium called P. acnes, which becomes more aggressive and causes inflammation and pus.

The hormones also thicken the inner lining of the hair follicle, causing blockage of the pores. Cleaning the skin does not help to remove this blockage.

Other possible causes

Acne is known to run in families. If both your mother and father had acne, it's likely that you'll also have acne.

Hormonal changes, such as those that occur during the menstrual cycle or pregnancy, can also lead to episodes of acne in women.

There's no evidence that diet, poor hygiene or sexual activity play a role in acne.

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "description": "Acne is often linked to changes in hormone levels during puberty, but can start at any age. It's also known to run in families.", - "hasPart": [ - { - "position": 0, - "identifier": "1", - "text": "

Acne is most commonly\u00a0linked to the changes in hormone levels during puberty, but can start at any age.

Certain hormones cause\u00a0the grease-producing glands next to hair follicles in the skin to produce larger amounts of oil (abnormal sebum).

This abnormal sebum changes the activity of a usually harmless skin bacterium called P. acnes, which becomes more aggressive and causes inflammation and pus.

The hormones also thicken the inner lining of the hair follicle, causing blockage of the pores. Cleaning the skin does not help to remove this blockage.

Other possible causes

Acne is known to run in families. If both your mother and father had acne, it's likely that you'll also have acne.

Hormonal changes, such as those that occur during the menstrual cycle or pregnancy, can also lead to episodes of acne in women.

There's no evidence that diet, poor hygiene or sexual activity play a role in acne.

", + "mainEntityOfPage": [ + { + "position": 0, + "identifier": "1", + "text": "

These self-help techniques may be useful:

Although acne cannot be cured, it can be controlled with treatment.

If you develop mild acne, it's a good idea to speak to a pharmacist for advice.

Several creams, lotions and gels for treating spots are available to buy from pharmacies.

Products containing a low concentration of benzoyl peroxide may be recommended, but be careful as this can bleach clothing.

If your acne is severe or appears on your chest and back, it may need to be treated with antibiotics or stronger creams that are only available on prescription.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "description": "You can often treat acne with creams and gels bought from a pharmacy. If your acne is severe, a GP may prescribe stronger medicines or antibiotics.", + "hasPart": [ + { + "position": 0, + "identifier": "1", + "text": "

These self-help techniques may be useful:

Although acne cannot be cured, it can be controlled with treatment.

If you develop mild acne, it's a good idea to speak to a pharmacist for advice.

Several creams, lotions and gels for treating spots are available to buy from pharmacies.

Products containing a low concentration of benzoyl peroxide may be recommended, but be careful as this can bleach clothing.

If your acne is severe or appears on your chest and back, it may need to be treated with antibiotics or stronger creams that are only available on prescription.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "hasHealthAspect": "http://schema.org/SelfCareHealthAspect", + "headline": "Things you can try if you have acne" + }, + { + "identifier": "0", + "name": "section heading", + "position": 3, "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "hasHealthAspect": "http://schema.org/CausesHealthAspect", - "headline": "Why do I have acne?" - }, - { - "identifier": "0", - "name": "section heading", - "position": 5, - "@type": "WebPageElement", - "mainEntityOfPage": [ - { - "position": 0, - "identifier": "1", - "text": "

Acne is very common in teenagers and younger adults. About 95% of people aged 11\u00a0to 30\u00a0are affected by acne to some extent.

Acne is most common in girls from the ages of 14\u00a0to 17, and in boys from the ages of 16\u00a0to 19.

Most people have acne on and off for several years before their symptoms start to improve as they get older.

Acne often disappears when a person is in their mid-20s.

In some cases, acne can continue into adult life. About 3% of adults have acne over the age of 35.

", + "mainEntityOfPage": [ + { + "position": 0, + "identifier": "1", + "text": "

If you have mild acne, speak to a pharmacist about medicines to treat it.

If these do not control your acne, or it's making you feel very unhappy, see a GP.

You should see a GP if you have moderate or severe acne or you develop nodules or cysts, as they need to be treated properly to avoid scarring. 

Try to resist the temptation to pick or squeeze the spots, as this can lead to permanent scarring.

Treatments can take several months to work, so do not expect results overnight. Once they do start to work, the results are usually good.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "When to seek medical advice" + } + ], + "description": "", + "hasPart": [ + { + "position": 0, + "identifier": "1", + "text": "

If you have mild acne, speak to a pharmacist about medicines to treat it.

If these do not control your acne, or it's making you feel very unhappy, see a GP.

You should see a GP if you have moderate or severe acne or you develop nodules or cysts, as they need to be treated properly to avoid scarring. 

Try to resist the temptation to pick or squeeze the spots, as this can lead to permanent scarring.

Treatments can take several months to work, so do not expect results overnight. Once they do start to work, the results are usually good.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "When to seek medical advice" + } + ] + }, + { + "identifier": "0", + "name": "section heading", + "position": 4, "@type": "WebPageElement", - "name": "markdown", - "headline": "Who's affected?" - } - ], - "description": "", - "hasPart": [ - { - "position": 0, - "identifier": "1", - "text": "

Acne is very common in teenagers and younger adults. About 95% of people aged 11\u00a0to 30\u00a0are affected by acne to some extent.

Acne is most common in girls from the ages of 14\u00a0to 17, and in boys from the ages of 16\u00a0to 19.

Most people have acne on and off for several years before their symptoms start to improve as they get older.

Acne often disappears when a person is in their mid-20s.

In some cases, acne can continue into adult life. About 3% of adults have acne over the age of 35.

", + "mainEntityOfPage": [ + { + "position": 0, + "identifier": "1", + "text": "

Acne is most commonly linked to the changes in hormone levels during puberty, but can start at any age.

Certain hormones cause the grease-producing glands next to hair follicles in the skin to produce larger amounts of oil (abnormal sebum).

This abnormal sebum changes the activity of a usually harmless skin bacterium called P. acnes, which becomes more aggressive and causes inflammation and pus.

The hormones also thicken the inner lining of the hair follicle, causing blockage of the pores. Cleaning the skin does not help to remove this blockage.

Other possible causes

Acne is known to run in families. If both your mother and father had acne, it's likely that you'll also have acne.

Hormonal changes, such as those that occur during the menstrual cycle or pregnancy, can also lead to episodes of acne in women.

There's no evidence that poor hygiene or sexual activity play a role in acne.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "description": "Acne is often linked to changes in hormone levels during puberty, but can start at any age. It's also known to run in families.", + "hasPart": [ + { + "position": 0, + "identifier": "1", + "text": "

Acne is most commonly linked to the changes in hormone levels during puberty, but can start at any age.

Certain hormones cause the grease-producing glands next to hair follicles in the skin to produce larger amounts of oil (abnormal sebum).

This abnormal sebum changes the activity of a usually harmless skin bacterium called P. acnes, which becomes more aggressive and causes inflammation and pus.

The hormones also thicken the inner lining of the hair follicle, causing blockage of the pores. Cleaning the skin does not help to remove this blockage.

Other possible causes

Acne is known to run in families. If both your mother and father had acne, it's likely that you'll also have acne.

Hormonal changes, such as those that occur during the menstrual cycle or pregnancy, can also lead to episodes of acne in women.

There's no evidence that poor hygiene or sexual activity play a role in acne.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "hasHealthAspect": "http://schema.org/CausesHealthAspect", + "headline": "Why do I have acne?" + }, + { + "identifier": "0", + "name": "section heading", + "position": 5, "@type": "WebPageElement", - "name": "markdown", - "headline": "Who's affected?" - } - ] - } + "mainEntityOfPage": [ + { + "position": 0, + "identifier": "1", + "text": "

Acne is very common in teenagers and younger adults. About 95% of people aged 11 to 30 are affected by acne to some extent.

Acne is most common in girls from the ages of 14 to 17, and in boys from the ages of 16 to 19.

Most people have acne on and off for several years before their symptoms start to improve as they get older.

Acne often disappears when a person is in their mid-20s.

In some cases, acne can continue into adult life. About 3% of adults have acne over the age of 35.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "Who's affected?" + } + ], + "description": "", + "hasPart": [ + { + "position": 0, + "identifier": "1", + "text": "

Acne is very common in teenagers and younger adults. About 95% of people aged 11 to 30 are affected by acne to some extent.

Acne is most common in girls from the ages of 14 to 17, and in boys from the ages of 16 to 19.

Most people have acne on and off for several years before their symptoms start to improve as they get older.

Acne often disappears when a person is in their mid-20s.

In some cases, acne can continue into adult life. About 3% of adults have acne over the age of 35.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "Who's affected?" + } + ] + } ], "alternativeHeadline": "Overview", "keywords": [] diff --git a/sandbox/responses/conditions-acne-no-params.json b/sandbox/responses/conditions-acne-no-params.json index 3186355..d7f6a2d 100644 --- a/sandbox/responses/conditions-acne-no-params.json +++ b/sandbox/responses/conditions-acne-no-params.json @@ -2,441 +2,474 @@ "@context": "http://schema.org", "@type": "MedicalWebPage", "name": "Acne", - "copyrightHolder": { "name": "Crown Copyright", "@type": "Organization" }, + "copyrightHolder": { + "name": "Crown Copyright", + "@type": "Organization" + }, "license": "https://developer.api.nhs.uk/terms", "author": { - "url": "https://www.nhs.uk", - "logo": "https://assets.nhs.uk/nhsuk-cms/images/nhs-attribution.width-510.png", - "email": "nhswebsite.servicedesk@nhs.net", - "@type": "Organization", - "name": "NHS website" + "url": "https://www.nhs.uk", + "logo": "https://assets.nhs.uk/nhsuk-cms/images/nhs-attribution.width-510.png", + "email": "nhswebsite.servicedesk@nhs.net", + "@type": "Organization", + "name": "NHS website" + }, + "about": { + "@type": "WebPage", + "name": "Acne", + "alternateName": "" }, - "about": { "@type": "WebPage", "name": "Acne", "alternateName": "" }, "description": "Acne is a common skin condition that affects most people at some point. It causes spots, oily skin and sometimes skin that's hot or painful to touch.", "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acne/", - "genre": ["Condition"], + "genre": [ + "Condition" + ], "keywords": [], - "dateModified": "2023-01-04T15:58:59+00:00", - "lastReviewed": ["2023-01-03T01:00:00+00:00", "2026-01-03T01:00:00+00:00"], + "dateModified": "2024-02-08T11:28:35+00:00", + "lastReviewed": [ + "2023-01-03T01:00:00+00:00", + "2026-01-03T01:00:00+00:00" + ], "breadcrumb": { - "@context": "http://schema.org", - "@type": "BreadcrumbList", - "itemListElement": [ + "@context": "http://schema.org", + "@type": "BreadcrumbList", + "itemListElement": [ + { + "@type": "ListItem", + "position": 0, + "item": { + "@id": "https://api.service.nhs.uk/nhs-website-content/conditions/", + "name": "Conditions A to Z", + "genre": [] + } + }, + { + "@type": "ListItem", + "position": 1, + "item": { + "@id": "https://api.service.nhs.uk/nhs-website-content/conditions/acne/", + "name": "Acne", + "genre": [ + "Condition" + ] + } + } + ] + }, + "hasPart": [ { - "@type": "ListItem", - "position": 0, - "item": { "@id": "https://api.service.nhs.uk/nhs-website-content/conditions/", "name": "Health A to Z", "genre": [] } + "@type": "HealthTopicContent", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acne/#symptoms", + "hasHealthAspect": "http://schema.org/SymptomsHealthAspect", + "headline": "Symptoms of acne", + "description": "The main symptoms of acne are spots on your face, back and chest. Your skin may be oily, or it may be hot or painful to touch.", + "hasPart": [ + { + "@type": "WebPageElement", + "headline": "", + "text": "

Acne most commonly develops on the:

" + }, + { + "@type": "WebPageElement", + "text": "", + "image": [ + { + "@type": "ImageObject", + "name": "Picture of acne spots.", + "url": "https://assets.nhs.uk/nhsuk-cms/images/S_0917_acne_M1080444.original.max-600x600.jpg", + "caption": "", + "provider": "Science Photo Library", + "license": "

DR P. MARAZZI/SCIENCE PHOTO LIBRARY https://www.sciencephoto.com/media/250116/view

", + "datePublished": "2017-09-21T10:41:58+00:00", + "keywords": [ + "Skin", + "Acne", + "Face", + "Chest", + "skin condition", + "Cysts", + "Spots", + "back", + "dermatology", + "dermatological", + "pustule", + "hormones", + "pustules", + "blackheads", + "whiteheads", + "nodules" + ] + } + ] + }, + { + "@type": "WebPageElement", + "headline": "Types of spots", + "text": "

There are 6 main types of spot caused by acne:

" + } + ] }, { - "@type": "ListItem", - "position": 1, - "item": { - "@id": "https://api.service.nhs.uk/nhs-website-content/conditions/acne/", - "name": "Acne", - "genre": ["Condition"] - } - } - ] - }, - "hasPart": [ - { - "@type": "HealthTopicContent", - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acne/#symptoms", - "hasHealthAspect": "http://schema.org/SymptomsHealthAspect", - "headline": "Symptoms of acne", - "description": "The main symptoms of acne are spots on your face, back and chest. Your skin may be oily, or it may be hot or painful to touch.", - "hasPart": [ - { - "@type": "WebPageElement", - "headline": "", - "text": "

Acne most commonly develops on the:

" - }, - { - "@type": "WebPageElement", - "text": "", - "image": [ - { - "@type": "ImageObject", - "name": "Picture of acne spots.", - "url": "https://assets.nhs.uk/nhsuk-cms/images/S_0917_acne_M1080444.max-600x600.jpg", - "caption": "", - "provider": "Science Photo Library", - "license": "

DR P. MARAZZI/SCIENCE PHOTO LIBRARY https://www.sciencephoto.com/media/250116/view

", - "datePublished": "2017-09-21T10:41:58+00:00", - "keywords": [ - "Skin", - "Acne", - "Face", - "Chest", - "skin condition", - "Cysts", - "Spots", - "back", - "dermatology", - "dermatological", - "pustule", - "hormones", - "pustules", - "blackheads", - "whiteheads", - "nodules" - ] - } + "@type": "HealthTopicContent", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acne/#self-care", + "hasHealthAspect": "http://schema.org/SelfCareHealthAspect", + "headline": "Things you can try if you have acne", + "description": "You can often treat acne with creams and gels bought from a pharmacy. If your acne is severe, a GP may prescribe stronger medicines or antibiotics.", + "hasPart": [ + { + "@type": "WebPageElement", + "headline": "", + "text": "

These self-help techniques may be useful:

Although acne cannot be cured, it can be controlled with treatment.

If you develop mild acne, it's a good idea to speak to a pharmacist for advice.

Several creams, lotions and gels for treating spots are available to buy from pharmacies.

Products containing a low concentration of benzoyl peroxide may be recommended, but be careful as this can bleach clothing.

If your acne is severe or appears on your chest and back, it may need to be treated with antibiotics or stronger creams that are only available on prescription.

" + } ] - }, - { - "@type": "WebPageElement", - "headline": "Types of spots", - "text": "

There are 6 main types of spot caused by acne:

" - } - ] - }, - { - "@type": "HealthTopicContent", - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acne/#self-care", - "hasHealthAspect": "http://schema.org/SelfCareHealthAspect", - "headline": "Things you can try if you have acne", - "description": "You can often treat acne with creams and gels bought from a pharmacy. If your acne is severe, a GP may prescribe stronger medicines or antibiotics.", - "hasPart": [ - { - "@type": "WebPageElement", - "headline": "", - "text": "

These self-help techniques may be useful:

Although acne cannot be cured, it can be controlled with treatment.

If you develop mild acne, it's a good idea to speak to a pharmacist for advice.

Several creams, lotions and gels\u00a0for treating spots are available to buy from pharmacies.

Products containing a low concentration of benzoyl peroxide may be recommended, but be careful as this can bleach clothing.

If your acne is severe or appears on your chest and back,\u00a0it may need to be treated with\u00a0antibiotics or stronger creams that are only\u00a0available on prescription.

" - } - ] - }, - { - "@type": "HealthTopicContent", - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acne/#causes", - "hasHealthAspect": "http://schema.org/CausesHealthAspect", - "headline": "Why do I have acne?", - "description": "Acne is often linked to changes in hormone levels during puberty, but can start at any age. It's also known to run in families.", - "hasPart": [ - { - "@type": "WebPageElement", - "headline": "", - "text": "

Acne is most commonly\u00a0linked to the changes in hormone levels during puberty, but can start at any age.

Certain hormones cause\u00a0the grease-producing glands next to hair follicles in the skin to produce larger amounts of oil (abnormal sebum).

This abnormal sebum changes the activity of a usually harmless skin bacterium called P. acnes, which becomes more aggressive and causes inflammation and pus.

The hormones also thicken the inner lining of the hair follicle, causing blockage of the pores. Cleaning the skin does not help to remove this blockage.

Other possible causes

Acne is known to run in families. If both your mother and father had acne, it's likely that you'll also have acne.

Hormonal changes, such as those that occur during the menstrual cycle or pregnancy, can also lead to episodes of acne in women.

There's no evidence that diet, poor hygiene or sexual activity play a role in acne.

" - } - ] - }, - { - "@type": "HealthTopicContent", - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acne/#overview", - "hasHealthAspect": "http://schema.org/OverviewHealthAspect", - "headline": "", - "description": "Acne is a common skin condition that causes spots and oily skin.", - "hasPart": [ - { - "text": "

The main symptoms of acne are spots on your face, back and chest. Your skin may be oily, or it may be hot or painful to touch.

", - "@type": "WebPageElement" - }, - { - "text": "

You can often treat acne with creams and gels bought from a pharmacy. If your acne is severe, a GP may prescribe stronger medicines or antibiotics.

", - "@type": "WebPageElement" - }, - { - "text": "

Acne is often linked to changes in hormone levels during puberty, but can start at any age. It's also known to run in families.

", - "@type": "WebPageElement" - } - ] - }, - { - "@type": "HealthTopicContent", - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acne/treatment/#medical-treatments", - "hasHealthAspect": "http://schema.org/TreatmentsHealthAspect", - "headline": "Treatments from a GP", - "description": "You can often treat acne with creams and gels bought from a pharmacy. If your acne is severe, a GP may prescribe stronger medicines or antibiotics.", - "hasPart": [ - { - "@type": "WebPageElement", + }, + { + "@type": "HealthTopicContent", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acne/#causes", + "hasHealthAspect": "http://schema.org/CausesHealthAspect", + "headline": "Why do I have acne?", + "description": "Acne is often linked to changes in hormone levels during puberty, but can start at any age. It's also known to run in families.", + "hasPart": [ + { + "@type": "WebPageElement", + "headline": "", + "text": "

Acne is most commonly linked to the changes in hormone levels during puberty, but can start at any age.

Certain hormones cause the grease-producing glands next to hair follicles in the skin to produce larger amounts of oil (abnormal sebum).

This abnormal sebum changes the activity of a usually harmless skin bacterium called P. acnes, which becomes more aggressive and causes inflammation and pus.

The hormones also thicken the inner lining of the hair follicle, causing blockage of the pores. Cleaning the skin does not help to remove this blockage.

Other possible causes

Acne is known to run in families. If both your mother and father had acne, it's likely that you'll also have acne.

Hormonal changes, such as those that occur during the menstrual cycle or pregnancy, can also lead to episodes of acne in women.

There's no evidence that poor hygiene or sexual activity play a role in acne.

" + } + ] + }, + { + "@type": "HealthTopicContent", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acne/#overview", + "hasHealthAspect": "http://schema.org/OverviewHealthAspect", "headline": "", - "text": "

See a GP if your acne is moderate or severe,\u00a0or medicine from your pharmacy has not worked, as you probably need prescription medicine.

Prescription medicines that can be used to treat acne include:

If you have severe acne, or prescription medicines are not working, your GP can refer you to an expert in treating skin conditions (dermatologist).

For example, if:

For mild to moderate or moderate to severe acne, you\u2019ll usually be started on a combination of topical treatments, or antibiotic tablets combined with topical treatments.

Hormonal therapies or the combined oral contraceptive pill can also be effective in women who have acne.

But the\u00a0progestogen-only pill or\u00a0contraceptive implant can sometimes make acne worse.

Many of these treatments can take 2 to 3 months before they start to work.

It's important to be patient and persist with a recommended treatment, even if\u00a0there's no immediate effect.

" - } - ] - } + "description": "Acne is a common skin condition that causes spots and oily skin.", + "hasPart": [ + { + "@type": "WebPageElement", + "headline": "Acne", + "text": "Symptoms" + }, + { + "@type": "WebPageElement", + "headline": "Treatment", + "text": "Medical treatments" + }, + { + "@type": "WebPageElement", + "headline": "Acne", + "text": "Causes" + }, + { + "text": "

The main symptoms of acne are spots on your face, back and chest. Your skin may be oily, or it may be hot or painful to touch.

", + "@type": "WebPageElement" + }, + { + "text": "

You can often treat acne with creams and gels bought from a pharmacy. If your acne is severe, a GP may prescribe stronger medicines or antibiotics.

", + "@type": "WebPageElement" + }, + { + "text": "

Acne is often linked to changes in hormone levels during puberty, but can start at any age. It's also known to run in families.

", + "@type": "WebPageElement" + } + ] + }, + { + "@type": "HealthTopicContent", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acne/treatment/#medical-treatments", + "hasHealthAspect": "http://schema.org/TreatmentsHealthAspect", + "headline": "Treatments from a GP", + "description": "You can often treat acne with creams and gels bought from a pharmacy. If your acne is severe, a GP may prescribe stronger medicines or antibiotics.", + "hasPart": [ + { + "@type": "WebPageElement", + "headline": "", + "text": "

See a GP if your acne is moderate or severe, or medicine from your pharmacy has not worked, as you probably need prescription medicine.

Prescription medicines that can be used to treat acne include:

If you have severe acne, or prescription medicines are not working, your GP can refer you to an expert in treating skin conditions (dermatologist).

For example, if:

For mild to moderate or moderate to severe acne, you’ll usually be started on a combination of topical treatments, or antibiotic tablets combined with topical treatments.

Hormonal therapies or the combined oral contraceptive pill can also be effective in women who have acne.

But the progestogen-only pill or contraceptive implant can sometimes make acne worse.

Many of these treatments can take 2 to 3 months before they start to work.

It's important to be patient and persist with a recommended treatment, even if there's no immediate effect.

" + } + ] + } ], "relatedLink": [ - { - "@type": "LinkRole", - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acne/", - "linkRelationship": "Navigation", - "position": 0, - "name": "Acne", - "alternativeHeadline": "Overview" - }, - { - "@type": "LinkRole", - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acne/causes/", - "linkRelationship": "Navigation", - "position": 1, - "name": "Causes" - }, - { - "@type": "LinkRole", - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acne/diagnosis/", - "linkRelationship": "Navigation", - "position": 2, - "name": "Diagnosis" - }, - { - "@type": "LinkRole", - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acne/treatment/", - "linkRelationship": "Navigation", - "position": 3, - "name": "Treatment" - }, - { - "@type": "LinkRole", - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acne/complications/", - "linkRelationship": "Navigation", - "position": 4, - "name": "Complications" - } + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acne/", + "linkRelationship": "Navigation", + "position": 0, + "name": "Acne", + "alternativeHeadline": "Overview" + }, + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acne/causes/", + "linkRelationship": "Navigation", + "position": 1, + "name": "Causes" + }, + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acne/diagnosis/", + "linkRelationship": "Navigation", + "position": 2, + "name": "Diagnosis" + }, + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acne/treatment/", + "linkRelationship": "Navigation", + "position": 3, + "name": "Treatment" + }, + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acne/complications/", + "linkRelationship": "Navigation", + "position": 4, + "name": "Complications" + } ], "contentSubTypes": [], "mainEntityOfPage": [ - { - "identifier": "0", - "name": "section heading", - "position": 0, - "@type": "WebPageElement", - "mainEntityOfPage": [ - { - "position": 0, - "identifier": "1", - "text": "

Acne is a common skin condition that affects most people at some point. It causes spots, oily skin and sometimes skin\u00a0that's hot or painful to touch.

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "description": "", - "hasPart": [ - { - "position": 0, - "identifier": "1", - "text": "

Acne is a common skin condition that affects most people at some point. It causes spots, oily skin and sometimes skin\u00a0that's hot or painful to touch.

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ] - }, - { - "identifier": "0", - "name": "section heading", - "position": 1, - "@type": "WebPageElement", - "mainEntityOfPage": [ - { + { + "identifier": "0", + "name": "section heading", "position": 0, - "identifier": "1", - "text": "

Acne most commonly develops on the:

", "@type": "WebPageElement", - "name": "markdown", - "headline": "" - }, - { - "position": 1, - "identifier": "13", - "@type": "ImageObject", - "name": "Picture of acne spots.", - "url": "https://assets.nhs.uk/nhsuk-cms/images/S_0917_acne_M1080444.max-600x600.jpg", - "caption": "", - "provider": "Science Photo Library", - "datePublished": "2017-09-21T10:41:58+00:00", - "keywords": [ - "Skin", - "Acne", - "Face", - "Chest", - "skin condition", - "Cysts", - "Spots", - "back", - "dermatology", - "dermatological", - "pustule", - "hormones", - "pustules", - "blackheads", - "whiteheads", - "nodules" + "mainEntityOfPage": [ + { + "position": 0, + "identifier": "1", + "text": "

Acne is a common skin condition that affects most people at some point. It causes spots, oily skin and sometimes skin that's hot or painful to touch.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } ], - "credit": "

DR P. MARAZZI/SCIENCE PHOTO LIBRARY https://www.sciencephoto.com/media/250116/view

" - }, - { - "position": 2, - "identifier": "1", - "text": "

There are 6 main types of spot caused by acne:

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "Types of spots" - } - ], - "description": "The main symptoms of acne are spots on your face, back and chest. Your skin may be oily, or it may be hot or painful to touch.", - "hasPart": [ - { - "position": 0, - "identifier": "1", - "text": "

Acne most commonly develops on the:

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "" - }, - { + "description": "", + "hasPart": [ + { + "position": 0, + "identifier": "1", + "text": "

Acne is a common skin condition that affects most people at some point. It causes spots, oily skin and sometimes skin that's hot or painful to touch.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ] + }, + { + "identifier": "0", + "name": "section heading", "position": 1, - "identifier": "13", - "@type": "ImageObject", - "name": "Picture of acne spots.", - "url": "https://assets.nhs.uk/nhsuk-cms/images/S_0917_acne_M1080444.max-600x600.jpg", - "caption": "", - "provider": "Science Photo Library", - "datePublished": "2017-09-21T10:41:58+00:00", - "keywords": [ - "Skin", - "Acne", - "Face", - "Chest", - "skin condition", - "Cysts", - "Spots", - "back", - "dermatology", - "dermatological", - "pustule", - "hormones", - "pustules", - "blackheads", - "whiteheads", - "nodules" + "@type": "WebPageElement", + "mainEntityOfPage": [ + { + "position": 0, + "identifier": "1", + "text": "

Acne most commonly develops on the:

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + }, + { + "position": 1, + "identifier": "13", + "@type": "ImageObject", + "name": "Picture of acne spots.", + "url": "https://assets.nhs.uk/nhsuk-cms/images/S_0917_acne_M1080444.original.max-600x600.jpg", + "caption": "", + "provider": "Science Photo Library", + "datePublished": "2017-09-21T10:41:58+00:00", + "keywords": [ + "Skin", + "Acne", + "Face", + "Chest", + "skin condition", + "Cysts", + "Spots", + "back", + "dermatology", + "dermatological", + "pustule", + "hormones", + "pustules", + "blackheads", + "whiteheads", + "nodules" + ], + "credit": "

DR P. MARAZZI/SCIENCE PHOTO LIBRARY https://www.sciencephoto.com/media/250116/view

" + }, + { + "position": 2, + "identifier": "1", + "text": "

There are 6 main types of spot caused by acne:

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "Types of spots" + } + ], + "description": "The main symptoms of acne are spots on your face, back and chest. Your skin may be oily, or it may be hot or painful to touch.", + "hasPart": [ + { + "position": 0, + "identifier": "1", + "text": "

Acne most commonly develops on the:

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + }, + { + "position": 1, + "identifier": "13", + "@type": "ImageObject", + "name": "Picture of acne spots.", + "url": "https://assets.nhs.uk/nhsuk-cms/images/S_0917_acne_M1080444.original.max-600x600.jpg", + "caption": "", + "provider": "Science Photo Library", + "datePublished": "2017-09-21T10:41:58+00:00", + "keywords": [ + "Skin", + "Acne", + "Face", + "Chest", + "skin condition", + "Cysts", + "Spots", + "back", + "dermatology", + "dermatological", + "pustule", + "hormones", + "pustules", + "blackheads", + "whiteheads", + "nodules" + ], + "credit": "

DR P. MARAZZI/SCIENCE PHOTO LIBRARY https://www.sciencephoto.com/media/250116/view

" + }, + { + "position": 2, + "identifier": "1", + "text": "

There are 6 main types of spot caused by acne:

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "Types of spots" + } ], - "credit": "

DR P. MARAZZI/SCIENCE PHOTO LIBRARY https://www.sciencephoto.com/media/250116/view

" - }, - { + "hasHealthAspect": "http://schema.org/SymptomsHealthAspect", + "headline": "Symptoms of acne" + }, + { + "identifier": "0", + "name": "section heading", "position": 2, - "identifier": "1", - "text": "

There are 6 main types of spot caused by acne:

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "Types of spots" - } - ], - "hasHealthAspect": "http://schema.org/SymptomsHealthAspect", - "headline": "Symptoms of acne" - }, - { - "identifier": "0", - "name": "section heading", - "position": 2, - "@type": "WebPageElement", - "mainEntityOfPage": [ - { - "position": 0, - "identifier": "1", - "text": "

These self-help techniques may be useful:

Although acne cannot be cured, it can be controlled with treatment.

If you develop mild acne, it's a good idea to speak to a pharmacist for advice.

Several creams, lotions and gels\u00a0for treating spots are available to buy from pharmacies.

Products containing a low concentration of benzoyl peroxide may be recommended, but be careful as this can bleach clothing.

If your acne is severe or appears on your chest and back,\u00a0it may need to be treated with\u00a0antibiotics or stronger creams that are only\u00a0available on prescription.

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "description": "You can often treat acne with creams and gels bought from a pharmacy. If your acne is severe, a GP may prescribe stronger medicines or antibiotics.", - "hasPart": [ - { - "position": 0, - "identifier": "1", - "text": "

These self-help techniques may be useful:

Although acne cannot be cured, it can be controlled with treatment.

If you develop mild acne, it's a good idea to speak to a pharmacist for advice.

Several creams, lotions and gels\u00a0for treating spots are available to buy from pharmacies.

Products containing a low concentration of benzoyl peroxide may be recommended, but be careful as this can bleach clothing.

If your acne is severe or appears on your chest and back,\u00a0it may need to be treated with\u00a0antibiotics or stronger creams that are only\u00a0available on prescription.

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "hasHealthAspect": "http://schema.org/SelfCareHealthAspect", - "headline": "Things you can try if you have acne" - }, - { - "identifier": "0", - "name": "section heading", - "position": 3, - "@type": "WebPageElement", - "mainEntityOfPage": [ - { - "position": 0, - "identifier": "1", - "text": "

If you have mild acne, speak to a pharmacist about medicines to treat it.

If these do not control your acne, or it's making you feel very unhappy, see a GP.

You should see a GP if you have moderate or severe acne or you develop nodules or cysts, as they need to be treated properly to avoid scarring.\u00a0

Try to resist the temptation to pick or squeeze the spots, as this can lead to permanent scarring.

Treatments can take several months to work, so do not expect results overnight. Once they do start to work, the results are usually good.

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "When to seek medical advice" - } - ], - "description": "", - "hasPart": [ - { - "position": 0, - "identifier": "1", - "text": "

If you have mild acne, speak to a pharmacist about medicines to treat it.

If these do not control your acne, or it's making you feel very unhappy, see a GP.

You should see a GP if you have moderate or severe acne or you develop nodules or cysts, as they need to be treated properly to avoid scarring.\u00a0

Try to resist the temptation to pick or squeeze the spots, as this can lead to permanent scarring.

Treatments can take several months to work, so do not expect results overnight. Once they do start to work, the results are usually good.

", "@type": "WebPageElement", - "name": "markdown", - "headline": "When to seek medical advice" - } - ] - }, - { - "identifier": "0", - "name": "section heading", - "position": 4, - "@type": "WebPageElement", - "mainEntityOfPage": [ - { - "position": 0, - "identifier": "1", - "text": "

Acne is most commonly\u00a0linked to the changes in hormone levels during puberty, but can start at any age.

Certain hormones cause\u00a0the grease-producing glands next to hair follicles in the skin to produce larger amounts of oil (abnormal sebum).

This abnormal sebum changes the activity of a usually harmless skin bacterium called P. acnes, which becomes more aggressive and causes inflammation and pus.

The hormones also thicken the inner lining of the hair follicle, causing blockage of the pores. Cleaning the skin does not help to remove this blockage.

Other possible causes

Acne is known to run in families. If both your mother and father had acne, it's likely that you'll also have acne.

Hormonal changes, such as those that occur during the menstrual cycle or pregnancy, can also lead to episodes of acne in women.

There's no evidence that diet, poor hygiene or sexual activity play a role in acne.

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "description": "Acne is often linked to changes in hormone levels during puberty, but can start at any age. It's also known to run in families.", - "hasPart": [ - { - "position": 0, - "identifier": "1", - "text": "

Acne is most commonly\u00a0linked to the changes in hormone levels during puberty, but can start at any age.

Certain hormones cause\u00a0the grease-producing glands next to hair follicles in the skin to produce larger amounts of oil (abnormal sebum).

This abnormal sebum changes the activity of a usually harmless skin bacterium called P. acnes, which becomes more aggressive and causes inflammation and pus.

The hormones also thicken the inner lining of the hair follicle, causing blockage of the pores. Cleaning the skin does not help to remove this blockage.

Other possible causes

Acne is known to run in families. If both your mother and father had acne, it's likely that you'll also have acne.

Hormonal changes, such as those that occur during the menstrual cycle or pregnancy, can also lead to episodes of acne in women.

There's no evidence that diet, poor hygiene or sexual activity play a role in acne.

", + "mainEntityOfPage": [ + { + "position": 0, + "identifier": "1", + "text": "

These self-help techniques may be useful:

Although acne cannot be cured, it can be controlled with treatment.

If you develop mild acne, it's a good idea to speak to a pharmacist for advice.

Several creams, lotions and gels for treating spots are available to buy from pharmacies.

Products containing a low concentration of benzoyl peroxide may be recommended, but be careful as this can bleach clothing.

If your acne is severe or appears on your chest and back, it may need to be treated with antibiotics or stronger creams that are only available on prescription.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "description": "You can often treat acne with creams and gels bought from a pharmacy. If your acne is severe, a GP may prescribe stronger medicines or antibiotics.", + "hasPart": [ + { + "position": 0, + "identifier": "1", + "text": "

These self-help techniques may be useful:

Although acne cannot be cured, it can be controlled with treatment.

If you develop mild acne, it's a good idea to speak to a pharmacist for advice.

Several creams, lotions and gels for treating spots are available to buy from pharmacies.

Products containing a low concentration of benzoyl peroxide may be recommended, but be careful as this can bleach clothing.

If your acne is severe or appears on your chest and back, it may need to be treated with antibiotics or stronger creams that are only available on prescription.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "hasHealthAspect": "http://schema.org/SelfCareHealthAspect", + "headline": "Things you can try if you have acne" + }, + { + "identifier": "0", + "name": "section heading", + "position": 3, "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "hasHealthAspect": "http://schema.org/CausesHealthAspect", - "headline": "Why do I have acne?" - }, - { - "identifier": "0", - "name": "section heading", - "position": 5, - "@type": "WebPageElement", - "mainEntityOfPage": [ - { - "position": 0, - "identifier": "1", - "text": "

Acne is very common in teenagers and younger adults. About 95% of people aged 11\u00a0to 30\u00a0are affected by acne to some extent.

Acne is most common in girls from the ages of 14\u00a0to 17, and in boys from the ages of 16\u00a0to 19.

Most people have acne on and off for several years before their symptoms start to improve as they get older.

Acne often disappears when a person is in their mid-20s.

In some cases, acne can continue into adult life. About 3% of adults have acne over the age of 35.

", + "mainEntityOfPage": [ + { + "position": 0, + "identifier": "1", + "text": "

If you have mild acne, speak to a pharmacist about medicines to treat it.

If these do not control your acne, or it's making you feel very unhappy, see a GP.

You should see a GP if you have moderate or severe acne or you develop nodules or cysts, as they need to be treated properly to avoid scarring. 

Try to resist the temptation to pick or squeeze the spots, as this can lead to permanent scarring.

Treatments can take several months to work, so do not expect results overnight. Once they do start to work, the results are usually good.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "When to seek medical advice" + } + ], + "description": "", + "hasPart": [ + { + "position": 0, + "identifier": "1", + "text": "

If you have mild acne, speak to a pharmacist about medicines to treat it.

If these do not control your acne, or it's making you feel very unhappy, see a GP.

You should see a GP if you have moderate or severe acne or you develop nodules or cysts, as they need to be treated properly to avoid scarring. 

Try to resist the temptation to pick or squeeze the spots, as this can lead to permanent scarring.

Treatments can take several months to work, so do not expect results overnight. Once they do start to work, the results are usually good.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "When to seek medical advice" + } + ] + }, + { + "identifier": "0", + "name": "section heading", + "position": 4, "@type": "WebPageElement", - "name": "markdown", - "headline": "Who's affected?" - } - ], - "description": "", - "hasPart": [ - { - "position": 0, - "identifier": "1", - "text": "

Acne is very common in teenagers and younger adults. About 95% of people aged 11\u00a0to 30\u00a0are affected by acne to some extent.

Acne is most common in girls from the ages of 14\u00a0to 17, and in boys from the ages of 16\u00a0to 19.

Most people have acne on and off for several years before their symptoms start to improve as they get older.

Acne often disappears when a person is in their mid-20s.

In some cases, acne can continue into adult life. About 3% of adults have acne over the age of 35.

", + "mainEntityOfPage": [ + { + "position": 0, + "identifier": "1", + "text": "

Acne is most commonly linked to the changes in hormone levels during puberty, but can start at any age.

Certain hormones cause the grease-producing glands next to hair follicles in the skin to produce larger amounts of oil (abnormal sebum).

This abnormal sebum changes the activity of a usually harmless skin bacterium called P. acnes, which becomes more aggressive and causes inflammation and pus.

The hormones also thicken the inner lining of the hair follicle, causing blockage of the pores. Cleaning the skin does not help to remove this blockage.

Other possible causes

Acne is known to run in families. If both your mother and father had acne, it's likely that you'll also have acne.

Hormonal changes, such as those that occur during the menstrual cycle or pregnancy, can also lead to episodes of acne in women.

There's no evidence that poor hygiene or sexual activity play a role in acne.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "description": "Acne is often linked to changes in hormone levels during puberty, but can start at any age. It's also known to run in families.", + "hasPart": [ + { + "position": 0, + "identifier": "1", + "text": "

Acne is most commonly linked to the changes in hormone levels during puberty, but can start at any age.

Certain hormones cause the grease-producing glands next to hair follicles in the skin to produce larger amounts of oil (abnormal sebum).

This abnormal sebum changes the activity of a usually harmless skin bacterium called P. acnes, which becomes more aggressive and causes inflammation and pus.

The hormones also thicken the inner lining of the hair follicle, causing blockage of the pores. Cleaning the skin does not help to remove this blockage.

Other possible causes

Acne is known to run in families. If both your mother and father had acne, it's likely that you'll also have acne.

Hormonal changes, such as those that occur during the menstrual cycle or pregnancy, can also lead to episodes of acne in women.

There's no evidence that poor hygiene or sexual activity play a role in acne.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "hasHealthAspect": "http://schema.org/CausesHealthAspect", + "headline": "Why do I have acne?" + }, + { + "identifier": "0", + "name": "section heading", + "position": 5, "@type": "WebPageElement", - "name": "markdown", - "headline": "Who's affected?" - } - ] - } + "mainEntityOfPage": [ + { + "position": 0, + "identifier": "1", + "text": "

Acne is very common in teenagers and younger adults. About 95% of people aged 11 to 30 are affected by acne to some extent.

Acne is most common in girls from the ages of 14 to 17, and in boys from the ages of 16 to 19.

Most people have acne on and off for several years before their symptoms start to improve as they get older.

Acne often disappears when a person is in their mid-20s.

In some cases, acne can continue into adult life. About 3% of adults have acne over the age of 35.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "Who's affected?" + } + ], + "description": "", + "hasPart": [ + { + "position": 0, + "identifier": "1", + "text": "

Acne is very common in teenagers and younger adults. About 95% of people aged 11 to 30 are affected by acne to some extent.

Acne is most common in girls from the ages of 14 to 17, and in boys from the ages of 16 to 19.

Most people have acne on and off for several years before their symptoms start to improve as they get older.

Acne often disappears when a person is in their mid-20s.

In some cases, acne can continue into adult life. About 3% of adults have acne over the age of 35.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "Who's affected?" + } + ] + } ], "alternativeHeadline": "Overview", "webpage": "https://www.nhs.uk/conditions/acne/" diff --git a/sandbox/responses/conditions-angiography-no-params.json b/sandbox/responses/conditions-angiography-no-params.json index f9fdcd4..8840c3e 100644 --- a/sandbox/responses/conditions-angiography-no-params.json +++ b/sandbox/responses/conditions-angiography-no-params.json @@ -2,208 +2,228 @@ "@context": "http://schema.org", "@type": "MedicalWebPage", "name": "Angiography", - "copyrightHolder": { "name": "Crown Copyright", "@type": "Organization" }, + "copyrightHolder": { + "name": "Crown Copyright", + "@type": "Organization" + }, "license": "https://developer.api.nhs.uk/terms", "author": { - "url": "https://www.nhs.uk", - "logo": "https://assets.nhs.uk/nhsuk-cms/images/nhs-attribution.width-510.png", - "email": "nhswebsite.servicedesk@nhs.net", - "@type": "Organization", - "name": "NHS website" + "url": "https://www.nhs.uk", + "logo": "https://assets.nhs.uk/nhsuk-cms/images/nhs-attribution.width-510.png", + "email": "nhswebsite.servicedesk@nhs.net", + "@type": "Organization", + "name": "NHS website" + }, + "about": { + "@type": "WebPage", + "name": "Angiography", + "alternateName": "" }, - "about": { "@type": "WebPage", "name": "Angiography", "alternateName": "" }, "description": "Find out why angiography is used, what happens during the procedure, and the possible risks involved. Also, read about the different types of angiography.", "url": "https://api.service.nhs.uk/nhs-website-content/conditions/angiography/", - "genre": ["Procedure", "Test"], + "genre": [ + "Test", + "Procedure" + ], "keywords": [], - "dateModified": "2023-02-02T09:42:42+00:00", - "lastReviewed": ["2023-01-30T00:00:00+00:00", "2026-01-30T00:00:00+00:00"], + "dateModified": "2025-04-15T10:45:54+00:00", + "lastReviewed": [ + "2023-01-30T00:00:00+00:00", + "2026-01-30T00:00:00+00:00" + ], "breadcrumb": { - "@context": "http://schema.org", - "@type": "BreadcrumbList", - "itemListElement": [ + "@context": "http://schema.org", + "@type": "BreadcrumbList", + "itemListElement": [ + { + "@type": "ListItem", + "position": 0, + "item": { + "@id": "https://api.service.nhs.uk/nhs-website-content/conditions/", + "name": "Conditions A to Z", + "genre": [] + } + }, + { + "@type": "ListItem", + "position": 1, + "item": { + "@id": "https://api.service.nhs.uk/nhs-website-content/conditions/angiography/", + "name": "Angiography", + "genre": [ + "Test", + "Procedure" + ] + } + } + ] + }, + "hasPart": [], + "relatedLink": [ + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/angiography/", + "linkRelationship": "Navigation", + "position": 0, + "name": "Angiography", + "alternativeHeadline": "Overview" + }, { - "@type": "ListItem", - "position": 0, - "item": { "@id": "https://api.service.nhs.uk/nhs-website-content/conditions/", "name": "Health A to Z", "genre": [] } + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/angiography/what-happens/", + "linkRelationship": "Navigation", + "position": 1, + "name": "What happens" }, { - "@type": "ListItem", - "position": 1, - "item": { - "@id": "https://api.service.nhs.uk/nhs-website-content/conditions/angiography/", - "name": "Angiography", - "genre": ["Procedure", "Test"] - } + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/angiography/risks/", + "linkRelationship": "Navigation", + "position": 2, + "name": "Risks" } - ] - }, - "hasPart": [], - "relatedLink": [ - { - "@type": "LinkRole", - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/angiography/", - "linkRelationship": "Navigation", - "position": 0, - "name": "Angiography", - "alternativeHeadline": "Overview" - }, - { - "@type": "LinkRole", - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/angiography/what-happens/", - "linkRelationship": "Navigation", - "position": 1, - "name": "What happens" - }, - { - "@type": "LinkRole", - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/angiography/risks/", - "linkRelationship": "Navigation", - "position": 2, - "name": "Risks" - } ], "contentSubTypes": [], "mainEntityOfPage": [ - { - "identifier": "0", - "name": "section heading", - "position": 0, - "@type": "WebPageElement", - "mainEntityOfPage": [ - { - "position": 0, - "identifier": "1", - "text": "

Angiography is a\u00a0type of\u00a0X-ray used to check\u00a0blood vessels.

Blood vessels do not show clearly on a normal X-ray, so a special dye called a contrast agent needs to be injected into your blood first.

This highlights your blood vessels, allowing your doctor to see any problems.

The X-ray images created during angiography are\u00a0called angiograms.

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "description": "", - "hasPart": [ - { - "position": 0, - "identifier": "1", - "text": "

Angiography is a\u00a0type of\u00a0X-ray used to check\u00a0blood vessels.

Blood vessels do not show clearly on a normal X-ray, so a special dye called a contrast agent needs to be injected into your blood first.

This highlights your blood vessels, allowing your doctor to see any problems.

The X-ray images created during angiography are\u00a0called angiograms.

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ] - }, - { - "identifier": "0", - "name": "section heading", - "position": 1, - "@type": "WebPageElement", - "mainEntityOfPage": [ - { - "position": 0, - "identifier": "1", - "text": "

Angiography\u00a0is used to\u00a0check the health of your blood vessels and how blood flows through them.

It can help to diagnose or investigate several problems affecting blood vessels, including:

Angiography\u00a0may also be used to help plan treatment for some of these conditions.

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "description": "", - "hasPart": [ - { - "position": 0, - "identifier": "1", - "text": "

Angiography\u00a0is used to\u00a0check the health of your blood vessels and how blood flows through them.

It can help to diagnose or investigate several problems affecting blood vessels, including:

Angiography\u00a0may also be used to help plan treatment for some of these conditions.

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "headline": "Why\u00a0angiography is used" - }, - { - "identifier": "0", - "name": "section heading", - "position": 2, - "@type": "WebPageElement", - "mainEntityOfPage": [ - { - "position": 0, - "identifier": "1", - "text": "

Angiography is done in\u00a0a hospital\u00a0X-ray or radiology department.

For the test:

The test\u00a0can take between 30 minutes and 2 hours. You'll usually be able to go home a few hours afterwards.

Read more about what happens before, during and after angiography.

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "description": "", - "hasPart": [ - { + { + "identifier": "0", + "name": "section heading", "position": 0, - "identifier": "1", - "text": "

Angiography is done in\u00a0a hospital\u00a0X-ray or radiology department.

For the test:

The test\u00a0can take between 30 minutes and 2 hours. You'll usually be able to go home a few hours afterwards.

Read more about what happens before, during and after angiography.

", "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "headline": "What\u00a0happens during angiography" - }, - { - "identifier": "0", - "name": "section heading", - "position": 3, - "@type": "WebPageElement", - "mainEntityOfPage": [ - { - "position": 0, - "identifier": "1", - "text": "

Angiography is generally a\u00a0safe and painless procedure.

But for a few days or weeks afterwards it's common to have:

There's also a very small risk of more serious complications, such as an allergic reaction to the contrast agent, a stroke or a heart attack.

Read more about the risks of angiography.

", + "mainEntityOfPage": [ + { + "position": 0, + "identifier": "1", + "text": "

Angiography is a type of X-ray used to check blood vessels.

Blood vessels do not show clearly on a normal X-ray, so a special dye called a contrast agent needs to be injected into your blood first.

This highlights your blood vessels, allowing your doctor to see any problems.

The X-ray images created during angiography are called angiograms.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "description": "", + "hasPart": [ + { + "position": 0, + "identifier": "1", + "text": "

Angiography is a type of X-ray used to check blood vessels.

Blood vessels do not show clearly on a normal X-ray, so a special dye called a contrast agent needs to be injected into your blood first.

This highlights your blood vessels, allowing your doctor to see any problems.

The X-ray images created during angiography are called angiograms.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ] + }, + { + "identifier": "0", + "name": "section heading", + "position": 1, "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "description": "", - "hasPart": [ - { - "position": 0, - "identifier": "1", - "text": "

Angiography is generally a\u00a0safe and painless procedure.

But for a few days or weeks afterwards it's common to have:

There's also a very small risk of more serious complications, such as an allergic reaction to the contrast agent, a stroke or a heart attack.

Read more about the risks of angiography.

", + "mainEntityOfPage": [ + { + "position": 0, + "identifier": "1", + "text": "

Angiography is used to check the health of your blood vessels and how blood flows through them.

It can help to diagnose or investigate several problems affecting blood vessels, including:

Angiography may also be used to help plan treatment for some of these conditions.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "description": "", + "hasPart": [ + { + "position": 0, + "identifier": "1", + "text": "

Angiography is used to check the health of your blood vessels and how blood flows through them.

It can help to diagnose or investigate several problems affecting blood vessels, including:

Angiography may also be used to help plan treatment for some of these conditions.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "headline": "Why angiography is used" + }, + { + "identifier": "0", + "name": "section heading", + "position": 2, "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "headline": "Risks\u00a0of angiography" - }, - { - "identifier": "0", - "name": "section heading", - "position": 4, - "@type": "WebPageElement", - "mainEntityOfPage": [ - { - "position": 0, - "identifier": "1", - "text": "

There are several different types of angiography, depending on which part of the body is being looked at.

Common types include:

Occasionally, angiography may be done using scans instead of X-rays. These are called CT\u00a0angiography or MRI\u00a0angiography.

There's also a type of angiography that's used to check the eyes, called fluorescein angiography. It's different to the other types of angiography and is not covered in this topic.

", + "mainEntityOfPage": [ + { + "position": 0, + "identifier": "1", + "text": "

Angiography is done in a hospital X-ray or radiology department.

For the test:

The test can take between 30 minutes and 2 hours. You'll usually be able to go home a few hours afterwards.

Read more about what happens before, during and after angiography.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "description": "", + "hasPart": [ + { + "position": 0, + "identifier": "1", + "text": "

Angiography is done in a hospital X-ray or radiology department.

For the test:

The test can take between 30 minutes and 2 hours. You'll usually be able to go home a few hours afterwards.

Read more about what happens before, during and after angiography.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "headline": "What happens during angiography" + }, + { + "identifier": "0", + "name": "section heading", + "position": 3, "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "description": "", - "hasPart": [ - { - "position": 0, - "identifier": "1", - "text": "

There are several different types of angiography, depending on which part of the body is being looked at.

Common types include:

Occasionally, angiography may be done using scans instead of X-rays. These are called CT\u00a0angiography or MRI\u00a0angiography.

There's also a type of angiography that's used to check the eyes, called fluorescein angiography. It's different to the other types of angiography and is not covered in this topic.

", + "mainEntityOfPage": [ + { + "position": 0, + "identifier": "1", + "text": "

Angiography is generally a safe and painless procedure.

But for a few days or weeks afterwards it's common to have:

There's also a very small risk of more serious complications, such as an allergic reaction to the contrast agent, a stroke or a heart attack.

Read more about the risks of angiography.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "description": "", + "hasPart": [ + { + "position": 0, + "identifier": "1", + "text": "

Angiography is generally a safe and painless procedure.

But for a few days or weeks afterwards it's common to have:

There's also a very small risk of more serious complications, such as an allergic reaction to the contrast agent, a stroke or a heart attack.

Read more about the risks of angiography.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "headline": "Risks of angiography" + }, + { + "identifier": "0", + "name": "section heading", + "position": 4, "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "headline": "Types\u00a0of angiography" - } + "mainEntityOfPage": [ + { + "position": 0, + "identifier": "1", + "text": "

There are several different types of angiography, depending on which part of the body is being looked at.

Common types include:

Occasionally, angiography may be done using scans instead of X-rays. These are called CT angiography or MRI angiography.

There's also a type of angiography that's used to check the eyes, called fluorescein angiography. It's different to the other types of angiography and is not covered in this topic.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "description": "", + "hasPart": [ + { + "position": 0, + "identifier": "1", + "text": "

There are several different types of angiography, depending on which part of the body is being looked at.

Common types include:

Occasionally, angiography may be done using scans instead of X-rays. These are called CT angiography or MRI angiography.

There's also a type of angiography that's used to check the eyes, called fluorescein angiography. It's different to the other types of angiography and is not covered in this topic.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "headline": "Types of angiography" + } ], "alternativeHeadline": "Overview", "webpage": "https://www.nhs.uk/conditions/angiography/" diff --git a/sandbox/responses/conditions-cancer-no-params.json b/sandbox/responses/conditions-cancer-no-params.json index 1e07686..faa6653 100644 --- a/sandbox/responses/conditions-cancer-no-params.json +++ b/sandbox/responses/conditions-cancer-no-params.json @@ -2,291 +2,295 @@ "@context": "http://schema.org", "@type": "MedicalWebPage", "name": "Cancer", - "copyrightHolder": { "name": "Crown Copyright", "@type": "Organization" }, + "copyrightHolder": { + "name": "Crown Copyright", + "@type": "Organization" + }, "license": "https://developer.api.nhs.uk/terms", "author": { - "url": "https://www.nhs.uk", - "logo": "https://assets.nhs.uk/nhsuk-cms/images/nhs-attribution.width-510.png", - "email": "nhswebsite.servicedesk@nhs.net", - "@type": "Organization", - "name": "NHS website" + "url": "https://www.nhs.uk", + "logo": "https://assets.nhs.uk/nhsuk-cms/images/nhs-attribution.width-510.png", + "email": "nhswebsite.servicedesk@nhs.net", + "@type": "Organization", + "name": "NHS website" + }, + "about": { + "@type": "WebPage", + "name": "Cancer", + "alternateName": "" }, - "about": { "@type": "WebPage", "name": "Cancer", "alternateName": "" }, "description": "Read about cancer, a condition where cells in a part of the body reproduce uncontrollably. Cancerous cells can invade and destroy surrounding healthy tissue.", "url": "https://api.service.nhs.uk/nhs-website-content/conditions/cancer/", - "genre": ["Condition"], + "genre": [ + "Condition" + ], "keywords": [], - "dateModified": "2023-08-10T15:27:26+00:00", - "lastReviewed": ["2022-10-13T00:00:00+00:00", "2025-10-13T00:00:00+00:00"], + "dateModified": "2025-02-28T13:09:23+00:00", + "lastReviewed": [ + "2022-10-13T00:00:00+00:00", + "2025-10-13T00:00:00+00:00" + ], "breadcrumb": { - "@context": "http://schema.org", - "@type": "BreadcrumbList", - "itemListElement": [ + "@context": "http://schema.org", + "@type": "BreadcrumbList", + "itemListElement": [ + { + "@type": "ListItem", + "position": 0, + "item": { + "@id": "https://api.service.nhs.uk/nhs-website-content/conditions/", + "name": "Health A to Z", + "genre": [] + } + }, + { + "@type": "ListItem", + "position": 1, + "item": { + "@id": "https://api.service.nhs.uk/nhs-website-content/conditions/cancer/", + "name": "Cancer", + "genre": [ + "Condition" + ] + } + } + ] + }, + "hasPart": [], + "relatedLink": [ { - "@type": "ListItem", - "position": 0, - "item": { "@id": "https://api.service.nhs.uk/nhs-website-content/conditions/", "name": "Health A to Z", "genre": [] } + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/cancer/", + "linkRelationship": "Navigation", + "position": 0, + "name": "Cancer", + "alternativeHeadline": "Overview" }, { - "@type": "ListItem", - "position": 1, - "item": { - "@id": "https://api.service.nhs.uk/nhs-website-content/conditions/cancer/", - "name": "Cancer", - "genre": ["Condition"] - } + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/cancer/symptoms/", + "linkRelationship": "Navigation", + "position": 1, + "name": "Signs and symptoms" } - ] - }, - "hasPart": [], - "relatedLink": [ - { - "@type": "LinkRole", - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/cancer/", - "linkRelationship": "Navigation", - "position": 0, - "name": "Cancer", - "alternativeHeadline": "Overview" - }, - { - "@type": "LinkRole", - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/cancer/symptoms/", - "linkRelationship": "Navigation", - "position": 1, - "name": "Signs and symptoms" - } ], - "contentSubTypes": ["Cancer"], + "contentSubTypes": [ + "Cancer" + ], "mainEntityOfPage": [ - { - "identifier": "0", - "name": "section heading", - "position": 0, - "@type": "WebPageElement", - "mainEntityOfPage": [ - { - "position": 0, - "identifier": "1", - "text": "

Cancer is a condition where cells in a specific part of the\u00a0body grow and reproduce uncontrollably. The cancerous cells can invade and destroy surrounding healthy tissue, including organs.

Cancer sometimes begins in one part of the body before spreading to other areas. This process is known as metastasis.

1 in 2 people will develop some form of cancer during their lifetime. In the UK, the 4 most common types of cancer are:

There are\u00a0more than\u00a0200 different types of cancer, and\u00a0each is diagnosed and treated in a particular way. You can find\u00a0links on this page to\u00a0information about other types of cancer.

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "description": "", - "hasPart": [ - { - "position": 0, - "identifier": "1", - "text": "

Cancer is a condition where cells in a specific part of the\u00a0body grow and reproduce uncontrollably. The cancerous cells can invade and destroy surrounding healthy tissue, including organs.

Cancer sometimes begins in one part of the body before spreading to other areas. This process is known as metastasis.

1 in 2 people will develop some form of cancer during their lifetime. In the UK, the 4 most common types of cancer are:

There are\u00a0more than\u00a0200 different types of cancer, and\u00a0each is diagnosed and treated in a particular way. You can find\u00a0links on this page to\u00a0information about other types of cancer.

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ] - }, - { - "identifier": "0", - "name": "section heading", - "position": 1, - "@type": "WebPageElement", - "mainEntityOfPage": [], - "description": "", - "hasPart": [] - }, - { - "identifier": "0", - "name": "section heading", - "position": 2, - "@type": "WebPageElement", - "mainEntityOfPage": [ - { - "position": 0, - "identifier": "1", - "text": "

Changes to your body's normal processes or unusual, unexplained symptoms can sometimes be an early\u00a0sign of cancer.

Symptoms that need to be checked by a doctor include:

But in many cases\u00a0your symptoms\u00a0will not be related to cancer and will be caused by other, non-cancerous health conditions.

Read more about the\u00a0signs and symptoms of cancer.

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "description": "", - "hasPart": [ - { - "position": 0, - "identifier": "1", - "text": "

Changes to your body's normal processes or unusual, unexplained symptoms can sometimes be an early\u00a0sign of cancer.

Symptoms that need to be checked by a doctor include:

But in many cases\u00a0your symptoms\u00a0will not be related to cancer and will be caused by other, non-cancerous health conditions.

Read more about the\u00a0signs and symptoms of cancer.

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "headline": "Spotting signs of cancer" - }, - { - "identifier": "0", - "name": "section heading", - "position": 3, - "@type": "WebPageElement", - "mainEntityOfPage": [ - { - "position": 0, - "identifier": "1", - "text": "

Making some simple changes to your lifestyle can significantly reduce your risk of developing cancer.

For example:

Find out more about how a healthy lifestyle reduces your chances of developing cancer on the Macmillan Cancer Support website

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "description": "", - "hasPart": [ - { - "position": 0, - "identifier": "1", - "text": "

Making some simple changes to your lifestyle can significantly reduce your risk of developing cancer.

For example:

Find out more about how a healthy lifestyle reduces your chances of developing cancer on the Macmillan Cancer Support website

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "headline": "Reducing your risk of cancer" - }, - { - "identifier": "0", - "name": "section heading", - "position": 4, - "@type": "WebPageElement", - "mainEntityOfPage": [ - { - "position": 0, - "identifier": "1", - "text": "

Surgery is the first treatment to try for most types of cancer, as solid tumours can usually be surgically removed.

2 other\u00a0commonly used treatment methods are:

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "description": "", - "hasPart": [ - { + { + "identifier": "0", + "name": "section heading", "position": 0, - "identifier": "1", - "text": "

Surgery is the first treatment to try for most types of cancer, as solid tumours can usually be surgically removed.

2 other\u00a0commonly used treatment methods are:

", "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "headline": "Cancer treatment" - }, - { - "identifier": "0", - "name": "section heading", - "position": 5, - "@type": "WebPageElement", - "mainEntityOfPage": [ - { - "position": 0, - "identifier": "1", - "text": "

Accurately diagnosing cancer can take weeks or\u00a0months. As cancer often develops slowly over several years, waiting for\u00a0a few weeks will not usually impact on\u00a0the effectiveness of treatment.

The National Institute for Health and Care Excellence (NICE) has produced referral guidelines for suspected cancer.

You\u00a0should not have to wait more than 2 weeks to see a specialist if your GP suspects you have cancer and urgently refers you.

In cases where cancer has been confirmed, you should not have to\u00a0wait more than 31 days from the\u00a0decision to treat to the start of treatment.

NHS England has more detailed statistics on cancer waiting times

", + "mainEntityOfPage": [ + { + "position": 0, + "identifier": "1", + "text": "

Cancer is a condition where cells in a specific part of the body grow and reproduce uncontrollably. The cancerous cells can invade and destroy surrounding healthy tissue, including organs.

Cancer sometimes begins in one part of the body before spreading to other areas. This process is known as metastasis.

1 in 2 people will develop some form of cancer during their lifetime. In the UK, the 4 most common types of cancer are:

There are more than 200 different types of cancer, and each is diagnosed and treated in a particular way. You can find links on this page to information about other types of cancer.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "description": "", + "hasPart": [ + { + "position": 0, + "identifier": "1", + "text": "

Cancer is a condition where cells in a specific part of the body grow and reproduce uncontrollably. The cancerous cells can invade and destroy surrounding healthy tissue, including organs.

Cancer sometimes begins in one part of the body before spreading to other areas. This process is known as metastasis.

1 in 2 people will develop some form of cancer during their lifetime. In the UK, the 4 most common types of cancer are:

There are more than 200 different types of cancer, and each is diagnosed and treated in a particular way. You can find links on this page to information about other types of cancer.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ] + }, + { + "identifier": "0", + "name": "section heading", + "position": 1, "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "description": "", - "hasPart": [ - { - "position": 0, - "identifier": "1", - "text": "

Accurately diagnosing cancer can take weeks or\u00a0months. As cancer often develops slowly over several years, waiting for\u00a0a few weeks will not usually impact on\u00a0the effectiveness of treatment.

The National Institute for Health and Care Excellence (NICE) has produced referral guidelines for suspected cancer.

You\u00a0should not have to wait more than 2 weeks to see a specialist if your GP suspects you have cancer and urgently refers you.

In cases where cancer has been confirmed, you should not have to\u00a0wait more than 31 days from the\u00a0decision to treat to the start of treatment.

NHS England has more detailed statistics on cancer waiting times

", + "mainEntityOfPage": [], + "description": "", + "hasPart": [] + }, + { + "identifier": "0", + "name": "section heading", + "position": 2, "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "headline": "Waiting times" - }, - { - "identifier": "0", - "name": "section heading", - "position": 6, - "@type": "WebPageElement", - "mainEntityOfPage": [ - { - "position": 0, - "identifier": "1", - "text": "", + "mainEntityOfPage": [ + { + "position": 0, + "identifier": "1", + "text": "

Changes to your body's normal processes or unusual, unexplained symptoms can sometimes be an early sign of cancer.

Symptoms that need to be checked by a doctor include:

But in many cases your symptoms will not be related to cancer and will be caused by other, non-cancerous health conditions.

Read more about the signs and symptoms of cancer.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "description": "", + "hasPart": [ + { + "position": 0, + "identifier": "1", + "text": "

Changes to your body's normal processes or unusual, unexplained symptoms can sometimes be an early sign of cancer.

Symptoms that need to be checked by a doctor include:

But in many cases your symptoms will not be related to cancer and will be caused by other, non-cancerous health conditions.

Read more about the signs and symptoms of cancer.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "headline": "Spotting signs of cancer" + }, + { + "identifier": "0", + "name": "section heading", + "position": 3, "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "description": "", - "hasPart": [ - { - "position": 0, - "identifier": "1", - "text": "", + "mainEntityOfPage": [ + { + "position": 0, + "identifier": "1", + "text": "

Making some simple changes to your lifestyle can significantly reduce your risk of developing cancer.

For example:

Find out more about how a healthy lifestyle reduces your chances of developing cancer on the Macmillan Cancer Support website

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "description": "", + "hasPart": [ + { + "position": 0, + "identifier": "1", + "text": "

Making some simple changes to your lifestyle can significantly reduce your risk of developing cancer.

For example:

Find out more about how a healthy lifestyle reduces your chances of developing cancer on the Macmillan Cancer Support website

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "headline": "Reducing your risk of cancer" + }, + { + "identifier": "0", + "name": "section heading", + "position": 4, "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "headline": "Cancer services" - }, - { - "identifier": "0", - "name": "section heading", - "position": 7, - "@type": "WebPageElement", - "mainEntityOfPage": [ - { - "position": 0, - "identifier": "1", - "text": "

The Health A-Z covers\u00a0many different types of cancer:

", + "mainEntityOfPage": [ + { + "position": 0, + "identifier": "1", + "text": "

Surgery is the first treatment to try for most types of cancer, as solid tumours can usually be surgically removed.

2 other commonly used treatment methods are:

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "description": "", + "hasPart": [ + { + "position": 0, + "identifier": "1", + "text": "

Surgery is the first treatment to try for most types of cancer, as solid tumours can usually be surgically removed.

2 other commonly used treatment methods are:

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "headline": "Cancer treatment" + }, + { + "identifier": "0", + "name": "section heading", + "position": 5, "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "description": "", - "hasPart": [ - { - "position": 0, - "identifier": "1", - "text": "

The Health A-Z covers\u00a0many different types of cancer:

", + "mainEntityOfPage": [ + { + "position": 0, + "identifier": "1", + "text": "

Accurately diagnosing cancer can take weeks or months. As cancer often develops slowly over several years, waiting for a few weeks will not usually impact on the effectiveness of treatment.

The National Institute for Health and Care Excellence (NICE) has produced referral guidelines for suspected cancer

If you get an urgent referral to see a specialist, they should confirm or rule out cancer within 28 days and treatment should begin within 62 days of your referral.

If you've been diagnosed with cancer without an urgent referral, you should start treatment within 31 days of being diagnosed.

NHS England has more detailed statistics on cancer waiting times

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "description": "", + "hasPart": [ + { + "position": 0, + "identifier": "1", + "text": "

Accurately diagnosing cancer can take weeks or months. As cancer often develops slowly over several years, waiting for a few weeks will not usually impact on the effectiveness of treatment.

The National Institute for Health and Care Excellence (NICE) has produced referral guidelines for suspected cancer

If you get an urgent referral to see a specialist, they should confirm or rule out cancer within 28 days and treatment should begin within 62 days of your referral.

If you've been diagnosed with cancer without an urgent referral, you should start treatment within 31 days of being diagnosed.

NHS England has more detailed statistics on cancer waiting times

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "headline": "Waiting times" + }, + { + "identifier": "0", + "name": "section heading", + "position": 6, "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "headline": "Other cancer pages" - }, - { - "identifier": "0", - "name": "section heading", - "position": 8, - "@type": "WebPageElement", - "mainEntityOfPage": [ - { - "position": 0, + "mainEntityOfPage": [ + { + "position": 0, + "identifier": "1", + "text": "

The Health A-Z covers many different types of cancer:

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "description": "", + "hasPart": [ + { + "position": 0, + "identifier": "1", + "text": "

The Health A-Z covers many different types of cancer:

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "headline": "Other cancer pages" + }, + { + "identifier": "0", + "name": "section heading", + "position": 7, "@type": "WebPageElement", - "name": "Information", - "identifier": "3", - "text": "

Social care and support guide

The guide to care and support explains your options and where you can get support if you:

" - } - ], - "description": "", - "hasPart": [ - { - "position": 0, + "mainEntityOfPage": [ + { + "position": 0, + "identifier": "1", + "text": "

Find cancer support services for women

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "description": "", + "hasPart": [ + { + "position": 0, + "identifier": "1", + "text": "

Find cancer support services for women

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "headline": "Cancer services" + }, + { + "identifier": "0", + "name": "section heading", + "position": 8, "@type": "WebPageElement", - "name": "Information", - "identifier": "3", - "text": "

Social care and support guide

The guide to care and support explains your options and where you can get support if you:

" - } - ] - } + "mainEntityOfPage": [], + "description": "", + "hasPart": [] + } ], "alternativeHeadline": "Overview", "webpage": "https://www.nhs.uk/conditions/cancer/" diff --git a/sandbox/responses/conditions-root-category-a-genre-condition.json b/sandbox/responses/conditions-root-category-a-genre-condition.json index 49f516b..ccf6702 100644 --- a/sandbox/responses/conditions-root-category-a-genre-condition.json +++ b/sandbox/responses/conditions-root-category-a-genre-condition.json @@ -1,1513 +1,1761 @@ { "@context": "http://schema.org", "@type": "MedicalWebPage", - "name": "Health A to Z", - "copyrightHolder": { "name": "Crown Copyright", "@type": "Organization" }, + "name": "Conditions A to Z", + "copyrightHolder": { + "name": "Crown Copyright", + "@type": "Organization" + }, "license": "https://developer.api.nhs.uk/terms", "author": { - "url": "https://www.nhs.uk", - "logo": "https://assets.nhs.uk/nhsuk-cms/images/nhs-attribution.width-510.png", - "email": "nhswebsite.servicedesk@nhs.net", - "@type": "Organization", - "name": "NHS website" + "url": "https://www.nhs.uk", + "logo": "https://assets.nhs.uk/nhsuk-cms/images/nhs-attribution.width-510.png", + "email": "nhswebsite.servicedesk@nhs.net", + "@type": "Organization", + "name": "NHS website" + }, + "about": { + "@type": "WebPage", + "name": "Conditions A to Z", + "alternateName": "" }, - "about": { "@type": "WebPage", "name": "Health A to Z", "alternateName": "" }, - "description": "", + "description": "Find out about health conditions, including their symptoms and how they're treated.", "url": "https://api.service.nhs.uk/nhs-website-content/conditions/", "genre": [], "keywords": "", - "dateModified": "2021-11-18T15:26:06+00:00", + "dateModified": "2025-04-16T13:49:43+00:00", "breadcrumb": { - "@context": "http://schema.org", - "@type": "BreadcrumbList", - "itemListElement": [ - { - "@type": "ListItem", - "position": 0, - "item": { "@id": "https://api.service.nhs.uk/nhs-website-content/conditions/", "name": "Health A to Z", "genre": [] } - } - ] + "@context": "http://schema.org", + "@type": "BreadcrumbList", + "itemListElement": [ + { + "@type": "ListItem", + "position": 0, + "item": { + "@id": "https://api.service.nhs.uk/nhs-website-content/conditions/", + "name": "Conditions A to Z", + "genre": [] + } + } + ] }, "contentSubTypes": [], "significantLink": [ - { - "description": "Acanthosis nigricans is the term for darkened, thickened patches of skin in the armpit and around the groin and neck. Find out about the main causes and treatments.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-24T08:48:21+00:00", - "dateModified": "2021-11-30T15:42:29+00:00", - "lastReviewed": ["2021-06-20T00:00:00+00:00", "2024-06-20T00:00:00+00:00"], - "reviewDue": "2024-06-20T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acanthosis-nigricans/", - "name": "Acanthosis nigricans" - }, - { - "description": "Read about achalasia, a disorder of the gullet (oesophagus) where it loses the ability to move food along. The valve at the end of the gullet also fails to open.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T15:19:45+00:00", - "dateModified": "2023-07-05T15:04:16+00:00", - "lastReviewed": ["2020-12-24T14:50:00+00:00", "2023-12-24T15:00:00+00:00"], - "reviewDue": "2023-12-24T15:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/achalasia/", - "name": "Achalasia" - }, - { - "description": "Find out about first aid and treatment for acid and chemical burns, including burns from acid attacks.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Accident or injury"], - "datePublished": "2018-10-03T19:55:47+00:00", - "dateModified": "2023-09-04T07:39:55+00:00", - "lastReviewed": ["2020-09-18T00:00:00+00:00", "2023-09-18T17:00:00+00:00"], - "reviewDue": "2023-09-18T17:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acid-and-chemical-burns/", - "name": "Acid and chemical burns" - }, - { - "description": "An acoustic neuroma is a type of non-cancerous (benign) brain tumour. Find out about the symptoms, treatments and outlook for this condition.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T15:44:39+00:00", - "dateModified": "2022-12-02T16:38:26+00:00", - "lastReviewed": ["2022-11-29T00:00:00+00:00", "2025-11-29T00:00:00+00:00"], - "reviewDue": "2025-11-29T00:00:00+00:00", - "keywords": "", - "alternateName": ["Vestibular schwannoma"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acoustic-neuroma/", - "name": "Acoustic neuroma (vestibular schwannoma)" - }, - { - "description": "Find out about acromegaly, a rare condition where the body produces too much growth hormone causing tissue and bone to grow more quickly. Read about symptoms, causes, diagnosis and treatment.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T15:17:11+00:00", - "dateModified": "2023-10-02T08:09:37+00:00", - "lastReviewed": ["2020-10-12T00:00:00+00:00", "2023-10-12T00:00:00+00:00"], - "reviewDue": "2023-10-12T00:00:00+00:00", - "keywords": "", - "alternateName": ["Gigantism"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acromegaly/", - "name": "Acromegaly" - }, - { - "description": "Find out more about actinic keratoses, which are patches of skin that have been damaged by the sun.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T15:23:05+00:00", - "dateModified": "2023-07-04T10:02:21+00:00", - "lastReviewed": ["2023-06-14T00:00:00+00:00", "2026-06-14T00:00:00+00:00"], - "reviewDue": "2026-06-14T00:00:00+00:00", - "keywords": "", - "alternateName": ["Solar keratoses"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/actinic-keratoses/", - "name": "Actinic keratoses (solar keratoses)" - }, - { - "description": "Read about acupuncture, a treatment derived from ancient Chinese medicine in which fine needles are inserted at certain sites in the body to relieve or prevent health problems", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Treatment"], - "datePublished": "2017-10-17T15:41:00+00:00", - "dateModified": "2023-03-15T09:54:23+00:00", - "lastReviewed": ["2023-02-28T02:00:00+00:00", "2026-02-28T03:00:00+00:00"], - "reviewDue": "2026-02-28T03:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acupuncture/", - "name": "Acupuncture" - }, - { - "description": "Read about acute cholecystitis, which is inflammation of the gallbladder. It usually occurs when a gallstone blocks the cystic duct.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T15:30:37+00:00", - "dateModified": "2023-06-08T14:38:26+00:00", - "lastReviewed": ["2023-02-21T01:00:00+00:00", "2026-02-21T01:00:00+00:00"], - "reviewDue": "2026-02-21T01:00:00+00:00", - "keywords": "", - "alternateName": ["Gallbladder pain", "Cholecystitis (acute)"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acute-cholecystitis/", - "name": "Acute cholecystitis" - }, - { - "description": "Acute kidney injury (AKI) is sudden damage to the kidneys that causes them to not work properly. It can range from minor loss of kidney function to complete kidney failure.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2018-10-03T19:55:51+00:00", - "dateModified": "2022-09-13T14:52:40+00:00", - "lastReviewed": ["2022-09-07T23:00:00+00:00", "2025-09-07T23:00:00+00:00"], - "reviewDue": "2025-09-07T23:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acute-kidney-injury/", - "name": "Acute kidney injury" - }, - { - "description": "Find out about acute respiratory distress syndrome, including who\u2019s at risk of getting it, the symptoms, how it\u2019s treated and what causes it.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T15:27:22+00:00", - "dateModified": "2023-07-25T12:53:45+00:00", - "lastReviewed": ["2023-07-11T23:00:00+00:00", "2026-07-11T23:00:00+00:00"], - "reviewDue": "2026-07-11T23:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acute-respiratory-distress-syndrome/", - "name": "Acute respiratory distress syndrome (ARDS)" - }, - { - "description": "Find out what an adenoidectomy is, why it's done, what happens during the operation and the possible complications.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Procedure", "Treatment"], - "datePublished": "2017-10-17T15:31:58+00:00", - "dateModified": "2023-06-16T13:39:11+00:00", - "lastReviewed": ["2023-03-10T15:37:00+00:00", "2026-03-10T15:37:00+00:00"], - "reviewDue": "2026-03-10T15:37:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/adenoidectomy/", - "name": "Adenoidectomy" - }, - { - "description": "An air or gas embolism is a serious problem that can happen to scuba divers and during some medical procedures. Read about the causes, symptoms and treatments.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-12-01T09:45:51+00:00", - "dateModified": "2023-10-02T08:10:10+00:00", - "lastReviewed": ["2020-12-16T00:00:00+00:00", "2023-12-16T00:00:00+00:00"], - "reviewDue": "2023-12-16T00:00:00+00:00", - "keywords": "", - "alternateName": ["Decompression sickness"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/air-embolism/", - "name": "Air or gas embolism" - }, - { - "description": "Find out about alcohol poisoning, what the symptoms are, what to do if you think you or someone else has it, what the treatments are and what causes it.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T15:40:36+00:00", - "dateModified": "2023-01-12T12:26:14+00:00", - "lastReviewed": ["2023-01-11T01:00:00+00:00", "2026-01-11T01:00:00+00:00"], - "reviewDue": "2026-01-11T01:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/alcohol-poisoning/", - "name": "Alcohol poisoning" - }, - { - "description": "The Alexander technique teaches improved posture and movement, which is believed to help reduce and prevent problems caused by unhelpful habits.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Treatment"], - "datePublished": "2017-10-17T16:16:34+00:00", - "dateModified": "2023-10-10T14:03:35+00:00", - "lastReviewed": ["2021-09-06T00:00:00+00:00", "2024-09-06T00:00:00+00:00"], - "reviewDue": "2024-09-06T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/alexander-technique/", - "name": "Alexander technique" - }, - { - "description": "Read about alkaptonuria, or \"black urine disease\", a rare inherited disorder that can turn urine and parts of the body a dark colour and lead to other problems.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-24T10:34:28+00:00", - "dateModified": "2023-04-27T13:09:51+00:00", - "lastReviewed": ["2022-03-10T00:00:00+00:00", "2025-03-10T00:00:00+00:00"], - "reviewDue": "2025-03-10T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/alkaptonuria/", - "name": "Alkaptonuria" - }, - { - "description": "Information about amputation, including why and how it's carried out, recovery and rehabilitation, prosthetics, stump care and possible complications.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Procedure", "Treatment"], - "datePublished": "2017-10-17T15:47:57+00:00", - "dateModified": "2023-04-13T10:05:18+00:00", - "lastReviewed": ["2023-02-17T01:00:00+00:00", "2026-02-17T01:00:00+00:00"], - "reviewDue": "2026-02-17T01:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/amputation/", - "name": "Amputation" - }, - { - "description": "Find out about amyloidosis, including what the symptoms are, when and where to get medical help, the causes and how it's treated.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T15:48:36+00:00", - "dateModified": "2023-08-24T13:52:35+00:00", - "lastReviewed": ["2023-08-23T00:00:00+00:00", "2026-08-23T00:00:00+00:00"], - "reviewDue": "2026-08-23T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/amyloidosis/", - "name": "Amyloidosis" - }, - { - "description": "Read about anabolic steroids, which are prescription-only medicines that are sometimes taken without medical advice to increase muscle mass and improve athletic performance.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "WebPage", - "genre": ["Advice or information"], - "datePublished": "2017-10-17T15:50:01+00:00", - "dateModified": "2022-11-04T09:39:37+00:00", - "lastReviewed": ["2022-04-13T09:37:00+00:00", "2025-04-13T09:37:00+00:00"], - "reviewDue": "2025-04-13T09:37:00+00:00", - "keywords": "", - "alternateName": ["Steroid misuse"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anabolic-steroid-misuse/", - "name": "Anabolic steroid misuse" - }, - { - "description": "Find out about different types of anaesthetics, how they work, and the potential side effects. Also, read about the role of the anaesthetist.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Medicine"], - "datePublished": "2017-10-17T15:49:39+00:00", - "dateModified": "2021-11-18T15:26:25+00:00", - "lastReviewed": ["2021-09-23T00:00:00+00:00", "2024-09-23T00:00:00+00:00"], - "reviewDue": "2024-09-23T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anaesthesia/", - "name": "Anaesthesia" - }, - { - "description": "Anal cancer is a rare type of cancer that affects the anus. Get information and advice about symptoms, causes and treatments.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T16:08:41+00:00", - "dateModified": "2022-07-12T15:04:44+00:00", - "lastReviewed": ["2021-03-08T01:00:00+00:00", "2024-03-08T01:00:00+00:00"], - "reviewDue": "2024-03-08T01:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anal-cancer/", - "name": "Anal cancer" - }, - { - "description": "Find out what causes anal pain, what you can do to ease the pain and when to get medical help.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Symptom"], - "datePublished": "2017-10-17T15:49:36+00:00", - "dateModified": "2022-03-16T09:04:13+00:00", - "lastReviewed": ["2022-03-15T01:00:00+00:00", "2025-03-15T01:00:00+00:00"], - "reviewDue": "2025-03-15T01:00:00+00:00", - "keywords": "", - "alternateName": ["Proctalgia"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anal-pain/", - "name": "Anal pain" - }, - { - "description": "Read about Angelman syndrome, a genetic disorder that affects the nervous system and causes severe physical and intellectual disability", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T16:28:17+00:00", - "dateModified": "2023-04-13T10:12:21+00:00", - "lastReviewed": ["2023-03-09T01:00:00+00:00", "2026-03-09T01:00:00+00:00"], - "reviewDue": "2026-03-09T01:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/angelman-syndrome/", - "name": "Angelman syndrome" - }, - { - "description": "Find out what to do if you\u2019ve been bitten by an animal or person, including first aid advice, when to get medical help and what treatment you may need.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Accident or injury"], - "datePublished": "2017-10-17T15:53:13+00:00", - "dateModified": "2023-08-08T09:25:16+00:00", - "lastReviewed": ["2022-06-22T23:00:00+00:00", "2025-06-22T23:00:00+00:00"], - "reviewDue": "2025-06-22T23:00:00+00:00", - "keywords": "", - "alternateName": ["Dog bites", "Human bites", "Bite (animal or human)", "Cat bites"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/animal-and-human-bites/", - "name": "Animal and human bites" - }, - { - "description": "Find out about antacids, a type of medicine used to control the acid levels in the stomach.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Medicine"], - "datePublished": "2017-10-17T15:54:58+00:00", - "dateModified": "2023-04-13T14:41:26+00:00", - "lastReviewed": ["2023-03-24T10:33:00+00:00", "2026-03-24T10:33:00+00:00"], - "reviewDue": "2026-03-24T10:33:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/antacids/", - "name": "Antacids" - }, - { - "description": "Antihistamines are a type of medicine often used to treat allergies. Find out about the different types, who can take them and what side effects they can cause.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Medicine"], - "datePublished": "2017-10-17T15:57:58+00:00", - "dateModified": "2023-05-18T14:32:06+00:00", - "lastReviewed": ["2023-05-15T23:00:00+00:00", "2026-05-15T23:00:00+00:00"], - "reviewDue": "2026-05-15T23:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Acanthosis nigricans is the term for darkened, thickened patches of skin in the armpit and around the groin and neck. Find out about the main causes and treatments.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-24T08:48:21+00:00", + "dateModified": "2025-02-20T13:24:49+00:00", + "lastReviewed": [ + "2024-07-04T00:00:00+00:00", + "2027-07-04T00:00:00+00:00" + ], + "reviewDue": "2027-07-04T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acanthosis-nigricans/", + "name": "Acanthosis nigricans" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/antihistamines/", - "name": "Antihistamines" - }, - { - "description": "Read about anxiety disorders in children and teenagers, with links to other useful resources.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T16:28:08+00:00", - "dateModified": "2021-11-18T15:26:34+00:00", - "lastReviewed": ["2020-12-01T00:00:00+00:00", "2023-12-01T00:00:00+00:00"], - "reviewDue": "2023-12-01T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Read about achalasia, a disorder of the gullet (oesophagus) where it loses the ability to move food along. The valve at the end of the gullet also fails to open.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T15:19:45+00:00", + "dateModified": "2023-12-12T10:14:58+00:00", + "lastReviewed": [ + "2023-12-05T14:50:00+00:00", + "2026-12-05T15:00:00+00:00" + ], + "reviewDue": "2026-12-05T15:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/achalasia/", + "name": "Achalasia" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anxiety-disorders-in-children/", - "name": "Anxiety disorders in children" - }, - { - "description": "Arrhythmias or heart rhythm problems are experienced by more than 2 million people in the UK. Most people with an abnormal heart rhythm can lead a normal life if it is properly diagnosed.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2018-02-19T15:41:03+00:00", - "dateModified": "2023-10-20T08:46:13+00:00", - "lastReviewed": ["2021-09-14T00:00:00+00:00", "2024-09-14T00:00:00+00:00"], - "reviewDue": "2024-09-14T00:00:00+00:00", - "keywords": "", - "alternateName": ["Heart rhythm problems"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about acid and chemical burns including what causes them, where to get help, how to do first aid, and how they're treated.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Accident or injury" + ], + "datePublished": "2018-10-03T19:55:47+00:00", + "dateModified": "2024-06-10T08:44:38+00:00", + "lastReviewed": [ + "2024-06-05T00:00:00+00:00", + "2027-06-05T17:00:00+00:00" + ], + "reviewDue": "2027-06-05T17:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acid-and-chemical-burns/", + "name": "Acid and chemical burns" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/arrhythmia/", - "name": "Arrhythmia" - }, - { - "description": "Arterial thrombosis is a blood clot in an artery. Find out why it happens and how it is treated.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T15:56:14+00:00", - "dateModified": "2023-08-07T07:30:32+00:00", - "lastReviewed": ["2020-01-09T00:00:00+00:00", "2023-01-09T00:00:00+00:00"], - "reviewDue": "2023-01-09T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "An acoustic neuroma is a type of non-cancerous (benign) brain tumour. Find out about the symptoms, treatments and outlook for this condition.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T15:44:39+00:00", + "dateModified": "2024-03-07T16:55:34+00:00", + "lastReviewed": [ + "2022-11-29T00:00:00+00:00", + "2025-11-29T00:00:00+00:00" + ], + "reviewDue": "2025-11-29T00:00:00+00:00", + "keywords": "", + "alternateName": [ + "Vestibular schwannoma" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acoustic-neuroma/", + "name": "Acoustic neuroma (vestibular schwannoma)" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/arterial-thrombosis/", - "name": "Arterial thrombosis" - }, - { - "description": "Asbestosis is a serious lung condition caused by exposure to asbestos \u2013 a building material used mostly from the 1950s to the 1990s.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T16:02:11+00:00", - "dateModified": "2023-10-03T12:28:12+00:00", - "lastReviewed": ["2023-07-31T15:03:00+00:00", "2026-07-31T00:00:00+00:00"], - "reviewDue": "2026-07-31T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about acromegaly, the abnormal growth of hands, feet and other body parts. This includes the symptoms, when to get medical help and how it's treated.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T15:17:11+00:00", + "dateModified": "2025-02-20T13:26:16+00:00", + "lastReviewed": [ + "2024-12-19T01:00:00+00:00", + "2027-12-19T01:00:00+00:00" + ], + "reviewDue": "2027-12-19T01:00:00+00:00", + "keywords": "", + "alternateName": [ + "Gigantism" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acromegaly/", + "name": "Acromegaly" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/asbestosis/", - "name": "Asbestosis" - }, - { - "description": "Find out about aspirin, including what it's used for, who can take it, and what the main side effects are.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Medicine"], - "datePublished": "2017-10-17T16:05:29+00:00", - "dateModified": "2021-11-18T15:26:40+00:00", - "lastReviewed": ["2016-05-06T00:00:00+00:00", "2019-05-01T00:00:00+00:00"], - "reviewDue": "2019-05-01T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out more about actinic keratoses, which are patches of skin that have been damaged by the sun.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T15:23:05+00:00", + "dateModified": "2023-07-04T10:02:21+00:00", + "lastReviewed": [ + "2023-06-14T00:00:00+00:00", + "2026-06-14T00:00:00+00:00" + ], + "reviewDue": "2026-06-14T00:00:00+00:00", + "keywords": "", + "alternateName": [ + "Solar keratoses" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/actinic-keratoses/", + "name": "Actinic keratoses (solar keratoses)" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/aspirin/", - "name": "Aspirin" - }, - { - "description": "Find out more about atherosclerosis, what the symptoms are, how you can help stop it getting worse, how it's treated and what causes it.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T15:59:05+00:00", - "dateModified": "2023-04-24T14:20:31+00:00", - "lastReviewed": ["2023-01-30T01:00:00+00:00", "2026-01-30T01:00:00+00:00"], - "reviewDue": "2026-01-30T01:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Read about acute cholecystitis, which is inflammation of the gallbladder. It usually occurs when a gallstone blocks the cystic duct.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T15:30:37+00:00", + "dateModified": "2023-12-18T14:58:04+00:00", + "lastReviewed": [ + "2023-02-21T01:00:00+00:00", + "2026-02-21T01:00:00+00:00" + ], + "reviewDue": "2026-02-21T01:00:00+00:00", + "keywords": "", + "alternateName": [ + "Gallbladder pain", + "Cholecystitis (acute)" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acute-cholecystitis/", + "name": "Acute cholecystitis" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/atherosclerosis/", - "name": "Atherosclerosis" - }, - { - "description": "Read about athlete's foot, a common fungal infection of the foot. Find out about the symptoms, what causes it, and how it's treated.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T16:02:41+00:00", - "dateModified": "2023-05-17T08:49:09+00:00", - "lastReviewed": ["2021-06-08T17:00:00+00:00", "2024-06-08T17:00:00+00:00"], - "reviewDue": "2024-06-08T17:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Acute kidney injury (AKI) is sudden damage to the kidneys that causes them to not work properly. It can range from minor loss of kidney function to complete kidney failure.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2018-10-03T19:55:51+00:00", + "dateModified": "2022-09-13T14:52:40+00:00", + "lastReviewed": [ + "2022-09-07T23:00:00+00:00", + "2025-09-07T23:00:00+00:00" + ], + "reviewDue": "2025-09-07T23:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acute-kidney-injury/", + "name": "Acute kidney injury" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/athletes-foot/", - "name": "Athlete's foot" - }, - { - "description": "Find out about auditory processing disorder, a condition where you have difficulty understanding sounds including spoken words.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T16:01:41+00:00", - "dateModified": "2023-08-02T11:28:29+00:00", - "lastReviewed": ["2023-07-31T00:00:00+00:00", "2026-07-31T00:00:00+00:00"], - "reviewDue": "2026-07-31T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about acute respiratory distress syndrome, including who’s at risk of getting it, the symptoms, how it’s treated and what causes it.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T15:27:22+00:00", + "dateModified": "2024-06-18T15:33:56+00:00", + "lastReviewed": [ + "2023-07-11T23:00:00+00:00", + "2026-07-11T23:00:00+00:00" + ], + "reviewDue": "2026-07-11T23:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acute-respiratory-distress-syndrome/", + "name": "Acute respiratory distress syndrome (ARDS)" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/auditory-processing-disorder/", - "name": "Auditory processing disorder (APD)" - }, - { - "description": "Read about age-related cataracts. In older people, changes can occur in the lens of the eye, making it less transparent and causing cloudy or misty vision.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T18:46:58+00:00", - "dateModified": "2021-11-18T15:27:30+00:00", - "lastReviewed": ["2020-12-22T10:04:00+00:00", "2023-12-22T10:04:00+00:00"], - "reviewDue": "2023-12-22T10:04:00+00:00", - "keywords": "", - "alternateName": ["Cataracts (age-related)"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about alcohol poisoning, what the symptoms are, what to do if you think you or someone else has it, what the treatments are and what causes it.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T15:40:36+00:00", + "dateModified": "2024-06-19T13:14:22+00:00", + "lastReviewed": [ + "2023-01-11T01:00:00+00:00", + "2026-01-11T01:00:00+00:00" + ], + "reviewDue": "2026-01-11T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/alcohol-poisoning/", + "name": "Alcohol poisoning" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/cataracts/", - "name": "Age-related cataracts" - }, - { - "description": "Find out about abdominal aortic aneurysm, what the symptoms are, how it\u2019s treated, how to lower your risk of getting one and what the causes are.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T11:42:38+00:00", - "dateModified": "2023-08-11T14:19:54+00:00", - "lastReviewed": ["2023-06-14T00:00:00+00:00", "2026-06-14T00:00:00+00:00"], - "reviewDue": "2026-06-14T00:00:00+00:00", - "keywords": "", - "alternateName": ["AAA", "Aneurysm (abdominal aortic)"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Read about alkaptonuria, or \"black urine disease\", a rare inherited disorder that can turn urine and parts of the body a dark colour and lead to other problems.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-24T10:34:28+00:00", + "dateModified": "2024-10-15T08:00:59+00:00", + "lastReviewed": [ + "2022-03-10T00:00:00+00:00", + "2025-03-10T00:00:00+00:00" + ], + "reviewDue": "2025-03-10T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/alkaptonuria/", + "name": "Alkaptonuria" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/abdominal-aortic-aneurysm/", - "name": "Abdominal aortic aneurysm" - }, - { - "description": "Find out who is offered abdominal aortic aneurysm (AAA) screening, why it's done and what it involves.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Test"], - "datePublished": "2017-10-20T10:36:32+00:00", - "dateModified": "2023-08-07T14:28:43+00:00", - "lastReviewed": ["2021-01-12T01:00:00+00:00", "2024-01-12T01:00:00+00:00"], - "reviewDue": "2024-01-12T01:00:00+00:00", - "keywords": "", - "alternateName": ["AAA screening"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about amyloidosis, including what the symptoms are, when and where to get medical help, the causes and how it's treated.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T15:48:36+00:00", + "dateModified": "2025-02-28T12:50:27+00:00", + "lastReviewed": [ + "2023-08-23T00:00:00+00:00", + "2026-08-23T00:00:00+00:00" + ], + "reviewDue": "2026-08-23T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/amyloidosis/", + "name": "Amyloidosis" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/abdominal-aortic-aneurysm-screening/", - "name": "Abdominal aortic aneurysm screening" - }, - { - "description": "Acne is a common skin condition that affects most people at some point. It causes spots, oily skin and sometimes skin that's hot or painful to touch.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-19T14:19:00+00:00", - "dateModified": "2023-01-04T15:58:59+00:00", - "lastReviewed": ["2023-01-03T01:00:00+00:00", "2026-01-03T01:00:00+00:00"], - "reviewDue": "2026-01-03T01:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Read about anabolic steroids, which are prescription-only medicines that are sometimes taken without medical advice to increase muscle mass and improve athletic performance.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "WebPage", + "genre": [ + "Advice or information" + ], + "datePublished": "2017-10-17T15:50:01+00:00", + "dateModified": "2024-11-27T11:27:43+00:00", + "lastReviewed": [ + "2022-04-13T09:37:00+00:00", + "2025-04-13T09:37:00+00:00" + ], + "reviewDue": "2025-04-13T09:37:00+00:00", + "keywords": "", + "alternateName": [ + "Steroid misuse" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anabolic-steroid-misuse/", + "name": "Anabolic steroid misuse" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acne/", - "name": "Acne" - }, - { - "description": "Find out about actinomycosis, including how you get it, what the symptoms are, how it's treated and how to reduce your risk of getting it.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-11-21T10:51:44+00:00", - "dateModified": "2023-08-02T14:25:15+00:00", - "lastReviewed": ["2023-07-25T00:00:00+00:00", "2026-07-25T00:00:00+00:00"], - "reviewDue": "2026-07-25T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Read about Angelman syndrome, a genetic disorder that affects the nervous system and causes severe physical and intellectual disability", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:28:17+00:00", + "dateModified": "2023-04-13T10:12:21+00:00", + "lastReviewed": [ + "2023-03-09T01:00:00+00:00", + "2026-03-09T01:00:00+00:00" + ], + "reviewDue": "2026-03-09T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/angelman-syndrome/", + "name": "Angelman syndrome" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/actinomycosis/", - "name": "Actinomycosis" - }, - { - "description": "Read about acute myeloid leukaemia (AML), an aggressive cancer of the myeloid cells. Information about signs and symptoms, causes, diagnosis and treatment.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T11:27:43+00:00", - "dateModified": "2023-10-03T12:54:05+00:00", - "lastReviewed": ["2022-10-03T23:00:00+00:00", "2025-10-03T23:00:00+00:00"], - "reviewDue": "2025-10-03T23:00:00+00:00", - "keywords": "", - "alternateName": ["Leukaemia (acute myeloid)"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out what to do if you’ve been bitten by an animal or person, including first aid advice, when to get medical help and what treatment you may need.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Accident or injury" + ], + "datePublished": "2017-10-17T15:53:13+00:00", + "dateModified": "2024-06-18T15:43:26+00:00", + "lastReviewed": [ + "2022-06-22T23:00:00+00:00", + "2025-06-22T23:00:00+00:00" + ], + "reviewDue": "2025-06-22T23:00:00+00:00", + "keywords": "", + "alternateName": [ + "Bite (animal or human)", + "Cat bites", + "Dog bites", + "Human bites" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/animal-and-human-bites/", + "name": "Animal and human bites" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acute-myeloid-leukaemia/", - "name": "Acute myeloid leukaemia" - }, - { - "description": "Acute pancreatitis is a serious condition where the pancreas becomes inflamed over a short period of time.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2018-04-09T09:11:55+00:00", - "dateModified": "2022-06-10T12:54:41+00:00", - "lastReviewed": ["2022-05-23T23:00:00+00:00", "2025-05-24T00:00:00+00:00"], - "reviewDue": "2025-05-24T00:00:00+00:00", - "keywords": "", - "alternateName": ["Pancreatitis (acute)"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Asbestosis is a serious lung condition caused by exposure to asbestos – a building material used mostly from the 1950s to the 1990s.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:02:11+00:00", + "dateModified": "2024-03-20T15:19:22+00:00", + "lastReviewed": [ + "2023-07-31T15:03:00+00:00", + "2026-07-31T00:00:00+00:00" + ], + "reviewDue": "2026-07-31T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/asbestosis/", + "name": "Asbestosis" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acute-pancreatitis/", - "name": "Acute pancreatitis" - }, - { - "description": "Addison's disease, also known as primary adrenal insufficiency or hypoadrenalism, is a rare disorder of the adrenal glands.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2018-06-22T11:43:53+00:00", - "dateModified": "2022-02-04T11:36:48+00:00", - "lastReviewed": ["2021-12-17T01:00:00+00:00", "2024-12-17T01:00:00+00:00"], - "reviewDue": "2024-12-17T01:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out more about atherosclerosis, what the symptoms are, how you can help stop it getting worse, how it's treated and what causes it.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T15:59:05+00:00", + "dateModified": "2024-11-27T11:55:44+00:00", + "lastReviewed": [ + "2023-01-30T01:00:00+00:00", + "2026-01-30T01:00:00+00:00" + ], + "reviewDue": "2026-01-30T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/atherosclerosis/", + "name": "Atherosclerosis" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/addisons-disease/", - "name": "Addison's disease" - }, - { - "description": "Albinism is an inherited condition that affects the production of melanin, the pigment that colours the skin, hair and eyes.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-11-23T11:06:19+00:00", - "dateModified": "2023-10-02T16:30:33+00:00", - "lastReviewed": ["2023-09-25T23:00:00+00:00", "2026-09-25T23:00:00+00:00"], - "reviewDue": "2026-09-25T23:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Read about athlete's foot, a common fungal infection of the foot. Find out about the symptoms, what causes it, and how it's treated.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:02:41+00:00", + "dateModified": "2024-05-08T11:28:05+00:00", + "lastReviewed": [ + "2024-04-29T17:00:00+00:00", + "2027-04-29T17:00:00+00:00" + ], + "reviewDue": "2027-04-29T17:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/athletes-foot/", + "name": "Athlete's foot" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/albinism/", - "name": "Albinism" - }, - { - "description": "Alcohol misuse is where a person consumes excessive amounts of alcoholic drinks.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T11:36:38+00:00", - "dateModified": "2023-07-06T13:43:03+00:00", - "lastReviewed": ["2022-10-04T00:00:00+00:00", "2025-10-04T00:00:00+00:00"], - "reviewDue": "2025-10-04T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about auditory processing disorder, a condition where you have difficulty understanding sounds including spoken words.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:01:41+00:00", + "dateModified": "2025-03-24T11:59:49+00:00", + "lastReviewed": [ + "2023-07-31T00:00:00+00:00", + "2026-07-31T00:00:00+00:00" + ], + "reviewDue": "2026-07-31T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/auditory-processing-disorder/", + "name": "Auditory processing disorder (APD)" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/alcohol-misuse/", - "name": "Alcohol misuse" - }, - { - "description": "Alcohol-related liver disease (ARLD) refers to liver damage caused by excess alcohol intake. There are several stages of severity and a range of associated symptoms.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T11:37:03+00:00", - "dateModified": "2023-07-06T13:44:38+00:00", - "lastReviewed": ["2022-09-19T23:00:00+00:00", "2025-09-19T23:00:00+00:00"], - "reviewDue": "2025-09-19T23:00:00+00:00", - "keywords": "", - "alternateName": ["Liver disease (alcohol-related)"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about abdominal aortic aneurysm, what the symptoms are, how it’s treated, how to lower your risk of getting one and what the causes are.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T11:42:38+00:00", + "dateModified": "2023-08-11T14:19:54+00:00", + "lastReviewed": [ + "2023-06-14T00:00:00+00:00", + "2026-06-14T00:00:00+00:00" + ], + "reviewDue": "2026-06-14T00:00:00+00:00", + "keywords": "", + "alternateName": [ + "AAA", + "Aneurysm (abdominal aortic)" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/abdominal-aortic-aneurysm/", + "name": "Abdominal aortic aneurysm" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/alcohol-related-liver-disease-arld/", - "name": "Alcohol-related liver disease" - }, - { - "description": "Find out about allergic rhinitis, including what the symptoms are, what you can do about it and when to get medical help.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T11:37:18+00:00", - "dateModified": "2022-06-01T11:30:19+00:00", - "lastReviewed": ["2022-05-30T00:00:00+00:00", "2025-05-30T00:00:00+00:00"], - "reviewDue": "2025-05-30T00:00:00+00:00", - "keywords": "", - "alternateName": ["Rhinitis (allergic)"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Acne is a common skin condition that affects most people at some point. It causes spots, oily skin and sometimes skin that's hot or painful to touch.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-19T14:19:00+00:00", + "dateModified": "2024-02-08T11:28:35+00:00", + "lastReviewed": [ + "2023-01-03T01:00:00+00:00", + "2026-01-03T01:00:00+00:00" + ], + "reviewDue": "2026-01-03T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acne/", + "name": "Acne" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/allergic-rhinitis/", - "name": "Allergic rhinitis" - }, - { - "description": "Find out about allergies, including typical symptoms, common allergies, when to get emergency medical help and allergy testing and treatments.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-19T14:45:29+00:00", - "dateModified": "2023-08-16T14:35:34+00:00", - "lastReviewed": ["2022-08-01T23:00:00+00:00", "2025-08-01T23:00:00+00:00"], - "reviewDue": "2025-08-01T23:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about actinomycosis, including how you get it, what the symptoms are, how it's treated and how to reduce your risk of getting it.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-11-21T10:51:44+00:00", + "dateModified": "2023-08-02T14:25:15+00:00", + "lastReviewed": [ + "2023-07-25T00:00:00+00:00", + "2026-07-25T00:00:00+00:00" + ], + "reviewDue": "2026-07-25T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/actinomycosis/", + "name": "Actinomycosis" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/allergies/", - "name": "Allergies" - }, - { - "description": "NHS information about altitude sickness, including symptoms, treatment and how to prevent it.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T10:41:29+00:00", - "dateModified": "2023-08-02T11:01:58+00:00", - "lastReviewed": ["2023-07-31T01:00:00+00:00", "2026-07-31T02:00:00+00:00"], - "reviewDue": "2026-07-31T02:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Read about acute myeloid leukaemia (AML), an aggressive cancer of the myeloid cells. Information about signs and symptoms, causes, diagnosis and treatment.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T11:27:43+00:00", + "dateModified": "2025-02-28T13:02:33+00:00", + "lastReviewed": [ + "2022-10-03T23:00:00+00:00", + "2025-10-03T23:00:00+00:00" + ], + "reviewDue": "2025-10-03T23:00:00+00:00", + "keywords": "", + "alternateName": [ + "Leukaemia (acute myeloid)" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acute-myeloid-leukaemia/", + "name": "Acute myeloid leukaemia" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/altitude-sickness/", - "name": "Altitude sickness" - }, - { - "description": "Alzheimer's disease is the most common cause of dementia. Dementia is a group of symptoms associated with a decline in the way your brain functions, affecting your memory and the way you behave.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2018-05-10T14:10:06+00:00", - "dateModified": "2023-09-26T08:57:57+00:00", - "lastReviewed": ["2021-07-05T00:00:00+00:00", "2024-07-05T00:00:00+00:00"], - "reviewDue": "2024-07-05T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Acute pancreatitis is a serious condition where the pancreas becomes inflamed over a short period of time.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2018-04-09T09:11:55+00:00", + "dateModified": "2023-12-04T09:18:13+00:00", + "lastReviewed": [ + "2022-05-23T23:00:00+00:00", + "2025-05-24T00:00:00+00:00" + ], + "reviewDue": "2025-05-24T00:00:00+00:00", + "keywords": "", + "alternateName": [ + "Pancreatitis (acute)" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acute-pancreatitis/", + "name": "Acute pancreatitis" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/alzheimers-disease/", - "name": "Alzheimer's disease" - }, - { - "description": "Read about amniocentesis, a diagnostic test carried out during pregnancy to assess whether your baby could develop a genetic or chromosomal condition.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Procedure", "Test"], - "datePublished": "2017-10-20T11:41:13+00:00", - "dateModified": "2022-10-19T15:48:39+00:00", - "lastReviewed": ["2022-10-12T00:00:00+00:00", "2025-10-12T00:00:00+00:00"], - "reviewDue": "2025-10-12T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Addison's disease, also known as primary adrenal insufficiency or hypoadrenalism, is a rare disorder of the adrenal glands.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2018-06-22T11:43:53+00:00", + "dateModified": "2022-02-04T11:36:48+00:00", + "lastReviewed": [ + "2021-12-17T01:00:00+00:00", + "2024-12-17T01:00:00+00:00" + ], + "reviewDue": "2024-12-17T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/addisons-disease/", + "name": "Addison's disease" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/amniocentesis/", - "name": "Amniocentesis" - }, - { - "description": "Read about anal fissures and the importance of seeing a GP. Also, read about the symptoms, causes, treatment and prevention of anal fissures.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T10:43:07+00:00", - "dateModified": "2022-05-30T15:14:36+00:00", - "lastReviewed": ["2021-11-09T00:00:00+00:00", "2024-11-09T00:00:00+00:00"], - "reviewDue": "2024-11-09T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Albinism is an inherited condition that affects the production of melanin, the pigment that colours the skin, hair and eyes.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-11-23T11:06:19+00:00", + "dateModified": "2023-10-02T16:30:33+00:00", + "lastReviewed": [ + "2023-09-25T23:00:00+00:00", + "2026-09-25T23:00:00+00:00" + ], + "reviewDue": "2026-09-25T23:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/albinism/", + "name": "Albinism" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anal-fissure/", - "name": "Anal fissure" - }, - { - "description": "Find out what an anal fistula is, including information about the symptoms, causes and treatments.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T10:45:38+00:00", - "dateModified": "2023-06-08T14:35:01+00:00", - "lastReviewed": ["2023-02-21T01:00:00+00:00", "2026-02-21T01:00:00+00:00"], - "reviewDue": "2026-02-21T01:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Alcohol misuse is where a person consumes excessive amounts of alcoholic drinks.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T11:36:38+00:00", + "dateModified": "2024-11-27T11:25:56+00:00", + "lastReviewed": [ + "2022-10-04T00:00:00+00:00", + "2025-10-04T00:00:00+00:00" + ], + "reviewDue": "2025-10-04T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/alcohol-misuse/", + "name": "Alcohol misuse" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anal-fistula/", - "name": "Anal fistula" - }, - { - "description": "NHS information about anaphylaxis, including symptoms, when to get help, treatment and prevention.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T11:15:04+00:00", - "dateModified": "2023-08-17T12:27:19+00:00", - "lastReviewed": ["2023-06-21T02:00:00+00:00", "2026-06-21T02:00:00+00:00"], - "reviewDue": "2026-06-21T02:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Alcohol-related liver disease (ARLD) refers to liver damage caused by excess alcohol intake. There are several stages of severity and a range of associated symptoms.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T11:37:03+00:00", + "dateModified": "2024-04-08T11:52:39+00:00", + "lastReviewed": [ + "2022-09-19T23:00:00+00:00", + "2025-09-19T23:00:00+00:00" + ], + "reviewDue": "2025-09-19T23:00:00+00:00", + "keywords": "", + "alternateName": [ + "Liver disease (alcohol-related)" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/alcohol-related-liver-disease-arld/", + "name": "Alcohol-related liver disease" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anaphylaxis/", - "name": "Anaphylaxis" - }, - { - "description": "Find out about androgen insensitivity syndrome (AIS), a rare condition that affects the development of a person's genitals and reproductive organs.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T11:58:16+00:00", - "dateModified": "2022-10-10T10:37:47+00:00", - "lastReviewed": ["2021-03-17T00:00:00+00:00", "2024-03-17T00:00:00+00:00"], - "reviewDue": "2024-03-17T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about allergic rhinitis, including what the symptoms are, what you can do about it and when to get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T11:37:18+00:00", + "dateModified": "2024-09-11T13:08:28+00:00", + "lastReviewed": [ + "2022-05-30T00:00:00+00:00", + "2025-05-30T00:00:00+00:00" + ], + "reviewDue": "2025-05-30T00:00:00+00:00", + "keywords": "", + "alternateName": [ + "Rhinitis (allergic)" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/allergic-rhinitis/", + "name": "Allergic rhinitis" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/androgen-insensitivity-syndrome/", - "name": "Androgen insensitivity syndrome" - }, - { - "description": "Read more about angina, which is a type of chest pain caused by not enough blood going to the muscles of the heart. It usually happens when the arteries supplying the heart become hardened and narrowed.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T11:50:47+00:00", - "dateModified": "2023-09-05T19:55:58+00:00", - "lastReviewed": ["2021-04-21T23:00:00+00:00", "2024-04-21T23:00:00+00:00"], - "reviewDue": "2024-04-21T23:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about allergies, including typical symptoms, common allergies, when to get emergency medical help and allergy testing and treatments.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-19T14:45:29+00:00", + "dateModified": "2024-11-25T12:26:37+00:00", + "lastReviewed": [ + "2022-08-01T23:00:00+00:00", + "2025-08-01T23:00:00+00:00" + ], + "reviewDue": "2025-08-01T23:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/allergies/", + "name": "Allergies" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/angina/", - "name": "Angina" - }, - { - "description": "Find out what angioedema is, what the symptoms are, why it happens and how it's treated.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-19T15:06:52+00:00", - "dateModified": "2023-01-26T12:21:23+00:00", - "lastReviewed": ["2023-01-18T01:00:00+00:00", "2026-01-18T01:00:00+00:00"], - "reviewDue": "2026-01-18T01:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "NHS information about altitude sickness, including symptoms, treatment and how to prevent it.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T10:41:29+00:00", + "dateModified": "2023-08-02T11:01:58+00:00", + "lastReviewed": [ + "2023-07-31T01:00:00+00:00", + "2026-07-31T02:00:00+00:00" + ], + "reviewDue": "2026-07-31T02:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/altitude-sickness/", + "name": "Altitude sickness" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/angioedema/", - "name": "Angioedema" - }, - { - "description": "Find out why angiography is used, what happens during the procedure, and the possible risks involved. Also, read about the different types of angiography.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Procedure", "Test"], - "datePublished": "2017-10-19T14:44:01+00:00", - "dateModified": "2023-02-02T09:42:42+00:00", - "lastReviewed": ["2023-01-30T00:00:00+00:00", "2026-01-30T00:00:00+00:00"], - "reviewDue": "2026-01-30T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Alzheimer's disease is the most common cause of dementia. Dementia is a group of symptoms associated with a decline in the way your brain functions, affecting your memory and the way you behave.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2018-05-10T14:10:06+00:00", + "dateModified": "2024-07-05T09:50:17+00:00", + "lastReviewed": [ + "2024-07-04T00:00:00+00:00", + "2027-07-04T00:00:00+00:00" + ], + "reviewDue": "2027-07-04T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/alzheimers-disease/", + "name": "Alzheimer's disease" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/angiography/", - "name": "Angiography" - }, - { - "description": "Read about ankylosing spondylitis (AS) and other types of axial spondyloarthritis, a long-term (chronic) condition in which the spine and other areas of the body become inflamed.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T11:50:54+00:00", - "dateModified": "2023-05-16T16:35:22+00:00", - "lastReviewed": ["2023-01-05T01:00:00+00:00", "2026-01-05T01:00:00+00:00"], - "reviewDue": "2026-01-05T01:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Read about amniocentesis, a diagnostic test carried out during pregnancy to assess whether your baby could develop a genetic or chromosomal condition.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Test", + "Procedure" + ], + "datePublished": "2017-10-20T11:41:13+00:00", + "dateModified": "2024-11-15T09:53:54+00:00", + "lastReviewed": [ + "2022-10-12T00:00:00+00:00", + "2025-10-12T00:00:00+00:00" + ], + "reviewDue": "2025-10-12T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/amniocentesis/", + "name": "Amniocentesis" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/ankylosing-spondylitis/", - "name": "Ankylosing spondylitis" - }, - { - "description": "Find out about antibiotics, which are used to treat or prevent some types of bacterial infection.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Medicine"], - "datePublished": "2017-10-20T12:01:37+00:00", - "dateModified": "2023-04-12T14:52:48+00:00", - "lastReviewed": ["2022-11-11T01:00:00+00:00", "2025-11-11T01:00:00+00:00"], - "reviewDue": "2025-11-11T01:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Read about anal fissures and the importance of seeing a GP. Also, read about the symptoms, causes, treatment and prevention of anal fissures.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T10:43:07+00:00", + "dateModified": "2024-04-16T12:16:38+00:00", + "lastReviewed": [ + "2021-11-09T00:00:00+00:00", + "2024-11-09T00:00:00+00:00" + ], + "reviewDue": "2024-11-09T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anal-fissure/", + "name": "Anal fissure" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/antibiotics/", - "name": "Antibiotics" - }, - { - "description": "Anticoagulants are medicines that reduce the ability of the blood to clot. Read about why they're used, how you take them and what you need to bear in mind while taking them.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Medicine"], - "datePublished": "2018-02-06T08:50:51+00:00", - "dateModified": "2022-05-17T09:29:52+00:00", - "lastReviewed": ["2021-07-26T16:18:00+00:00", "2024-07-26T16:18:00+00:00"], - "reviewDue": "2024-07-26T16:18:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out what an anal fistula is, including information about the symptoms, causes and treatments.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T10:45:38+00:00", + "dateModified": "2023-12-04T09:44:24+00:00", + "lastReviewed": [ + "2023-02-21T01:00:00+00:00", + "2026-02-21T01:00:00+00:00" + ], + "reviewDue": "2026-02-21T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anal-fistula/", + "name": "Anal fistula" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anticoagulants/", - "name": "Anticoagulant medicines" - }, - { - "description": "Antidepressants are a type of medication used to treat clinical depression or prevent it recurring. They can also be used to treat some other conditions.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Medicine"], - "datePublished": "2017-10-24T14:35:59+00:00", - "dateModified": "2021-11-18T15:35:42+00:00", - "lastReviewed": ["2018-08-16T00:00:00+00:00", "2021-08-16T00:00:00+00:00"], - "reviewDue": "2021-08-16T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "NHS information about anaphylaxis, including symptoms, when to get help, treatment and prevention.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T11:15:04+00:00", + "dateModified": "2024-12-05T16:07:12+00:00", + "lastReviewed": [ + "2023-06-21T02:00:00+00:00", + "2026-06-21T02:00:00+00:00" + ], + "reviewDue": "2026-06-21T02:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anaphylaxis/", + "name": "Anaphylaxis" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/antidepressants/", - "name": "Antidepressants" - }, - { - "description": "Antiphospholipid syndrome (APS), also known as Hughes syndrome, is a disorder of the immune system that causes an increased risk of blood clots.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2018-05-04T15:23:38+00:00", - "dateModified": "2022-10-05T10:51:52+00:00", - "lastReviewed": ["2022-06-20T00:00:00+00:00", "2025-06-20T00:00:00+00:00"], - "reviewDue": "2025-06-20T00:00:00+00:00", - "keywords": "", - "alternateName": ["Hughes syndrome"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about androgen insensitivity syndrome (AIS), a rare condition that affects the development of a person's genitals and reproductive organs.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T11:58:16+00:00", + "dateModified": "2024-04-02T09:26:51+00:00", + "lastReviewed": [ + "2024-03-18T15:31:00+00:00", + "2027-03-18T00:00:00+00:00" + ], + "reviewDue": "2027-03-18T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/androgen-insensitivity-syndrome/", + "name": "Androgen insensitivity syndrome" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/antiphospholipid-syndrome/", - "name": "Antiphospholipid syndrome (APS)" - }, - { - "description": "Read about aortic valve replacement, a type of open heart surgery that replaces faulty or or damaged valves.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Procedure", "Treatment"], - "datePublished": "2017-10-20T12:19:54+00:00", - "dateModified": "2022-01-25T11:52:35+00:00", - "lastReviewed": ["2021-12-23T00:00:00+00:00", "2024-12-23T00:00:00+00:00"], - "reviewDue": "2024-12-23T00:00:00+00:00", - "keywords": "", - "alternateName": ["Heart valve replacement"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about angina, a type of chest pain caused by the heart not getting enough blood. Find out about the symptoms and how it's treated.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T11:50:47+00:00", + "dateModified": "2025-03-19T14:18:04+00:00", + "lastReviewed": [ + "2025-03-18T15:00:00+00:00", + "2028-03-18T15:00:00+00:00" + ], + "reviewDue": "2028-03-18T15:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/angina/", + "name": "Angina" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/aortic-valve-replacement/", - "name": "Aortic valve replacement" - }, - { - "description": "Read about aphasia, where a person has problems communicating. Find out about the types of aphasia, what causes it, and how it's diagnosed and treated.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T12:07:10+00:00", - "dateModified": "2023-08-22T10:34:34+00:00", - "lastReviewed": ["2021-03-23T00:00:00+00:00", "2024-03-23T00:00:00+00:00"], - "reviewDue": "2024-03-23T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out what angioedema is, what the symptoms are, why it happens and how it's treated.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-19T15:06:52+00:00", + "dateModified": "2025-02-20T17:17:29+00:00", + "lastReviewed": [ + "2023-01-18T01:00:00+00:00", + "2026-01-18T01:00:00+00:00" + ], + "reviewDue": "2026-01-18T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/angioedema/", + "name": "Angioedema" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/aphasia/", - "name": "Aphasia" - }, - { - "description": "Find out about appendicitis, a painful swelling of the appendix, including what causes it, when to get medical help and how the appendix is surgically removed (appendicectomy or appendectomy).", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T14:55:04+00:00", - "dateModified": "2023-05-17T17:32:08+00:00", - "lastReviewed": ["2022-10-20T23:00:00+00:00", "2025-10-20T23:00:00+00:00"], - "reviewDue": "2025-10-20T23:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Read about ankylosing spondylitis (AS) and other types of axial spondyloarthritis, a long-term (chronic) condition in which the spine and other areas of the body become inflamed.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T11:50:54+00:00", + "dateModified": "2024-02-07T11:30:31+00:00", + "lastReviewed": [ + "2023-01-05T01:00:00+00:00", + "2026-01-05T01:00:00+00:00" + ], + "reviewDue": "2026-01-05T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/ankylosing-spondylitis/", + "name": "Ankylosing spondylitis" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/appendicitis/", - "name": "Appendicitis" - }, - { - "description": "Read about arthritis, a common condition that causes pain and inflammation in a joint. Although there's no cure, treatment can help slow it down.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T10:02:53+00:00", - "dateModified": "2022-09-16T10:48:22+00:00", - "lastReviewed": ["2022-09-07T23:00:00+00:00", "2025-09-07T23:00:00+00:00"], - "reviewDue": "2025-09-07T23:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Antiphospholipid syndrome (APS), also known as Hughes syndrome, is a disorder of the immune system that causes an increased risk of blood clots.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2018-05-04T15:23:38+00:00", + "dateModified": "2024-11-27T11:31:54+00:00", + "lastReviewed": [ + "2022-06-20T00:00:00+00:00", + "2025-06-20T00:00:00+00:00" + ], + "reviewDue": "2025-06-20T00:00:00+00:00", + "keywords": "", + "alternateName": [ + "Hughes syndrome" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/antiphospholipid-syndrome/", + "name": "Antiphospholipid syndrome (APS)" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/arthritis/", - "name": "Arthritis" - }, - { - "description": "Read about arthroscopy, a type of keyhole surgery used to diagnose and sometimes treat joint problems. Keyhole surgery is where only small cuts are made.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Procedure", "Test"], - "datePublished": "2017-10-20T12:11:25+00:00", - "dateModified": "2022-06-14T11:22:45+00:00", - "lastReviewed": ["2022-06-09T00:00:00+00:00", "2025-06-09T00:00:00+00:00"], - "reviewDue": "2025-06-09T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Aphasia is a condition that affects how you communicate. It can make it hard to speak, understand others, read, write and use numbers. Find out about the symptoms, treatment and what causes it.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T12:07:10+00:00", + "dateModified": "2025-04-03T07:39:28+00:00", + "lastReviewed": [ + "2025-04-01T08:00:00+00:00", + "2028-04-01T08:00:00+00:00" + ], + "reviewDue": "2028-04-01T08:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/aphasia/", + "name": "Aphasia" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/arthroscopy/", - "name": "Arthroscopy" - }, - { - "description": "Aspergillosis is the name of a group of fungal conditions caused by a mould called aspergillus.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T12:45:00+00:00", - "dateModified": "2021-11-18T15:36:02+00:00", - "lastReviewed": ["2021-03-11T00:00:00+00:00", "2024-03-11T00:00:00+00:00"], - "reviewDue": "2024-03-11T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about appendicitis, including what the symptoms are, what to do if you think you have it, how it's treated and possible complications.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T14:55:04+00:00", + "dateModified": "2025-04-02T10:27:27+00:00", + "lastReviewed": [ + "2024-08-08T23:00:00+00:00", + "2027-08-08T23:00:00+00:00" + ], + "reviewDue": "2027-08-08T23:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/appendicitis/", + "name": "Appendicitis" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/aspergillosis/", - "name": "Aspergillosis" - }, - { - "description": "Find out what asthma is, what the symptoms are, what causes it and how it's treated.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T09:33:19+00:00", - "dateModified": "2023-09-26T09:13:01+00:00", - "lastReviewed": ["2021-04-18T23:00:00+00:00", "2024-04-18T23:00:00+00:00"], - "reviewDue": "2024-04-18T23:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Read about arthritis, a common condition that causes pain and inflammation in a joint. Although there's no cure, treatment can help slow it down.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T10:02:53+00:00", + "dateModified": "2024-04-17T07:17:20+00:00", + "lastReviewed": [ + "2022-09-07T23:00:00+00:00", + "2025-09-07T23:00:00+00:00" + ], + "reviewDue": "2025-09-07T23:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/arthritis/", + "name": "Arthritis" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/asthma/", - "name": "Asthma" - }, - { - "description": "Read about astigmatism, a common and usually minor condition of the eye that causes blurred or distorted vision. Find out what the symptoms and treatments are.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-11-21T12:54:01+00:00", - "dateModified": "2022-07-04T09:12:16+00:00", - "lastReviewed": ["2020-12-08T01:00:00+00:00", "2023-12-08T01:00:00+00:00"], - "reviewDue": "2023-12-08T01:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out more about aspergillosis, the name of a group of conditions caused by a mould called aspergillus.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T12:45:00+00:00", + "dateModified": "2024-04-26T09:36:44+00:00", + "lastReviewed": [ + "2024-04-18T23:00:00+00:00", + "2027-04-18T23:00:00+00:00" + ], + "reviewDue": "2027-04-18T23:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/aspergillosis/", + "name": "Aspergillosis" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/astigmatism/", - "name": "Astigmatism" - }, - { - "description": "Ataxia is the term for a group of disorders that affect co-ordination, balance and speech. Find out about the main types, what causes them, and how they're treated.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T13:18:17+00:00", - "dateModified": "2022-05-17T15:10:05+00:00", - "lastReviewed": ["2021-04-16T15:02:00+00:00", "2024-04-16T15:02:00+00:00"], - "reviewDue": "2024-04-16T15:02:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about asthma, a common condition that affects breathing, including the symptoms, treatment and how it affects your life.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T09:33:19+00:00", + "dateModified": "2025-04-10T16:00:15+00:00", + "lastReviewed": [ + "2025-04-06T23:00:00+00:00", + "2028-04-06T23:00:00+00:00" + ], + "reviewDue": "2028-04-06T23:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/asthma/", + "name": "Asthma" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/ataxia/", - "name": "Ataxia" - }, - { - "description": "Read about atopic eczema (atopic dermatitis), a condition that causes the skin to become itchy, dry, cracked and sore.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-19T15:22:44+00:00", - "dateModified": "2023-09-26T08:42:19+00:00", - "lastReviewed": ["2019-12-05T00:00:00+00:00", "2022-12-05T00:00:00+00:00"], - "reviewDue": "2022-12-05T00:00:00+00:00", - "keywords": "", - "alternateName": ["Eczema (atopic)"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out more about astigmatism, a common eye condition, including the symptoms and how it's treated.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-11-21T12:54:01+00:00", + "dateModified": "2024-10-22T14:40:37+00:00", + "lastReviewed": [ + "2024-09-19T00:00:00+00:00", + "2027-09-19T00:00:00+00:00" + ], + "reviewDue": "2027-09-19T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/astigmatism/", + "name": "Astigmatism" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/atopic-eczema/", - "name": "Atopic eczema" - }, - { - "description": "Read about atrial fibrillation, which is a heart condition that causes an irregular and often abnormally fast heart rate.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T12:22:43+00:00", - "dateModified": "2022-06-24T13:31:09+00:00", - "lastReviewed": ["2021-05-17T00:00:00+00:00", "2024-05-17T00:00:00+00:00"], - "reviewDue": "2024-05-17T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Ataxia is the term for a group of disorders that affect co-ordination, balance and speech. Find out about the main types, what causes them, and how they're treated.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T13:18:17+00:00", + "dateModified": "2024-11-27T11:54:09+00:00", + "lastReviewed": [ + "2021-04-16T15:02:00+00:00", + "2024-04-16T15:02:00+00:00" + ], + "reviewDue": "2024-04-16T15:02:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/ataxia/", + "name": "Ataxia" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/atrial-fibrillation/", - "name": "Atrial fibrillation" - }, - { - "description": "Read about attention deficit hyperactivity disorder (ADHD), a condition that affects people's behaviour.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2018-06-01T08:55:10+00:00", - "dateModified": "2023-07-28T15:24:09+00:00", - "lastReviewed": ["2021-12-24T01:00:00+00:00", "2024-12-24T01:00:00+00:00"], - "reviewDue": "2024-12-24T01:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about atrial fibrillation, a condition that causes an irregular heart rhythm, including symptoms, treatment and how it affects your life.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T12:22:43+00:00", + "dateModified": "2025-02-20T17:57:08+00:00", + "lastReviewed": [ + "2025-01-13T11:00:00+00:00", + "2028-01-13T11:00:00+00:00" + ], + "reviewDue": "2028-01-13T11:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/atrial-fibrillation/", + "name": "Atrial fibrillation" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/attention-deficit-hyperactivity-disorder-adhd/", - "name": "Attention deficit hyperactivity disorder (ADHD)" - }, - { - "description": "Find out about autosomal dominant polycystic kidney disease (ADPKD), an inherited condition that causes small fluid-filled sacs called cysts to develop in the kidneys.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T12:56:56+00:00", - "dateModified": "2023-02-28T08:22:03+00:00", - "lastReviewed": ["2023-02-23T12:21:00+00:00", "2026-02-23T12:21:00+00:00"], - "reviewDue": "2026-02-23T12:21:00+00:00", - "keywords": "", - "alternateName": ["Polycystic kidney disease (autosomal dominant)"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about autosomal dominant polycystic kidney disease (ADPKD), an inherited condition that causes small fluid-filled sacs called cysts to develop in the kidneys.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T12:56:56+00:00", + "dateModified": "2024-04-08T11:54:02+00:00", + "lastReviewed": [ + "2023-02-23T12:21:00+00:00", + "2026-02-23T12:21:00+00:00" + ], + "reviewDue": "2026-02-23T12:21:00+00:00", + "keywords": "", + "alternateName": [ + "Polycystic kidney disease (autosomal dominant)" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/autosomal-dominant-polycystic-kidney-disease-adpkd/", + "name": "Autosomal dominant polycystic kidney disease" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/autosomal-dominant-polycystic-kidney-disease-adpkd/", - "name": "Autosomal dominant polycystic kidney disease" - }, - { - "description": "Autosomal recessive polycystic kidney disease (ARPKD) is a rare inherited childhood condition where the development of the kidneys and liver is abnormal.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T13:09:20+00:00", - "dateModified": "2023-01-31T11:30:16+00:00", - "lastReviewed": ["2023-01-10T00:00:00+00:00", "2026-01-10T00:00:00+00:00"], - "reviewDue": "2026-01-10T00:00:00+00:00", - "keywords": "", - "alternateName": ["Polycystic kidney disease (autosomal recessive)"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Autosomal recessive polycystic kidney disease (ARPKD) is a rare inherited childhood condition where the development of the kidneys and liver is abnormal.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T13:09:20+00:00", + "dateModified": "2024-04-08T11:54:52+00:00", + "lastReviewed": [ + "2023-01-10T00:00:00+00:00", + "2026-01-10T00:00:00+00:00" + ], + "reviewDue": "2026-01-10T00:00:00+00:00", + "keywords": "", + "alternateName": [ + "Polycystic kidney disease (autosomal recessive)" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/autosomal-recessive-polycystic-kidney-disease-arpkd/", + "name": "Autosomal recessive polycystic kidney disease" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/autosomal-recessive-polycystic-kidney-disease-arpkd/", - "name": "Autosomal recessive polycystic kidney disease" - }, - { - "description": "Read more about age-related macular degeneration (AMD), which mainly affects people over 50 years of age and usually leads to a gradual loss of central vision.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-23T13:25:25+00:00", - "dateModified": "2021-11-18T15:46:43+00:00", - "lastReviewed": ["2021-04-20T00:00:00+00:00", "2024-04-20T00:00:00+00:00"], - "reviewDue": "2024-04-20T00:00:00+00:00", - "keywords": "", - "alternateName": ["Macular degeneration (age-related)"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out more about age-related macular degeneration (AMD), which mainly affects people over 50 years of age and usually leads to a gradual loss of central vision.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-23T13:25:25+00:00", + "dateModified": "2025-01-31T16:37:25+00:00", + "lastReviewed": [ + "2025-01-22T01:00:00+00:00", + "2028-01-22T01:00:00+00:00" + ], + "reviewDue": "2028-01-22T01:00:00+00:00", + "keywords": "", + "alternateName": [ + "Macular degeneration (age-related)" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/age-related-macular-degeneration-amd/", + "name": "Age-related macular degeneration (AMD)" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/age-related-macular-degeneration-amd/", - "name": "Age-related macular degeneration (AMD)" - }, - { - "description": "Find out what an abortion involves, how you can get one on the NHS, and what support is available to help you make a decision.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Procedure"], - "datePublished": "2017-10-18T11:36:09+00:00", - "dateModified": "2023-04-17T13:58:22+00:00", - "lastReviewed": ["2020-04-24T11:13:00+00:00", "2023-04-24T11:13:00+00:00"], - "reviewDue": "2023-04-24T11:13:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about adenomyosis, including symptoms, what to do if you think you have it and how it's treated.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2023-07-21T07:11:46+00:00", + "dateModified": "2024-03-14T13:05:29+00:00", + "lastReviewed": [ + "2023-07-17T15:30:00+00:00", + "2026-07-17T15:30:00+00:00" + ], + "reviewDue": "2026-07-17T15:30:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/adenomyosis/", + "name": "Adenomyosis" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/abortion/", - "name": "Abortion" - }, - { - "description": "Find out about antifungal medicines, which are used to treat fungal infections such as thrush and athlete's foot.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Medicine"], - "datePublished": "2017-10-19T07:12:16+00:00", - "dateModified": "2023-04-04T17:17:01+00:00", - "lastReviewed": ["2023-04-03T07:05:00+00:00", "2026-04-03T07:05:00+00:00"], - "reviewDue": "2026-04-03T07:05:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about atopic eczema, including symptoms, causes and treatments.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2024-09-11T07:50:02+00:00", + "dateModified": "2024-09-11T07:50:02+00:00", + "lastReviewed": [ + "2024-09-06T15:18:00+00:00", + "2027-09-06T15:18:00+00:00" + ], + "reviewDue": "2027-09-06T15:18:00+00:00", + "keywords": "", + "alternateName": [ + "Eczema (atopic)" + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/atopic-eczema/", + "name": "Atopic eczema" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/antifungal-medicines/", - "name": "Antifungal medicines" - }, - { - "description": "Find out what you can do to ease ankle pain, what could be causing the pain and when to get medical help.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Symptom"], - "datePublished": "2022-03-30T12:58:40+00:00", - "dateModified": "2023-01-11T09:33:51+00:00", - "lastReviewed": ["2022-02-22T08:29:00+00:00", "2025-02-22T08:29:00+00:00"], - "reviewDue": "2025-02-22T08:29:00+00:00", - "keywords": "" + { + "description": "Find out about ADHD (attention deficit hyperactivity disorder) in adults, the symptoms of ADHD, how to get a diagnosis and how to manage it.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2025-03-21T15:33:51+00:00", + "dateModified": "2025-03-27T15:41:27+00:00", + "lastReviewed": [ + "2025-03-19T00:00:00+00:00", + "2028-03-19T11:08:00+00:00" + ], + "reviewDue": "2028-03-19T11:08:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/adhd-adults/", + "name": "ADHD in adults" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/foot-pain/ankle-pain/", - "name": "Ankle pain" - }, - { - "description": "Find out about adenomyosis, including symptoms, what to do if you think you have it and how it's treated.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2023-07-21T07:11:46+00:00", - "dateModified": "2023-07-21T09:01:15+00:00", - "lastReviewed": ["2023-07-17T15:30:00+00:00", "2026-07-17T15:30:00+00:00"], - "reviewDue": "2026-07-17T15:30:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about ADHD (attention deficit hyperactivity disorder) in children and teenagers, the symptoms of ADHD, how to get a diagnosis and how to manage it.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2025-03-21T15:32:36+00:00", + "dateModified": "2025-03-21T15:32:36+00:00", + "lastReviewed": [ + "2025-03-19T00:00:00+00:00", + "2028-03-19T15:55:00+00:00" + ], + "reviewDue": "2028-03-19T15:55:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/adhd-children-teenagers/", + "name": "ADHD in children and young people" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/adenomyosis/", - "name": "Adenomyosis" - }, - { - "description": "Find out what antisocial personality disorder is, what the signs are, and how it's diagnosed and treated.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2021-02-12T17:48:26+00:00", - "dateModified": "2022-06-14T10:28:25+00:00", - "lastReviewed": ["2021-12-23T15:40:00+00:00", "2024-12-23T15:40:00+00:00"], - "reviewDue": "2024-12-23T15:40:00+00:00", - "keywords": "" + { + "description": "Find out what antisocial personality disorder is, what the signs are, and how it's diagnosed and treated.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2021-02-12T17:48:26+00:00", + "dateModified": "2022-06-14T10:28:25+00:00", + "lastReviewed": [ + "2021-12-23T15:40:00+00:00", + "2024-12-23T15:40:00+00:00" + ], + "reviewDue": "2024-12-23T15:40:00+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/mental-health/conditions/antisocial-personality-disorder/", + "name": "Antisocial personality disorder" }, - "url": "https://api.service.nhs.uk/nhs-website-content/mental-health/conditions/antisocial-personality-disorder/", - "name": "Antisocial personality disorder" - } + { + "description": "Read about anxiety disorders in children and teenagers, with links to other useful resources.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "WebPage", + "genre": [ + "Advice or information" + ], + "datePublished": "2021-02-04T12:39:01+00:00", + "dateModified": "2025-03-24T13:44:27+00:00", + "lastReviewed": [ + "2023-12-15T00:00:00+00:00", + "2026-12-15T00:00:00+00:00" + ], + "reviewDue": "2026-12-15T00:00:00+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/mental-health/children-and-young-adults/advice-for-parents/anxiety-disorders-in-children/", + "name": "Anxiety disorders in children" + } ], "webpage": "https://www.nhs.uk/conditions/" } diff --git a/sandbox/responses/conditions-root-category-a-genre-guide.json b/sandbox/responses/conditions-root-category-a-genre-guide.json deleted file mode 100644 index 4874f56..0000000 --- a/sandbox/responses/conditions-root-category-a-genre-guide.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "@context": "http://schema.org", - "@type": "MedicalWebPage", - "name": "Health A to Z", - "copyrightHolder": { "name": "Crown Copyright", "@type": "Organization" }, - "license": "https://developer.api.nhs.uk/terms", - "author": { - "url": "https://www.nhs.uk", - "logo": "https://assets.nhs.uk/nhsuk-cms/images/nhs-attribution.width-510.png", - "email": "nhswebsite.servicedesk@nhs.net", - "@type": "Organization", - "name": "NHS website" - }, - "about": { "@type": "WebPage", "name": "Health A to Z", "alternateName": "" }, - "description": "", - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/", - "genre": [], - "keywords": "", - "dateModified": "2021-11-18T15:26:06+00:00", - "breadcrumb": { - "@context": "http://schema.org", - "@type": "BreadcrumbList", - "itemListElement": [ - { - "@type": "ListItem", - "position": 0, - "item": { "@id": "https://api.service.nhs.uk/nhs-website-content/conditions/", "name": "Health A to Z", "genre": [] } - } - ] - }, - "contentSubTypes": [], - "significantLink": [], - "webpage": "https://www.nhs.uk/conditions/" -} diff --git a/sandbox/responses/conditions-root-category-a-genre-hub.json b/sandbox/responses/conditions-root-category-a-genre-hub.json index 7923c4e..42925ed 100644 --- a/sandbox/responses/conditions-root-category-a-genre-hub.json +++ b/sandbox/responses/conditions-root-category-a-genre-hub.json @@ -1,131 +1,206 @@ { "@context": "http://schema.org", "@type": "MedicalWebPage", - "name": "Health A to Z", - "copyrightHolder": { "name": "Crown Copyright", "@type": "Organization" }, + "name": "Conditions A to Z", + "copyrightHolder": { + "name": "Crown Copyright", + "@type": "Organization" + }, "license": "https://developer.api.nhs.uk/terms", "author": { - "url": "https://www.nhs.uk", - "logo": "https://assets.nhs.uk/nhsuk-cms/images/nhs-attribution.width-510.png", - "email": "nhswebsite.servicedesk@nhs.net", - "@type": "Organization", - "name": "NHS website" + "url": "https://www.nhs.uk", + "logo": "https://assets.nhs.uk/nhsuk-cms/images/nhs-attribution.width-510.png", + "email": "nhswebsite.servicedesk@nhs.net", + "@type": "Organization", + "name": "NHS website" + }, + "about": { + "@type": "WebPage", + "name": "Conditions A to Z", + "alternateName": "" }, - "about": { "@type": "WebPage", "name": "Health A to Z", "alternateName": "" }, - "description": "", + "description": "Find out about health conditions, including their symptoms and how they're treated.", "url": "https://api.service.nhs.uk/nhs-website-content/conditions/", "genre": [], "keywords": "", - "dateModified": "2021-11-18T15:26:06+00:00", + "dateModified": "2025-04-16T13:49:43+00:00", "breadcrumb": { - "@context": "http://schema.org", - "@type": "BreadcrumbList", - "itemListElement": [ - { - "@type": "ListItem", - "position": 0, - "item": { "@id": "https://api.service.nhs.uk/nhs-website-content/conditions/", "name": "Health A to Z", "genre": [] } - } - ] + "@context": "http://schema.org", + "@type": "BreadcrumbList", + "itemListElement": [ + { + "@type": "ListItem", + "position": 0, + "item": { + "@id": "https://api.service.nhs.uk/nhs-website-content/conditions/", + "name": "Conditions A to Z", + "genre": [] + } + } + ] }, "contentSubTypes": [], "significantLink": [ - { - "description": "Find out what you can do to ease ankle pain, what could be causing the pain and when to get medical help.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Symptom"], - "datePublished": "2022-03-30T12:58:40+00:00", - "dateModified": "2023-01-11T09:33:51+00:00", - "lastReviewed": ["2022-02-22T08:29:00+00:00", "2025-02-22T08:29:00+00:00"], - "reviewDue": "2025-02-22T08:29:00+00:00", - "keywords": "" + { + "description": "NHS guide to autism. Find out what autism is and what the common signs are. Get help and advice if you or your child are autistic.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2023-03-08T13:51:37+00:00", + "dateModified": "2023-03-13T08:37:12+00:00", + "keywords": "", + "alternateName": [ + "Asperger's" + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/autism/", + "name": "Autism" + }, + { + "description": "Find out about acute lymphoblastic leukaemia (ALL), including what the symptoms are, what to do if you think you have it, how it's treated and where to get support.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2023-08-07T09:51:57+00:00", + "dateModified": "2023-08-07T09:51:57+00:00", + "keywords": "", + "alternateName": [ + "Leukaemia (acute lymphoblastic)" + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acute-lymphoblastic-leukaemia/", + "name": "Acute lymphoblastic leukaemia" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/foot-pain/ankle-pain/", - "name": "Ankle pain" - }, - { - "description": "NHS guide to autism. Find out what autism is and what the common signs are. Get help and advice if you or your child are autistic.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2023-03-08T13:51:37+00:00", - "dateModified": "2023-03-13T08:37:12+00:00", - "keywords": "", - "alternateName": ["Asperger's"] + { + "description": "Find out about anal cancer, including what the symptoms are, what to do if you think you have it, how it's treated, and where to get support.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2024-03-28T10:21:34+00:00", + "dateModified": "2024-03-28T10:21:34+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anal-cancer/", + "name": "Anal cancer" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/autism/", - "name": "Autism" - }, - { - "description": "Find out about acute lymphoblastic leukaemia (ALL), including what the symptoms are, what to do if you think you have it, how it's treated and where to get support.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2023-08-07T09:51:57+00:00", - "dateModified": "2023-08-07T09:51:57+00:00", - "keywords": "", - "alternateName": ["Leukaemia (acute lymphoblastic)"] + { + "description": "Find out about atopic eczema, including symptoms, causes and treatments.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2024-09-11T07:50:02+00:00", + "dateModified": "2024-09-11T07:50:02+00:00", + "lastReviewed": [ + "2024-09-06T15:18:00+00:00", + "2027-09-06T15:18:00+00:00" + ], + "reviewDue": "2027-09-06T15:18:00+00:00", + "keywords": "", + "alternateName": [ + "Eczema (atopic)" + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/atopic-eczema/", + "name": "Atopic eczema" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acute-lymphoblastic-leukaemia/", - "name": "Acute lymphoblastic leukaemia" - }, - { - "description": "Find out what anorexia nervosa is, what causes it, the signs to look out for, and the treatment and support available.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2021-02-11T11:22:08+00:00", - "dateModified": "2022-08-16T12:47:57+00:00", - "keywords": "" + { + "description": "Find out what anorexia nervosa is, what causes it, the signs to look out for, and the treatment and support available.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2021-02-11T11:22:08+00:00", + "dateModified": "2024-01-22T12:49:14+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/mental-health/conditions/anorexia/", + "name": "Anorexia nervosa" }, - "url": "https://api.service.nhs.uk/nhs-website-content/mental-health/conditions/anorexia/", - "name": "Anorexia nervosa" - }, - { - "description": "Find out what antisocial personality disorder is, what the signs are, and how it's diagnosed and treated.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2021-02-12T17:48:26+00:00", - "dateModified": "2022-06-14T10:28:25+00:00", - "lastReviewed": ["2021-12-23T15:40:00+00:00", "2024-12-23T15:40:00+00:00"], - "reviewDue": "2024-12-23T15:40:00+00:00", - "keywords": "" + { + "description": "Find out what antisocial personality disorder is, what the signs are, and how it's diagnosed and treated.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2021-02-12T17:48:26+00:00", + "dateModified": "2022-06-14T10:28:25+00:00", + "lastReviewed": [ + "2021-12-23T15:40:00+00:00", + "2024-12-23T15:40:00+00:00" + ], + "reviewDue": "2024-12-23T15:40:00+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/mental-health/conditions/antisocial-personality-disorder/", + "name": "Antisocial personality disorder" }, - "url": "https://api.service.nhs.uk/nhs-website-content/mental-health/conditions/antisocial-personality-disorder/", - "name": "Antisocial personality disorder" - }, - { - "description": "Read about agoraphobia, a fear of being in situations where escape might be difficult or that help wouldn't be available if things go wrong.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2021-02-12T16:39:14+00:00", - "dateModified": "2022-03-29T10:14:46+00:00", - "keywords": "" + { + "description": "Read about agoraphobia, a fear of being in situations where escape might be difficult or that help wouldn't be available if things go wrong.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2021-02-12T16:39:14+00:00", + "dateModified": "2022-03-29T10:14:46+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/mental-health/conditions/agoraphobia/", + "name": "Agoraphobia" }, - "url": "https://api.service.nhs.uk/nhs-website-content/mental-health/conditions/agoraphobia/", - "name": "Agoraphobia" - } + { + "description": "Read about anxiety disorders in children and teenagers, with links to other useful resources.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "WebPage", + "genre": [ + "Advice or information" + ], + "datePublished": "2021-02-04T12:39:01+00:00", + "dateModified": "2025-03-24T13:44:27+00:00", + "lastReviewed": [ + "2023-12-15T00:00:00+00:00", + "2026-12-15T00:00:00+00:00" + ], + "reviewDue": "2026-12-15T00:00:00+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/mental-health/children-and-young-adults/advice-for-parents/anxiety-disorders-in-children/", + "name": "Anxiety disorders in children" + } ], "webpage": "https://www.nhs.uk/conditions/" } diff --git a/sandbox/responses/conditions-root-category-a.json b/sandbox/responses/conditions-root-category-a.json index 7ee9642..1ecce63 100644 --- a/sandbox/responses/conditions-root-category-a.json +++ b/sandbox/responses/conditions-root-category-a.json @@ -2,1574 +2,1873 @@ "@context": "http://schema.org", "@type": "MedicalWebPage", "name": "Health A to Z", - "copyrightHolder": { "name": "Crown Copyright", "@type": "Organization" }, + "copyrightHolder": { + "name": "Crown Copyright", + "@type": "Organization" + }, "license": "https://developer.api.nhs.uk/terms", "author": { - "url": "https://www.nhs.uk", - "logo": "https://assets.nhs.uk/nhsuk-cms/images/nhs-attribution.width-510.png", - "email": "nhswebsite.servicedesk@nhs.net", - "@type": "Organization", - "name": "NHS website" + "url": "https://www.nhs.uk", + "logo": "https://assets.nhs.uk/nhsuk-cms/images/nhs-attribution.width-510.png", + "email": "nhswebsite.servicedesk@nhs.net", + "@type": "Organization", + "name": "NHS website" + }, + "about": { + "@type": "WebPage", + "name": "Health A to Z", + "alternateName": "" }, - "about": { "@type": "WebPage", "name": "Health A to Z", "alternateName": "" }, - "description": "", + "description": "Find out about conditions, symptoms and treatments, including what to do and when to get help.", "url": "https://api.service.nhs.uk/nhs-website-content/conditions/", "genre": [], "keywords": "", - "dateModified": "2021-11-18T15:26:06+00:00", + "dateModified": "2025-01-14T11:49:05+00:00", "breadcrumb": { - "@context": "http://schema.org", - "@type": "BreadcrumbList", - "itemListElement": [ - { - "@type": "ListItem", - "position": 0, - "item": { "@id": "https://api.service.nhs.uk/nhs-website-content/conditions/", "name": "Health A to Z", "genre": [] } - } - ] + "@context": "http://schema.org", + "@type": "BreadcrumbList", + "itemListElement": [ + { + "@type": "ListItem", + "position": 0, + "item": { + "@id": "https://api.service.nhs.uk/nhs-website-content/conditions/", + "name": "Health A to Z", + "genre": [] + } + } + ] }, "contentSubTypes": [], "significantLink": [ - { - "description": "Acanthosis nigricans is the term for darkened, thickened patches of skin in the armpit and around the groin and neck. Find out about the main causes and treatments.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-24T08:48:21+00:00", - "dateModified": "2021-11-30T15:42:29+00:00", - "lastReviewed": ["2021-06-20T00:00:00+00:00", "2024-06-20T00:00:00+00:00"], - "reviewDue": "2024-06-20T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acanthosis-nigricans/", - "name": "Acanthosis nigricans" - }, - { - "description": "Read about achalasia, a disorder of the gullet (oesophagus) where it loses the ability to move food along. The valve at the end of the gullet also fails to open.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T15:19:45+00:00", - "dateModified": "2023-07-05T15:04:16+00:00", - "lastReviewed": ["2020-12-24T14:50:00+00:00", "2023-12-24T15:00:00+00:00"], - "reviewDue": "2023-12-24T15:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/achalasia/", - "name": "Achalasia" - }, - { - "description": "Find out about first aid and treatment for acid and chemical burns, including burns from acid attacks.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Accident or injury"], - "datePublished": "2018-10-03T19:55:47+00:00", - "dateModified": "2023-09-04T07:39:55+00:00", - "lastReviewed": ["2020-09-18T00:00:00+00:00", "2023-09-18T17:00:00+00:00"], - "reviewDue": "2023-09-18T17:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acid-and-chemical-burns/", - "name": "Acid and chemical burns" - }, - { - "description": "An acoustic neuroma is a type of non-cancerous (benign) brain tumour. Find out about the symptoms, treatments and outlook for this condition.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T15:44:39+00:00", - "dateModified": "2022-12-02T16:38:26+00:00", - "lastReviewed": ["2022-11-29T00:00:00+00:00", "2025-11-29T00:00:00+00:00"], - "reviewDue": "2025-11-29T00:00:00+00:00", - "keywords": "", - "alternateName": ["Vestibular schwannoma"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acoustic-neuroma/", - "name": "Acoustic neuroma (vestibular schwannoma)" - }, - { - "description": "Find out about acromegaly, a rare condition where the body produces too much growth hormone causing tissue and bone to grow more quickly. Read about symptoms, causes, diagnosis and treatment.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T15:17:11+00:00", - "dateModified": "2023-10-02T08:09:37+00:00", - "lastReviewed": ["2020-10-12T00:00:00+00:00", "2023-10-12T00:00:00+00:00"], - "reviewDue": "2023-10-12T00:00:00+00:00", - "keywords": "", - "alternateName": ["Gigantism"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acromegaly/", - "name": "Acromegaly" - }, - { - "description": "Find out more about actinic keratoses, which are patches of skin that have been damaged by the sun.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T15:23:05+00:00", - "dateModified": "2023-07-04T10:02:21+00:00", - "lastReviewed": ["2023-06-14T00:00:00+00:00", "2026-06-14T00:00:00+00:00"], - "reviewDue": "2026-06-14T00:00:00+00:00", - "keywords": "", - "alternateName": ["Solar keratoses"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/actinic-keratoses/", - "name": "Actinic keratoses (solar keratoses)" - }, - { - "description": "Read about acupuncture, a treatment derived from ancient Chinese medicine in which fine needles are inserted at certain sites in the body to relieve or prevent health problems", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Treatment"], - "datePublished": "2017-10-17T15:41:00+00:00", - "dateModified": "2023-03-15T09:54:23+00:00", - "lastReviewed": ["2023-02-28T02:00:00+00:00", "2026-02-28T03:00:00+00:00"], - "reviewDue": "2026-02-28T03:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acupuncture/", - "name": "Acupuncture" - }, - { - "description": "Read about acute cholecystitis, which is inflammation of the gallbladder. It usually occurs when a gallstone blocks the cystic duct.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T15:30:37+00:00", - "dateModified": "2023-06-08T14:38:26+00:00", - "lastReviewed": ["2023-02-21T01:00:00+00:00", "2026-02-21T01:00:00+00:00"], - "reviewDue": "2026-02-21T01:00:00+00:00", - "keywords": "", - "alternateName": ["Gallbladder pain", "Cholecystitis (acute)"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acute-cholecystitis/", - "name": "Acute cholecystitis" - }, - { - "description": "Acute kidney injury (AKI) is sudden damage to the kidneys that causes them to not work properly. It can range from minor loss of kidney function to complete kidney failure.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2018-10-03T19:55:51+00:00", - "dateModified": "2022-09-13T14:52:40+00:00", - "lastReviewed": ["2022-09-07T23:00:00+00:00", "2025-09-07T23:00:00+00:00"], - "reviewDue": "2025-09-07T23:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acute-kidney-injury/", - "name": "Acute kidney injury" - }, - { - "description": "Find out about acute respiratory distress syndrome, including who\u2019s at risk of getting it, the symptoms, how it\u2019s treated and what causes it.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T15:27:22+00:00", - "dateModified": "2023-07-25T12:53:45+00:00", - "lastReviewed": ["2023-07-11T23:00:00+00:00", "2026-07-11T23:00:00+00:00"], - "reviewDue": "2026-07-11T23:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acute-respiratory-distress-syndrome/", - "name": "Acute respiratory distress syndrome (ARDS)" - }, - { - "description": "Find out what an adenoidectomy is, why it's done, what happens during the operation and the possible complications.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Procedure", "Treatment"], - "datePublished": "2017-10-17T15:31:58+00:00", - "dateModified": "2023-06-16T13:39:11+00:00", - "lastReviewed": ["2023-03-10T15:37:00+00:00", "2026-03-10T15:37:00+00:00"], - "reviewDue": "2026-03-10T15:37:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/adenoidectomy/", - "name": "Adenoidectomy" - }, - { - "description": "An air or gas embolism is a serious problem that can happen to scuba divers and during some medical procedures. Read about the causes, symptoms and treatments.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-12-01T09:45:51+00:00", - "dateModified": "2023-10-02T08:10:10+00:00", - "lastReviewed": ["2020-12-16T00:00:00+00:00", "2023-12-16T00:00:00+00:00"], - "reviewDue": "2023-12-16T00:00:00+00:00", - "keywords": "", - "alternateName": ["Decompression sickness"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/air-embolism/", - "name": "Air or gas embolism" - }, - { - "description": "Find out about alcohol poisoning, what the symptoms are, what to do if you think you or someone else has it, what the treatments are and what causes it.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T15:40:36+00:00", - "dateModified": "2023-01-12T12:26:14+00:00", - "lastReviewed": ["2023-01-11T01:00:00+00:00", "2026-01-11T01:00:00+00:00"], - "reviewDue": "2026-01-11T01:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/alcohol-poisoning/", - "name": "Alcohol poisoning" - }, - { - "description": "The Alexander technique teaches improved posture and movement, which is believed to help reduce and prevent problems caused by unhelpful habits.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Treatment"], - "datePublished": "2017-10-17T16:16:34+00:00", - "dateModified": "2023-10-10T14:03:35+00:00", - "lastReviewed": ["2021-09-06T00:00:00+00:00", "2024-09-06T00:00:00+00:00"], - "reviewDue": "2024-09-06T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/alexander-technique/", - "name": "Alexander technique" - }, - { - "description": "Read about alkaptonuria, or \"black urine disease\", a rare inherited disorder that can turn urine and parts of the body a dark colour and lead to other problems.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-24T10:34:28+00:00", - "dateModified": "2023-04-27T13:09:51+00:00", - "lastReviewed": ["2022-03-10T00:00:00+00:00", "2025-03-10T00:00:00+00:00"], - "reviewDue": "2025-03-10T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/alkaptonuria/", - "name": "Alkaptonuria" - }, - { - "description": "Information about amputation, including why and how it's carried out, recovery and rehabilitation, prosthetics, stump care and possible complications.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Procedure", "Treatment"], - "datePublished": "2017-10-17T15:47:57+00:00", - "dateModified": "2023-04-13T10:05:18+00:00", - "lastReviewed": ["2023-02-17T01:00:00+00:00", "2026-02-17T01:00:00+00:00"], - "reviewDue": "2026-02-17T01:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/amputation/", - "name": "Amputation" - }, - { - "description": "Find out about amyloidosis, including what the symptoms are, when and where to get medical help, the causes and how it's treated.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T15:48:36+00:00", - "dateModified": "2023-08-24T13:52:35+00:00", - "lastReviewed": ["2023-08-23T00:00:00+00:00", "2026-08-23T00:00:00+00:00"], - "reviewDue": "2026-08-23T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/amyloidosis/", - "name": "Amyloidosis" - }, - { - "description": "Read about anabolic steroids, which are prescription-only medicines that are sometimes taken without medical advice to increase muscle mass and improve athletic performance.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "WebPage", - "genre": ["Advice or information"], - "datePublished": "2017-10-17T15:50:01+00:00", - "dateModified": "2022-11-04T09:39:37+00:00", - "lastReviewed": ["2022-04-13T09:37:00+00:00", "2025-04-13T09:37:00+00:00"], - "reviewDue": "2025-04-13T09:37:00+00:00", - "keywords": "", - "alternateName": ["Steroid misuse"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anabolic-steroid-misuse/", - "name": "Anabolic steroid misuse" - }, - { - "description": "Find out about different types of anaesthetics, how they work, and the potential side effects. Also, read about the role of the anaesthetist.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Medicine"], - "datePublished": "2017-10-17T15:49:39+00:00", - "dateModified": "2021-11-18T15:26:25+00:00", - "lastReviewed": ["2021-09-23T00:00:00+00:00", "2024-09-23T00:00:00+00:00"], - "reviewDue": "2024-09-23T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anaesthesia/", - "name": "Anaesthesia" - }, - { - "description": "Anal cancer is a rare type of cancer that affects the anus. Get information and advice about symptoms, causes and treatments.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T16:08:41+00:00", - "dateModified": "2022-07-12T15:04:44+00:00", - "lastReviewed": ["2021-03-08T01:00:00+00:00", "2024-03-08T01:00:00+00:00"], - "reviewDue": "2024-03-08T01:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anal-cancer/", - "name": "Anal cancer" - }, - { - "description": "Find out what causes anal pain, what you can do to ease the pain and when to get medical help.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Symptom"], - "datePublished": "2017-10-17T15:49:36+00:00", - "dateModified": "2022-03-16T09:04:13+00:00", - "lastReviewed": ["2022-03-15T01:00:00+00:00", "2025-03-15T01:00:00+00:00"], - "reviewDue": "2025-03-15T01:00:00+00:00", - "keywords": "", - "alternateName": ["Proctalgia"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anal-pain/", - "name": "Anal pain" - }, - { - "description": "Read about Angelman syndrome, a genetic disorder that affects the nervous system and causes severe physical and intellectual disability", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T16:28:17+00:00", - "dateModified": "2023-04-13T10:12:21+00:00", - "lastReviewed": ["2023-03-09T01:00:00+00:00", "2026-03-09T01:00:00+00:00"], - "reviewDue": "2026-03-09T01:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/angelman-syndrome/", - "name": "Angelman syndrome" - }, - { - "description": "Find out what to do if you\u2019ve been bitten by an animal or person, including first aid advice, when to get medical help and what treatment you may need.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Accident or injury"], - "datePublished": "2017-10-17T15:53:13+00:00", - "dateModified": "2023-08-08T09:25:16+00:00", - "lastReviewed": ["2022-06-22T23:00:00+00:00", "2025-06-22T23:00:00+00:00"], - "reviewDue": "2025-06-22T23:00:00+00:00", - "keywords": "", - "alternateName": ["Dog bites", "Human bites", "Bite (animal or human)", "Cat bites"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Acanthosis nigricans is the term for darkened, thickened patches of skin in the armpit and around the groin and neck. Find out about the main causes and treatments.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-24T08:48:21+00:00", + "dateModified": "2025-02-20T13:24:49+00:00", + "lastReviewed": [ + "2024-07-04T00:00:00+00:00", + "2027-07-04T00:00:00+00:00" + ], + "reviewDue": "2027-07-04T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acanthosis-nigricans/", + "name": "Acanthosis nigricans" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/animal-and-human-bites/", - "name": "Animal and human bites" - }, - { - "description": "Find out about antacids, a type of medicine used to control the acid levels in the stomach.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Medicine"], - "datePublished": "2017-10-17T15:54:58+00:00", - "dateModified": "2023-04-13T14:41:26+00:00", - "lastReviewed": ["2023-03-24T10:33:00+00:00", "2026-03-24T10:33:00+00:00"], - "reviewDue": "2026-03-24T10:33:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Read about achalasia, a disorder of the gullet (oesophagus) where it loses the ability to move food along. The valve at the end of the gullet also fails to open.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T15:19:45+00:00", + "dateModified": "2023-12-12T10:14:58+00:00", + "lastReviewed": [ + "2023-12-05T14:50:00+00:00", + "2026-12-05T15:00:00+00:00" + ], + "reviewDue": "2026-12-05T15:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/achalasia/", + "name": "Achalasia" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/antacids/", - "name": "Antacids" - }, - { - "description": "Antihistamines are a type of medicine often used to treat allergies. Find out about the different types, who can take them and what side effects they can cause.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Medicine"], - "datePublished": "2017-10-17T15:57:58+00:00", - "dateModified": "2023-05-18T14:32:06+00:00", - "lastReviewed": ["2023-05-15T23:00:00+00:00", "2026-05-15T23:00:00+00:00"], - "reviewDue": "2026-05-15T23:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about acid and chemical burns including what causes them, where to get help, how to do first aid, and how they're treated.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Accident or injury" + ], + "datePublished": "2018-10-03T19:55:47+00:00", + "dateModified": "2024-06-10T08:44:38+00:00", + "lastReviewed": [ + "2024-06-05T00:00:00+00:00", + "2027-06-05T17:00:00+00:00" + ], + "reviewDue": "2027-06-05T17:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acid-and-chemical-burns/", + "name": "Acid and chemical burns" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/antihistamines/", - "name": "Antihistamines" - }, - { - "description": "Read about anxiety disorders in children and teenagers, with links to other useful resources.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T16:28:08+00:00", - "dateModified": "2021-11-18T15:26:34+00:00", - "lastReviewed": ["2020-12-01T00:00:00+00:00", "2023-12-01T00:00:00+00:00"], - "reviewDue": "2023-12-01T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "An acoustic neuroma is a type of non-cancerous (benign) brain tumour. Find out about the symptoms, treatments and outlook for this condition.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T15:44:39+00:00", + "dateModified": "2024-03-07T16:55:34+00:00", + "lastReviewed": [ + "2022-11-29T00:00:00+00:00", + "2025-11-29T00:00:00+00:00" + ], + "reviewDue": "2025-11-29T00:00:00+00:00", + "keywords": "", + "alternateName": [ + "Vestibular schwannoma" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acoustic-neuroma/", + "name": "Acoustic neuroma (vestibular schwannoma)" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anxiety-disorders-in-children/", - "name": "Anxiety disorders in children" - }, - { - "description": "Arrhythmias or heart rhythm problems are experienced by more than 2 million people in the UK. Most people with an abnormal heart rhythm can lead a normal life if it is properly diagnosed.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2018-02-19T15:41:03+00:00", - "dateModified": "2023-06-23T15:46:44+00:00", - "lastReviewed": ["2021-09-14T00:00:00+00:00", "2024-09-14T00:00:00+00:00"], - "reviewDue": "2024-09-14T00:00:00+00:00", - "keywords": "", - "alternateName": ["Heart rhythm problems"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about acromegaly, the abnormal growth of hands, feet and other body parts. This includes the symptoms, when to get medical help and how it's treated.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T15:17:11+00:00", + "dateModified": "2025-02-20T13:26:16+00:00", + "lastReviewed": [ + "2024-12-19T01:00:00+00:00", + "2027-12-19T01:00:00+00:00" + ], + "reviewDue": "2027-12-19T01:00:00+00:00", + "keywords": "", + "alternateName": [ + "Gigantism" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acromegaly/", + "name": "Acromegaly" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/arrhythmia/", - "name": "Arrhythmia" - }, - { - "description": "Arterial thrombosis is a blood clot in an artery. Find out why it happens and how it is treated.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T15:56:14+00:00", - "dateModified": "2023-08-07T07:30:32+00:00", - "lastReviewed": ["2020-01-09T00:00:00+00:00", "2023-01-09T00:00:00+00:00"], - "reviewDue": "2023-01-09T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out more about actinic keratoses, which are patches of skin that have been damaged by the sun.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T15:23:05+00:00", + "dateModified": "2023-07-04T10:02:21+00:00", + "lastReviewed": [ + "2023-06-14T00:00:00+00:00", + "2026-06-14T00:00:00+00:00" + ], + "reviewDue": "2026-06-14T00:00:00+00:00", + "keywords": "", + "alternateName": [ + "Solar keratoses" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/actinic-keratoses/", + "name": "Actinic keratoses (solar keratoses)" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/arterial-thrombosis/", - "name": "Arterial thrombosis" - }, - { - "description": "Asbestosis is a serious lung condition caused by exposure to asbestos \u2013 a building material used mostly from the 1950s to the 1990s.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T16:02:11+00:00", - "dateModified": "2023-10-03T12:28:12+00:00", - "lastReviewed": ["2023-07-31T15:03:00+00:00", "2026-07-31T00:00:00+00:00"], - "reviewDue": "2026-07-31T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Read about acute cholecystitis, which is inflammation of the gallbladder. It usually occurs when a gallstone blocks the cystic duct.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T15:30:37+00:00", + "dateModified": "2023-12-18T14:58:04+00:00", + "lastReviewed": [ + "2023-02-21T01:00:00+00:00", + "2026-02-21T01:00:00+00:00" + ], + "reviewDue": "2026-02-21T01:00:00+00:00", + "keywords": "", + "alternateName": [ + "Gallbladder pain", + "Cholecystitis (acute)" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acute-cholecystitis/", + "name": "Acute cholecystitis" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/asbestosis/", - "name": "Asbestosis" - }, - { - "description": "Find out about aspirin, including what it's used for, who can take it, and what the main side effects are.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Medicine"], - "datePublished": "2017-10-17T16:05:29+00:00", - "dateModified": "2021-11-18T15:26:40+00:00", - "lastReviewed": ["2016-05-06T00:00:00+00:00", "2019-05-01T00:00:00+00:00"], - "reviewDue": "2019-05-01T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Acute kidney injury (AKI) is sudden damage to the kidneys that causes them to not work properly. It can range from minor loss of kidney function to complete kidney failure.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2018-10-03T19:55:51+00:00", + "dateModified": "2022-09-13T14:52:40+00:00", + "lastReviewed": [ + "2022-09-07T23:00:00+00:00", + "2025-09-07T23:00:00+00:00" + ], + "reviewDue": "2025-09-07T23:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acute-kidney-injury/", + "name": "Acute kidney injury" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/aspirin/", - "name": "Aspirin" - }, - { - "description": "Find out more about atherosclerosis, what the symptoms are, how you can help stop it getting worse, how it's treated and what causes it.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T15:59:05+00:00", - "dateModified": "2023-04-24T14:20:31+00:00", - "lastReviewed": ["2023-01-30T01:00:00+00:00", "2026-01-30T01:00:00+00:00"], - "reviewDue": "2026-01-30T01:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about acute respiratory distress syndrome, including who’s at risk of getting it, the symptoms, how it’s treated and what causes it.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T15:27:22+00:00", + "dateModified": "2024-06-18T15:33:56+00:00", + "lastReviewed": [ + "2023-07-11T23:00:00+00:00", + "2026-07-11T23:00:00+00:00" + ], + "reviewDue": "2026-07-11T23:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acute-respiratory-distress-syndrome/", + "name": "Acute respiratory distress syndrome (ARDS)" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/atherosclerosis/", - "name": "Atherosclerosis" - }, - { - "description": "Read about athlete's foot, a common fungal infection of the foot. Find out about the symptoms, what causes it, and how it's treated.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T16:02:41+00:00", - "dateModified": "2023-05-17T08:49:09+00:00", - "lastReviewed": ["2021-06-08T17:00:00+00:00", "2024-06-08T17:00:00+00:00"], - "reviewDue": "2024-06-08T17:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about alcohol poisoning, what the symptoms are, what to do if you think you or someone else has it, what the treatments are and what causes it.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T15:40:36+00:00", + "dateModified": "2024-06-19T13:14:22+00:00", + "lastReviewed": [ + "2023-01-11T01:00:00+00:00", + "2026-01-11T01:00:00+00:00" + ], + "reviewDue": "2026-01-11T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/alcohol-poisoning/", + "name": "Alcohol poisoning" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/athletes-foot/", - "name": "Athlete's foot" - }, - { - "description": "Find out about auditory processing disorder, a condition where you have difficulty understanding sounds including spoken words.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T16:01:41+00:00", - "dateModified": "2023-08-02T11:28:29+00:00", - "lastReviewed": ["2023-07-31T00:00:00+00:00", "2026-07-31T00:00:00+00:00"], - "reviewDue": "2026-07-31T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Read about alkaptonuria, or \"black urine disease\", a rare inherited disorder that can turn urine and parts of the body a dark colour and lead to other problems.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-24T10:34:28+00:00", + "dateModified": "2024-10-15T08:00:59+00:00", + "lastReviewed": [ + "2022-03-10T00:00:00+00:00", + "2025-03-10T00:00:00+00:00" + ], + "reviewDue": "2025-03-10T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/alkaptonuria/", + "name": "Alkaptonuria" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/auditory-processing-disorder/", - "name": "Auditory processing disorder (APD)" - }, - { - "description": "Read about age-related cataracts. In older people, changes can occur in the lens of the eye, making it less transparent and causing cloudy or misty vision.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T18:46:58+00:00", - "dateModified": "2021-11-18T15:27:30+00:00", - "lastReviewed": ["2020-12-22T10:04:00+00:00", "2023-12-22T10:04:00+00:00"], - "reviewDue": "2023-12-22T10:04:00+00:00", - "keywords": "", - "alternateName": ["Cataracts (age-related)"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about amyloidosis, including what the symptoms are, when and where to get medical help, the causes and how it's treated.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T15:48:36+00:00", + "dateModified": "2025-02-28T12:50:27+00:00", + "lastReviewed": [ + "2023-08-23T00:00:00+00:00", + "2026-08-23T00:00:00+00:00" + ], + "reviewDue": "2026-08-23T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/amyloidosis/", + "name": "Amyloidosis" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/cataracts/", - "name": "Age-related cataracts" - }, - { - "description": "Find out about abdominal aortic aneurysm, what the symptoms are, how it\u2019s treated, how to lower your risk of getting one and what the causes are.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T11:42:38+00:00", - "dateModified": "2023-08-11T14:19:54+00:00", - "lastReviewed": ["2023-06-14T00:00:00+00:00", "2026-06-14T00:00:00+00:00"], - "reviewDue": "2026-06-14T00:00:00+00:00", - "keywords": "", - "alternateName": ["AAA", "Aneurysm (abdominal aortic)"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Read about anabolic steroids, which are prescription-only medicines that are sometimes taken without medical advice to increase muscle mass and improve athletic performance.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "WebPage", + "genre": [ + "Advice or information" + ], + "datePublished": "2017-10-17T15:50:01+00:00", + "dateModified": "2024-11-27T11:27:43+00:00", + "lastReviewed": [ + "2022-04-13T09:37:00+00:00", + "2025-04-13T09:37:00+00:00" + ], + "reviewDue": "2025-04-13T09:37:00+00:00", + "keywords": "", + "alternateName": [ + "Steroid misuse" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anabolic-steroid-misuse/", + "name": "Anabolic steroid misuse" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/abdominal-aortic-aneurysm/", - "name": "Abdominal aortic aneurysm" - }, - { - "description": "Find out who is offered abdominal aortic aneurysm (AAA) screening, why it's done and what it involves.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Test"], - "datePublished": "2017-10-20T10:36:32+00:00", - "dateModified": "2023-08-07T14:28:43+00:00", - "lastReviewed": ["2021-01-12T01:00:00+00:00", "2024-01-12T01:00:00+00:00"], - "reviewDue": "2024-01-12T01:00:00+00:00", - "keywords": "", - "alternateName": ["AAA screening"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Read about Angelman syndrome, a genetic disorder that affects the nervous system and causes severe physical and intellectual disability", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:28:17+00:00", + "dateModified": "2023-04-13T10:12:21+00:00", + "lastReviewed": [ + "2023-03-09T01:00:00+00:00", + "2026-03-09T01:00:00+00:00" + ], + "reviewDue": "2026-03-09T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/angelman-syndrome/", + "name": "Angelman syndrome" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/abdominal-aortic-aneurysm-screening/", - "name": "Abdominal aortic aneurysm screening" - }, - { - "description": "Acne is a common skin condition that affects most people at some point. It causes spots, oily skin and sometimes skin that's hot or painful to touch.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-19T14:19:00+00:00", - "dateModified": "2023-01-04T15:58:59+00:00", - "lastReviewed": ["2023-01-03T01:00:00+00:00", "2026-01-03T01:00:00+00:00"], - "reviewDue": "2026-01-03T01:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out what to do if you’ve been bitten by an animal or person, including first aid advice, when to get medical help and what treatment you may need.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Accident or injury" + ], + "datePublished": "2017-10-17T15:53:13+00:00", + "dateModified": "2024-06-18T15:43:26+00:00", + "lastReviewed": [ + "2022-06-22T23:00:00+00:00", + "2025-06-22T23:00:00+00:00" + ], + "reviewDue": "2025-06-22T23:00:00+00:00", + "keywords": "", + "alternateName": [ + "Bite (animal or human)", + "Cat bites", + "Dog bites", + "Human bites" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/animal-and-human-bites/", + "name": "Animal and human bites" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acne/", - "name": "Acne" - }, - { - "description": "Find out about actinomycosis, including how you get it, what the symptoms are, how it's treated and how to reduce your risk of getting it.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-11-21T10:51:44+00:00", - "dateModified": "2023-08-02T14:25:15+00:00", - "lastReviewed": ["2023-07-25T00:00:00+00:00", "2026-07-25T00:00:00+00:00"], - "reviewDue": "2026-07-25T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Asbestosis is a serious lung condition caused by exposure to asbestos – a building material used mostly from the 1950s to the 1990s.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:02:11+00:00", + "dateModified": "2024-03-20T15:19:22+00:00", + "lastReviewed": [ + "2023-07-31T15:03:00+00:00", + "2026-07-31T00:00:00+00:00" + ], + "reviewDue": "2026-07-31T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/asbestosis/", + "name": "Asbestosis" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/actinomycosis/", - "name": "Actinomycosis" - }, - { - "description": "Read about acute myeloid leukaemia (AML), an aggressive cancer of the myeloid cells. Information about signs and symptoms, causes, diagnosis and treatment.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T11:27:43+00:00", - "dateModified": "2023-10-03T12:54:05+00:00", - "lastReviewed": ["2022-10-03T23:00:00+00:00", "2025-10-03T23:00:00+00:00"], - "reviewDue": "2025-10-03T23:00:00+00:00", - "keywords": "", - "alternateName": ["Leukaemia (acute myeloid)"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out more about atherosclerosis, what the symptoms are, how you can help stop it getting worse, how it's treated and what causes it.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T15:59:05+00:00", + "dateModified": "2024-11-27T11:55:44+00:00", + "lastReviewed": [ + "2023-01-30T01:00:00+00:00", + "2026-01-30T01:00:00+00:00" + ], + "reviewDue": "2026-01-30T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/atherosclerosis/", + "name": "Atherosclerosis" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acute-myeloid-leukaemia/", - "name": "Acute myeloid leukaemia" - }, - { - "description": "Acute pancreatitis is a serious condition where the pancreas becomes inflamed over a short period of time.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2018-04-09T09:11:55+00:00", - "dateModified": "2022-06-10T12:54:41+00:00", - "lastReviewed": ["2022-05-23T23:00:00+00:00", "2025-05-24T00:00:00+00:00"], - "reviewDue": "2025-05-24T00:00:00+00:00", - "keywords": "", - "alternateName": ["Pancreatitis (acute)"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Read about athlete's foot, a common fungal infection of the foot. Find out about the symptoms, what causes it, and how it's treated.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:02:41+00:00", + "dateModified": "2024-05-08T11:28:05+00:00", + "lastReviewed": [ + "2024-04-29T17:00:00+00:00", + "2027-04-29T17:00:00+00:00" + ], + "reviewDue": "2027-04-29T17:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/athletes-foot/", + "name": "Athlete's foot" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acute-pancreatitis/", - "name": "Acute pancreatitis" - }, - { - "description": "Addison's disease, also known as primary adrenal insufficiency or hypoadrenalism, is a rare disorder of the adrenal glands.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2018-06-22T11:43:53+00:00", - "dateModified": "2022-02-04T11:36:48+00:00", - "lastReviewed": ["2021-12-17T01:00:00+00:00", "2024-12-17T01:00:00+00:00"], - "reviewDue": "2024-12-17T01:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about auditory processing disorder, a condition where you have difficulty understanding sounds including spoken words.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:01:41+00:00", + "dateModified": "2025-03-24T11:59:49+00:00", + "lastReviewed": [ + "2023-07-31T00:00:00+00:00", + "2026-07-31T00:00:00+00:00" + ], + "reviewDue": "2026-07-31T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/auditory-processing-disorder/", + "name": "Auditory processing disorder (APD)" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/addisons-disease/", - "name": "Addison's disease" - }, - { - "description": "Albinism is an inherited condition that affects the production of melanin, the pigment that colours the skin, hair and eyes.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-11-23T11:06:19+00:00", - "dateModified": "2023-10-02T16:30:33+00:00", - "lastReviewed": ["2023-09-25T23:00:00+00:00", "2026-09-25T23:00:00+00:00"], - "reviewDue": "2026-09-25T23:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about abdominal aortic aneurysm, what the symptoms are, how it’s treated, how to lower your risk of getting one and what the causes are.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T11:42:38+00:00", + "dateModified": "2023-08-11T14:19:54+00:00", + "lastReviewed": [ + "2023-06-14T00:00:00+00:00", + "2026-06-14T00:00:00+00:00" + ], + "reviewDue": "2026-06-14T00:00:00+00:00", + "keywords": "", + "alternateName": [ + "AAA", + "Aneurysm (abdominal aortic)" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/abdominal-aortic-aneurysm/", + "name": "Abdominal aortic aneurysm" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/albinism/", - "name": "Albinism" - }, - { - "description": "Alcohol misuse is where a person consumes excessive amounts of alcoholic drinks.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T11:36:38+00:00", - "dateModified": "2023-07-06T13:43:03+00:00", - "lastReviewed": ["2022-10-04T00:00:00+00:00", "2025-10-04T00:00:00+00:00"], - "reviewDue": "2025-10-04T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Acne is a common skin condition that affects most people at some point. It causes spots, oily skin and sometimes skin that's hot or painful to touch.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-19T14:19:00+00:00", + "dateModified": "2024-02-08T11:28:35+00:00", + "lastReviewed": [ + "2023-01-03T01:00:00+00:00", + "2026-01-03T01:00:00+00:00" + ], + "reviewDue": "2026-01-03T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acne/", + "name": "Acne" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/alcohol-misuse/", - "name": "Alcohol misuse" - }, - { - "description": "Alcohol-related liver disease (ARLD) refers to liver damage caused by excess alcohol intake. There are several stages of severity and a range of associated symptoms.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T11:37:03+00:00", - "dateModified": "2023-07-06T13:44:38+00:00", - "lastReviewed": ["2022-09-19T23:00:00+00:00", "2025-09-19T23:00:00+00:00"], - "reviewDue": "2025-09-19T23:00:00+00:00", - "keywords": "", - "alternateName": ["Liver disease (alcohol-related)"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about actinomycosis, including how you get it, what the symptoms are, how it's treated and how to reduce your risk of getting it.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-11-21T10:51:44+00:00", + "dateModified": "2023-08-02T14:25:15+00:00", + "lastReviewed": [ + "2023-07-25T00:00:00+00:00", + "2026-07-25T00:00:00+00:00" + ], + "reviewDue": "2026-07-25T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/actinomycosis/", + "name": "Actinomycosis" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/alcohol-related-liver-disease-arld/", - "name": "Alcohol-related liver disease" - }, - { - "description": "Find out about allergic rhinitis, including what the symptoms are, what you can do about it and when to get medical help.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T11:37:18+00:00", - "dateModified": "2022-06-01T11:30:19+00:00", - "lastReviewed": ["2022-05-30T00:00:00+00:00", "2025-05-30T00:00:00+00:00"], - "reviewDue": "2025-05-30T00:00:00+00:00", - "keywords": "", - "alternateName": ["Rhinitis (allergic)"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Read about acute myeloid leukaemia (AML), an aggressive cancer of the myeloid cells. Information about signs and symptoms, causes, diagnosis and treatment.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T11:27:43+00:00", + "dateModified": "2025-02-28T13:02:33+00:00", + "lastReviewed": [ + "2022-10-03T23:00:00+00:00", + "2025-10-03T23:00:00+00:00" + ], + "reviewDue": "2025-10-03T23:00:00+00:00", + "keywords": "", + "alternateName": [ + "Leukaemia (acute myeloid)" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acute-myeloid-leukaemia/", + "name": "Acute myeloid leukaemia" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/allergic-rhinitis/", - "name": "Allergic rhinitis" - }, - { - "description": "Find out about allergies, including typical symptoms, common allergies, when to get emergency medical help and allergy testing and treatments.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-19T14:45:29+00:00", - "dateModified": "2023-08-16T14:35:34+00:00", - "lastReviewed": ["2022-08-01T23:00:00+00:00", "2025-08-01T23:00:00+00:00"], - "reviewDue": "2025-08-01T23:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Acute pancreatitis is a serious condition where the pancreas becomes inflamed over a short period of time.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2018-04-09T09:11:55+00:00", + "dateModified": "2023-12-04T09:18:13+00:00", + "lastReviewed": [ + "2022-05-23T23:00:00+00:00", + "2025-05-24T00:00:00+00:00" + ], + "reviewDue": "2025-05-24T00:00:00+00:00", + "keywords": "", + "alternateName": [ + "Pancreatitis (acute)" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acute-pancreatitis/", + "name": "Acute pancreatitis" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/allergies/", - "name": "Allergies" - }, - { - "description": "NHS information about altitude sickness, including symptoms, treatment and how to prevent it.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T10:41:29+00:00", - "dateModified": "2023-08-02T11:01:58+00:00", - "lastReviewed": ["2023-07-31T01:00:00+00:00", "2026-07-31T02:00:00+00:00"], - "reviewDue": "2026-07-31T02:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Addison's disease, also known as primary adrenal insufficiency or hypoadrenalism, is a rare disorder of the adrenal glands.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2018-06-22T11:43:53+00:00", + "dateModified": "2022-02-04T11:36:48+00:00", + "lastReviewed": [ + "2021-12-17T01:00:00+00:00", + "2024-12-17T01:00:00+00:00" + ], + "reviewDue": "2024-12-17T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/addisons-disease/", + "name": "Addison's disease" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/altitude-sickness/", - "name": "Altitude sickness" - }, - { - "description": "Alzheimer's disease is the most common cause of dementia. Dementia is a group of symptoms associated with a decline in the way your brain functions, affecting your memory and the way you behave.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2018-05-10T14:10:06+00:00", - "dateModified": "2023-09-26T08:57:57+00:00", - "lastReviewed": ["2021-07-05T00:00:00+00:00", "2024-07-05T00:00:00+00:00"], - "reviewDue": "2024-07-05T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Albinism is an inherited condition that affects the production of melanin, the pigment that colours the skin, hair and eyes.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-11-23T11:06:19+00:00", + "dateModified": "2023-10-02T16:30:33+00:00", + "lastReviewed": [ + "2023-09-25T23:00:00+00:00", + "2026-09-25T23:00:00+00:00" + ], + "reviewDue": "2026-09-25T23:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/albinism/", + "name": "Albinism" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/alzheimers-disease/", - "name": "Alzheimer's disease" - }, - { - "description": "Read about amniocentesis, a diagnostic test carried out during pregnancy to assess whether your baby could develop a genetic or chromosomal condition.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Procedure", "Test"], - "datePublished": "2017-10-20T11:41:13+00:00", - "dateModified": "2022-10-19T15:48:39+00:00", - "lastReviewed": ["2022-10-12T00:00:00+00:00", "2025-10-12T00:00:00+00:00"], - "reviewDue": "2025-10-12T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Alcohol misuse is where a person consumes excessive amounts of alcoholic drinks.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T11:36:38+00:00", + "dateModified": "2024-11-27T11:25:56+00:00", + "lastReviewed": [ + "2022-10-04T00:00:00+00:00", + "2025-10-04T00:00:00+00:00" + ], + "reviewDue": "2025-10-04T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/alcohol-misuse/", + "name": "Alcohol misuse" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/amniocentesis/", - "name": "Amniocentesis" - }, - { - "description": "Read about anal fissures and the importance of seeing a GP. Also, read about the symptoms, causes, treatment and prevention of anal fissures.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T10:43:07+00:00", - "dateModified": "2022-05-30T15:14:36+00:00", - "lastReviewed": ["2021-11-09T00:00:00+00:00", "2024-11-09T00:00:00+00:00"], - "reviewDue": "2024-11-09T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Alcohol-related liver disease (ARLD) refers to liver damage caused by excess alcohol intake. There are several stages of severity and a range of associated symptoms.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T11:37:03+00:00", + "dateModified": "2024-04-08T11:52:39+00:00", + "lastReviewed": [ + "2022-09-19T23:00:00+00:00", + "2025-09-19T23:00:00+00:00" + ], + "reviewDue": "2025-09-19T23:00:00+00:00", + "keywords": "", + "alternateName": [ + "Liver disease (alcohol-related)" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/alcohol-related-liver-disease-arld/", + "name": "Alcohol-related liver disease" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anal-fissure/", - "name": "Anal fissure" - }, - { - "description": "Find out what an anal fistula is, including information about the symptoms, causes and treatments.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T10:45:38+00:00", - "dateModified": "2023-06-08T14:35:01+00:00", - "lastReviewed": ["2023-02-21T01:00:00+00:00", "2026-02-21T01:00:00+00:00"], - "reviewDue": "2026-02-21T01:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about allergic rhinitis, including what the symptoms are, what you can do about it and when to get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T11:37:18+00:00", + "dateModified": "2024-09-11T13:08:28+00:00", + "lastReviewed": [ + "2022-05-30T00:00:00+00:00", + "2025-05-30T00:00:00+00:00" + ], + "reviewDue": "2025-05-30T00:00:00+00:00", + "keywords": "", + "alternateName": [ + "Rhinitis (allergic)" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/allergic-rhinitis/", + "name": "Allergic rhinitis" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anal-fistula/", - "name": "Anal fistula" - }, - { - "description": "NHS information about anaphylaxis, including symptoms, when to get help, treatment and prevention.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T11:15:04+00:00", - "dateModified": "2023-08-17T12:27:19+00:00", - "lastReviewed": ["2023-06-21T02:00:00+00:00", "2026-06-21T02:00:00+00:00"], - "reviewDue": "2026-06-21T02:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about allergies, including typical symptoms, common allergies, when to get emergency medical help and allergy testing and treatments.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-19T14:45:29+00:00", + "dateModified": "2024-11-25T12:26:37+00:00", + "lastReviewed": [ + "2022-08-01T23:00:00+00:00", + "2025-08-01T23:00:00+00:00" + ], + "reviewDue": "2025-08-01T23:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/allergies/", + "name": "Allergies" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anaphylaxis/", - "name": "Anaphylaxis" - }, - { - "description": "Find out about androgen insensitivity syndrome (AIS), a rare condition that affects the development of a person's genitals and reproductive organs.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T11:58:16+00:00", - "dateModified": "2022-10-10T10:37:47+00:00", - "lastReviewed": ["2021-03-17T00:00:00+00:00", "2024-03-17T00:00:00+00:00"], - "reviewDue": "2024-03-17T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "NHS information about altitude sickness, including symptoms, treatment and how to prevent it.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T10:41:29+00:00", + "dateModified": "2023-08-02T11:01:58+00:00", + "lastReviewed": [ + "2023-07-31T01:00:00+00:00", + "2026-07-31T02:00:00+00:00" + ], + "reviewDue": "2026-07-31T02:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/altitude-sickness/", + "name": "Altitude sickness" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/androgen-insensitivity-syndrome/", - "name": "Androgen insensitivity syndrome" - }, - { - "description": "Read more about angina, which is a type of chest pain caused by not enough blood going to the muscles of the heart. It usually happens when the arteries supplying the heart become hardened and narrowed.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T11:50:47+00:00", - "dateModified": "2023-09-05T19:55:58+00:00", - "lastReviewed": ["2021-04-21T23:00:00+00:00", "2024-04-21T23:00:00+00:00"], - "reviewDue": "2024-04-21T23:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Alzheimer's disease is the most common cause of dementia. Dementia is a group of symptoms associated with a decline in the way your brain functions, affecting your memory and the way you behave.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2018-05-10T14:10:06+00:00", + "dateModified": "2024-07-05T09:50:17+00:00", + "lastReviewed": [ + "2024-07-04T00:00:00+00:00", + "2027-07-04T00:00:00+00:00" + ], + "reviewDue": "2027-07-04T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/alzheimers-disease/", + "name": "Alzheimer's disease" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/angina/", - "name": "Angina" - }, - { - "description": "Find out what angioedema is, what the symptoms are, why it happens and how it's treated.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-19T15:06:52+00:00", - "dateModified": "2023-01-26T12:21:23+00:00", - "lastReviewed": ["2023-01-18T01:00:00+00:00", "2026-01-18T01:00:00+00:00"], - "reviewDue": "2026-01-18T01:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Read about amniocentesis, a diagnostic test carried out during pregnancy to assess whether your baby could develop a genetic or chromosomal condition.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Test", + "Procedure" + ], + "datePublished": "2017-10-20T11:41:13+00:00", + "dateModified": "2024-11-15T09:53:54+00:00", + "lastReviewed": [ + "2022-10-12T00:00:00+00:00", + "2025-10-12T00:00:00+00:00" + ], + "reviewDue": "2025-10-12T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/amniocentesis/", + "name": "Amniocentesis" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/angioedema/", - "name": "Angioedema" - }, - { - "description": "Find out why angiography is used, what happens during the procedure, and the possible risks involved. Also, read about the different types of angiography.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Procedure", "Test"], - "datePublished": "2017-10-19T14:44:01+00:00", - "dateModified": "2023-02-02T09:42:42+00:00", - "lastReviewed": ["2023-01-30T00:00:00+00:00", "2026-01-30T00:00:00+00:00"], - "reviewDue": "2026-01-30T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Read about anal fissures and the importance of seeing a GP. Also, read about the symptoms, causes, treatment and prevention of anal fissures.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T10:43:07+00:00", + "dateModified": "2024-04-16T12:16:38+00:00", + "lastReviewed": [ + "2021-11-09T00:00:00+00:00", + "2024-11-09T00:00:00+00:00" + ], + "reviewDue": "2024-11-09T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anal-fissure/", + "name": "Anal fissure" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/angiography/", - "name": "Angiography" - }, - { - "description": "Read about ankylosing spondylitis (AS) and other types of axial spondyloarthritis, a long-term (chronic) condition in which the spine and other areas of the body become inflamed.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T11:50:54+00:00", - "dateModified": "2023-05-16T16:35:22+00:00", - "lastReviewed": ["2023-01-05T01:00:00+00:00", "2026-01-05T01:00:00+00:00"], - "reviewDue": "2026-01-05T01:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out what an anal fistula is, including information about the symptoms, causes and treatments.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T10:45:38+00:00", + "dateModified": "2023-12-04T09:44:24+00:00", + "lastReviewed": [ + "2023-02-21T01:00:00+00:00", + "2026-02-21T01:00:00+00:00" + ], + "reviewDue": "2026-02-21T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anal-fistula/", + "name": "Anal fistula" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/ankylosing-spondylitis/", - "name": "Ankylosing spondylitis" - }, - { - "description": "Find out about antibiotics, which are used to treat or prevent some types of bacterial infection.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Medicine"], - "datePublished": "2017-10-20T12:01:37+00:00", - "dateModified": "2023-04-12T14:52:48+00:00", - "lastReviewed": ["2022-11-11T01:00:00+00:00", "2025-11-11T01:00:00+00:00"], - "reviewDue": "2025-11-11T01:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "NHS information about anaphylaxis, including symptoms, when to get help, treatment and prevention.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T11:15:04+00:00", + "dateModified": "2024-12-05T16:07:12+00:00", + "lastReviewed": [ + "2023-06-21T02:00:00+00:00", + "2026-06-21T02:00:00+00:00" + ], + "reviewDue": "2026-06-21T02:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anaphylaxis/", + "name": "Anaphylaxis" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/antibiotics/", - "name": "Antibiotics" - }, - { - "description": "Anticoagulants are medicines that reduce the ability of the blood to clot. Read about why they're used, how you take them and what you need to bear in mind while taking them.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Medicine"], - "datePublished": "2018-02-06T08:50:51+00:00", - "dateModified": "2022-05-17T09:29:52+00:00", - "lastReviewed": ["2021-07-26T16:18:00+00:00", "2024-07-26T16:18:00+00:00"], - "reviewDue": "2024-07-26T16:18:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about androgen insensitivity syndrome (AIS), a rare condition that affects the development of a person's genitals and reproductive organs.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T11:58:16+00:00", + "dateModified": "2024-04-02T09:26:51+00:00", + "lastReviewed": [ + "2024-03-18T15:31:00+00:00", + "2027-03-18T00:00:00+00:00" + ], + "reviewDue": "2027-03-18T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/androgen-insensitivity-syndrome/", + "name": "Androgen insensitivity syndrome" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anticoagulants/", - "name": "Anticoagulant medicines" - }, - { - "description": "Antidepressants are a type of medication used to treat clinical depression or prevent it recurring. They can also be used to treat some other conditions.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Medicine"], - "datePublished": "2017-10-24T14:35:59+00:00", - "dateModified": "2021-11-18T15:35:42+00:00", - "lastReviewed": ["2018-08-16T00:00:00+00:00", "2021-08-16T00:00:00+00:00"], - "reviewDue": "2021-08-16T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about angina, a type of chest pain caused by the heart not getting enough blood. Find out about the symptoms and how it's treated.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T11:50:47+00:00", + "dateModified": "2025-03-19T14:18:04+00:00", + "lastReviewed": [ + "2025-03-18T15:00:00+00:00", + "2028-03-18T15:00:00+00:00" + ], + "reviewDue": "2028-03-18T15:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/angina/", + "name": "Angina" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/antidepressants/", - "name": "Antidepressants" - }, - { - "description": "Antiphospholipid syndrome (APS), also known as Hughes syndrome, is a disorder of the immune system that causes an increased risk of blood clots.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2018-05-04T15:23:38+00:00", - "dateModified": "2022-10-05T10:51:52+00:00", - "lastReviewed": ["2022-06-20T00:00:00+00:00", "2025-06-20T00:00:00+00:00"], - "reviewDue": "2025-06-20T00:00:00+00:00", - "keywords": "", - "alternateName": ["Hughes syndrome"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out what angioedema is, what the symptoms are, why it happens and how it's treated.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-19T15:06:52+00:00", + "dateModified": "2025-02-20T17:17:29+00:00", + "lastReviewed": [ + "2023-01-18T01:00:00+00:00", + "2026-01-18T01:00:00+00:00" + ], + "reviewDue": "2026-01-18T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/angioedema/", + "name": "Angioedema" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/antiphospholipid-syndrome/", - "name": "Antiphospholipid syndrome (APS)" - }, - { - "description": "Read about aortic valve replacement, a type of open heart surgery that replaces faulty or or damaged valves.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Procedure", "Treatment"], - "datePublished": "2017-10-20T12:19:54+00:00", - "dateModified": "2022-01-25T11:52:35+00:00", - "lastReviewed": ["2021-12-23T00:00:00+00:00", "2024-12-23T00:00:00+00:00"], - "reviewDue": "2024-12-23T00:00:00+00:00", - "keywords": "", - "alternateName": ["Heart valve replacement"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Read about ankylosing spondylitis (AS) and other types of axial spondyloarthritis, a long-term (chronic) condition in which the spine and other areas of the body become inflamed.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T11:50:54+00:00", + "dateModified": "2024-02-07T11:30:31+00:00", + "lastReviewed": [ + "2023-01-05T01:00:00+00:00", + "2026-01-05T01:00:00+00:00" + ], + "reviewDue": "2026-01-05T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/ankylosing-spondylitis/", + "name": "Ankylosing spondylitis" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/aortic-valve-replacement/", - "name": "Aortic valve replacement" - }, - { - "description": "Read about aphasia, where a person has problems communicating. Find out about the types of aphasia, what causes it, and how it's diagnosed and treated.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T12:07:10+00:00", - "dateModified": "2023-08-22T10:34:34+00:00", - "lastReviewed": ["2021-03-23T00:00:00+00:00", "2024-03-23T00:00:00+00:00"], - "reviewDue": "2024-03-23T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Antiphospholipid syndrome (APS), also known as Hughes syndrome, is a disorder of the immune system that causes an increased risk of blood clots.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2018-05-04T15:23:38+00:00", + "dateModified": "2024-11-27T11:31:54+00:00", + "lastReviewed": [ + "2022-06-20T00:00:00+00:00", + "2025-06-20T00:00:00+00:00" + ], + "reviewDue": "2025-06-20T00:00:00+00:00", + "keywords": "", + "alternateName": [ + "Hughes syndrome" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/antiphospholipid-syndrome/", + "name": "Antiphospholipid syndrome (APS)" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/aphasia/", - "name": "Aphasia" - }, - { - "description": "Find out about appendicitis, a painful swelling of the appendix, including what causes it, when to get medical help and how the appendix is surgically removed (appendicectomy or appendectomy).", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T14:55:04+00:00", - "dateModified": "2023-05-17T17:32:08+00:00", - "lastReviewed": ["2022-10-20T23:00:00+00:00", "2025-10-20T23:00:00+00:00"], - "reviewDue": "2025-10-20T23:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Aphasia is a condition that affects how you communicate. It can make it hard to speak, understand others, read, write and use numbers. Find out about the symptoms, treatment and what causes it.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T12:07:10+00:00", + "dateModified": "2025-04-03T07:39:28+00:00", + "lastReviewed": [ + "2025-04-01T08:00:00+00:00", + "2028-04-01T08:00:00+00:00" + ], + "reviewDue": "2028-04-01T08:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/aphasia/", + "name": "Aphasia" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/appendicitis/", - "name": "Appendicitis" - }, - { - "description": "Read about arthritis, a common condition that causes pain and inflammation in a joint. Although there's no cure, treatment can help slow it down.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T10:02:53+00:00", - "dateModified": "2022-09-16T10:48:22+00:00", - "lastReviewed": ["2022-09-07T23:00:00+00:00", "2025-09-07T23:00:00+00:00"], - "reviewDue": "2025-09-07T23:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about appendicitis, including what the symptoms are, what to do if you think you have it, how it's treated and possible complications.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T14:55:04+00:00", + "dateModified": "2025-04-02T10:27:27+00:00", + "lastReviewed": [ + "2024-08-08T23:00:00+00:00", + "2027-08-08T23:00:00+00:00" + ], + "reviewDue": "2027-08-08T23:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/appendicitis/", + "name": "Appendicitis" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/arthritis/", - "name": "Arthritis" - }, - { - "description": "Read about arthroscopy, a type of keyhole surgery used to diagnose and sometimes treat joint problems. Keyhole surgery is where only small cuts are made.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Procedure", "Test"], - "datePublished": "2017-10-20T12:11:25+00:00", - "dateModified": "2022-06-14T11:22:45+00:00", - "lastReviewed": ["2022-06-09T00:00:00+00:00", "2025-06-09T00:00:00+00:00"], - "reviewDue": "2025-06-09T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Read about arthritis, a common condition that causes pain and inflammation in a joint. Although there's no cure, treatment can help slow it down.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T10:02:53+00:00", + "dateModified": "2024-04-17T07:17:20+00:00", + "lastReviewed": [ + "2022-09-07T23:00:00+00:00", + "2025-09-07T23:00:00+00:00" + ], + "reviewDue": "2025-09-07T23:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/arthritis/", + "name": "Arthritis" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/arthroscopy/", - "name": "Arthroscopy" - }, - { - "description": "Aspergillosis is the name of a group of fungal conditions caused by a mould called aspergillus.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T12:45:00+00:00", - "dateModified": "2021-11-18T15:36:02+00:00", - "lastReviewed": ["2021-03-11T00:00:00+00:00", "2024-03-11T00:00:00+00:00"], - "reviewDue": "2024-03-11T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out more about aspergillosis, the name of a group of conditions caused by a mould called aspergillus.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T12:45:00+00:00", + "dateModified": "2024-04-26T09:36:44+00:00", + "lastReviewed": [ + "2024-04-18T23:00:00+00:00", + "2027-04-18T23:00:00+00:00" + ], + "reviewDue": "2027-04-18T23:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/aspergillosis/", + "name": "Aspergillosis" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/aspergillosis/", - "name": "Aspergillosis" - }, - { - "description": "Find out what asthma is, what the symptoms are, what causes it and how it's treated.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T09:33:19+00:00", - "dateModified": "2023-09-26T09:13:01+00:00", - "lastReviewed": ["2021-04-18T23:00:00+00:00", "2024-04-18T23:00:00+00:00"], - "reviewDue": "2024-04-18T23:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about asthma, a common condition that affects breathing, including the symptoms, treatment and how it affects your life.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T09:33:19+00:00", + "dateModified": "2025-04-10T16:00:15+00:00", + "lastReviewed": [ + "2025-04-06T23:00:00+00:00", + "2028-04-06T23:00:00+00:00" + ], + "reviewDue": "2028-04-06T23:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/asthma/", + "name": "Asthma" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/asthma/", - "name": "Asthma" - }, - { - "description": "Read about astigmatism, a common and usually minor condition of the eye that causes blurred or distorted vision. Find out what the symptoms and treatments are.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-11-21T12:54:01+00:00", - "dateModified": "2022-07-04T09:12:16+00:00", - "lastReviewed": ["2020-12-08T01:00:00+00:00", "2023-12-08T01:00:00+00:00"], - "reviewDue": "2023-12-08T01:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out more about astigmatism, a common eye condition, including the symptoms and how it's treated.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-11-21T12:54:01+00:00", + "dateModified": "2024-10-22T14:40:37+00:00", + "lastReviewed": [ + "2024-09-19T00:00:00+00:00", + "2027-09-19T00:00:00+00:00" + ], + "reviewDue": "2027-09-19T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/astigmatism/", + "name": "Astigmatism" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/astigmatism/", - "name": "Astigmatism" - }, - { - "description": "Ataxia is the term for a group of disorders that affect co-ordination, balance and speech. Find out about the main types, what causes them, and how they're treated.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T13:18:17+00:00", - "dateModified": "2022-05-17T15:10:05+00:00", - "lastReviewed": ["2021-04-16T15:02:00+00:00", "2024-04-16T15:02:00+00:00"], - "reviewDue": "2024-04-16T15:02:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Ataxia is the term for a group of disorders that affect co-ordination, balance and speech. Find out about the main types, what causes them, and how they're treated.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T13:18:17+00:00", + "dateModified": "2024-11-27T11:54:09+00:00", + "lastReviewed": [ + "2021-04-16T15:02:00+00:00", + "2024-04-16T15:02:00+00:00" + ], + "reviewDue": "2024-04-16T15:02:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/ataxia/", + "name": "Ataxia" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/ataxia/", - "name": "Ataxia" - }, - { - "description": "Read about atopic eczema (atopic dermatitis), a condition that causes the skin to become itchy, dry, cracked and sore.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-19T15:22:44+00:00", - "dateModified": "2023-09-26T08:42:19+00:00", - "lastReviewed": ["2019-12-05T00:00:00+00:00", "2022-12-05T00:00:00+00:00"], - "reviewDue": "2022-12-05T00:00:00+00:00", - "keywords": "", - "alternateName": ["Eczema (atopic)"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about atrial fibrillation, a condition that causes an irregular heart rhythm, including symptoms, treatment and how it affects your life.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T12:22:43+00:00", + "dateModified": "2025-02-20T17:57:08+00:00", + "lastReviewed": [ + "2025-01-13T11:00:00+00:00", + "2028-01-13T11:00:00+00:00" + ], + "reviewDue": "2028-01-13T11:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/atrial-fibrillation/", + "name": "Atrial fibrillation" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/atopic-eczema/", - "name": "Atopic eczema" - }, - { - "description": "Read about atrial fibrillation, which is a heart condition that causes an irregular and often abnormally fast heart rate.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T12:22:43+00:00", - "dateModified": "2022-06-24T13:31:09+00:00", - "lastReviewed": ["2021-05-17T00:00:00+00:00", "2024-05-17T00:00:00+00:00"], - "reviewDue": "2024-05-17T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about autosomal dominant polycystic kidney disease (ADPKD), an inherited condition that causes small fluid-filled sacs called cysts to develop in the kidneys.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T12:56:56+00:00", + "dateModified": "2024-04-08T11:54:02+00:00", + "lastReviewed": [ + "2023-02-23T12:21:00+00:00", + "2026-02-23T12:21:00+00:00" + ], + "reviewDue": "2026-02-23T12:21:00+00:00", + "keywords": "", + "alternateName": [ + "Polycystic kidney disease (autosomal dominant)" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/autosomal-dominant-polycystic-kidney-disease-adpkd/", + "name": "Autosomal dominant polycystic kidney disease" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/atrial-fibrillation/", - "name": "Atrial fibrillation" - }, - { - "description": "Read about attention deficit hyperactivity disorder (ADHD), a condition that affects people's behaviour.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2018-06-01T08:55:10+00:00", - "dateModified": "2023-07-28T15:24:09+00:00", - "lastReviewed": ["2021-12-24T01:00:00+00:00", "2024-12-24T01:00:00+00:00"], - "reviewDue": "2024-12-24T01:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Autosomal recessive polycystic kidney disease (ARPKD) is a rare inherited childhood condition where the development of the kidneys and liver is abnormal.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T13:09:20+00:00", + "dateModified": "2024-04-08T11:54:52+00:00", + "lastReviewed": [ + "2023-01-10T00:00:00+00:00", + "2026-01-10T00:00:00+00:00" + ], + "reviewDue": "2026-01-10T00:00:00+00:00", + "keywords": "", + "alternateName": [ + "Polycystic kidney disease (autosomal recessive)" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/autosomal-recessive-polycystic-kidney-disease-arpkd/", + "name": "Autosomal recessive polycystic kidney disease" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/attention-deficit-hyperactivity-disorder-adhd/", - "name": "Attention deficit hyperactivity disorder (ADHD)" - }, - { - "description": "Find out about autosomal dominant polycystic kidney disease (ADPKD), an inherited condition that causes small fluid-filled sacs called cysts to develop in the kidneys.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T12:56:56+00:00", - "dateModified": "2023-02-28T08:22:03+00:00", - "lastReviewed": ["2023-02-23T12:21:00+00:00", "2026-02-23T12:21:00+00:00"], - "reviewDue": "2026-02-23T12:21:00+00:00", - "keywords": "", - "alternateName": ["Polycystic kidney disease (autosomal dominant)"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out more about age-related macular degeneration (AMD), which mainly affects people over 50 years of age and usually leads to a gradual loss of central vision.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-23T13:25:25+00:00", + "dateModified": "2025-01-31T16:37:25+00:00", + "lastReviewed": [ + "2025-01-22T01:00:00+00:00", + "2028-01-22T01:00:00+00:00" + ], + "reviewDue": "2028-01-22T01:00:00+00:00", + "keywords": "", + "alternateName": [ + "Macular degeneration (age-related)" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/age-related-macular-degeneration-amd/", + "name": "Age-related macular degeneration (AMD)" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/autosomal-dominant-polycystic-kidney-disease-adpkd/", - "name": "Autosomal dominant polycystic kidney disease" - }, - { - "description": "Autosomal recessive polycystic kidney disease (ARPKD) is a rare inherited childhood condition where the development of the kidneys and liver is abnormal.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T13:09:20+00:00", - "dateModified": "2023-01-31T11:30:16+00:00", - "lastReviewed": ["2023-01-10T00:00:00+00:00", "2026-01-10T00:00:00+00:00"], - "reviewDue": "2026-01-10T00:00:00+00:00", - "keywords": "", - "alternateName": ["Polycystic kidney disease (autosomal recessive)"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out what you can do to ease ankle pain, what could be causing the pain and when to get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2022-03-30T12:58:40+00:00", + "dateModified": "2024-12-03T10:45:35+00:00", + "lastReviewed": [ + "2022-02-22T08:29:00+00:00", + "2025-02-22T08:29:00+00:00" + ], + "reviewDue": "2025-02-22T08:29:00+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/foot-pain/ankle-pain/", + "name": "Ankle pain" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/autosomal-recessive-polycystic-kidney-disease-arpkd/", - "name": "Autosomal recessive polycystic kidney disease" - }, - { - "description": "Read more about age-related macular degeneration (AMD), which mainly affects people over 50 years of age and usually leads to a gradual loss of central vision.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-23T13:25:25+00:00", - "dateModified": "2021-11-18T15:46:43+00:00", - "lastReviewed": ["2021-04-20T00:00:00+00:00", "2024-04-20T00:00:00+00:00"], - "reviewDue": "2024-04-20T00:00:00+00:00", - "keywords": "", - "alternateName": ["Macular degeneration (age-related)"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "NHS guide to autism. Find out what autism is and what the common signs are. Get help and advice if you or your child are autistic.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2023-03-08T13:51:37+00:00", + "dateModified": "2023-03-13T08:37:12+00:00", + "keywords": "", + "alternateName": [ + "Asperger's" + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/autism/", + "name": "Autism" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/age-related-macular-degeneration-amd/", - "name": "Age-related macular degeneration (AMD)" - }, - { - "description": "Find out what an abortion involves, how you can get one on the NHS, and what support is available to help you make a decision.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Procedure"], - "datePublished": "2017-10-18T11:36:09+00:00", - "dateModified": "2023-04-17T13:58:22+00:00", - "lastReviewed": ["2020-04-24T11:13:00+00:00", "2023-04-24T11:13:00+00:00"], - "reviewDue": "2023-04-24T11:13:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about acute lymphoblastic leukaemia (ALL), including what the symptoms are, what to do if you think you have it, how it's treated and where to get support.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2023-08-07T09:51:57+00:00", + "dateModified": "2023-08-07T09:51:57+00:00", + "keywords": "", + "alternateName": [ + "Leukaemia (acute lymphoblastic)" + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acute-lymphoblastic-leukaemia/", + "name": "Acute lymphoblastic leukaemia" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/abortion/", - "name": "Abortion" - }, - { - "description": "Find out about antifungal medicines, which are used to treat fungal infections such as thrush and athlete's foot.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Medicine"], - "datePublished": "2017-10-19T07:12:16+00:00", - "dateModified": "2023-04-04T17:17:01+00:00", - "lastReviewed": ["2023-04-03T07:05:00+00:00", "2026-04-03T07:05:00+00:00"], - "reviewDue": "2026-04-03T07:05:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about adenomyosis, including symptoms, what to do if you think you have it and how it's treated.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2023-07-21T07:11:46+00:00", + "dateModified": "2024-03-14T13:05:29+00:00", + "lastReviewed": [ + "2023-07-17T15:30:00+00:00", + "2026-07-17T15:30:00+00:00" + ], + "reviewDue": "2026-07-17T15:30:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/adenomyosis/", + "name": "Adenomyosis" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/antifungal-medicines/", - "name": "Antifungal medicines" - }, - { - "description": "Find out what you can do to ease ankle pain, what could be causing the pain and when to get medical help.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Symptom"], - "datePublished": "2022-03-30T12:58:40+00:00", - "dateModified": "2023-01-11T09:33:51+00:00", - "lastReviewed": ["2022-02-22T08:29:00+00:00", "2025-02-22T08:29:00+00:00"], - "reviewDue": "2025-02-22T08:29:00+00:00", - "keywords": "" + { + "description": "Find out about anal cancer, including what the symptoms are, what to do if you think you have it, how it's treated, and where to get support.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2024-03-28T10:21:34+00:00", + "dateModified": "2024-03-28T10:21:34+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anal-cancer/", + "name": "Anal cancer" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/foot-pain/ankle-pain/", - "name": "Ankle pain" - }, - { - "description": "NHS guide to autism. Find out what autism is and what the common signs are. Get help and advice if you or your child are autistic.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2023-03-08T13:51:37+00:00", - "dateModified": "2023-03-13T08:37:12+00:00", - "keywords": "", - "alternateName": ["Asperger's"] + { + "description": "Find out about atopic eczema, including symptoms, causes and treatments.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2024-09-11T07:50:02+00:00", + "dateModified": "2024-09-11T07:50:02+00:00", + "lastReviewed": [ + "2024-09-06T15:18:00+00:00", + "2027-09-06T15:18:00+00:00" + ], + "reviewDue": "2027-09-06T15:18:00+00:00", + "keywords": "", + "alternateName": [ + "Eczema (atopic)" + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/atopic-eczema/", + "name": "Atopic eczema" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/autism/", - "name": "Autism" - }, - { - "description": "Find out about acute lymphoblastic leukaemia (ALL), including what the symptoms are, what to do if you think you have it, how it's treated and where to get support.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2023-08-07T09:51:57+00:00", - "dateModified": "2023-08-07T09:51:57+00:00", - "keywords": "", - "alternateName": ["Leukaemia (acute lymphoblastic)"] + { + "description": "Find out about ADHD (attention deficit hyperactivity disorder) in adults, the symptoms of ADHD, how to get a diagnosis and how to manage it.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2025-03-21T15:33:51+00:00", + "dateModified": "2025-03-27T15:41:27+00:00", + "lastReviewed": [ + "2025-03-19T00:00:00+00:00", + "2028-03-19T11:08:00+00:00" + ], + "reviewDue": "2028-03-19T11:08:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/adhd-adults/", + "name": "ADHD in adults" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acute-lymphoblastic-leukaemia/", - "name": "Acute lymphoblastic leukaemia" - }, - { - "description": "Find out about adenomyosis, including symptoms, what to do if you think you have it and how it's treated.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2023-07-21T07:11:46+00:00", - "dateModified": "2023-07-21T09:01:15+00:00", - "lastReviewed": ["2023-07-17T15:30:00+00:00", "2026-07-17T15:30:00+00:00"], - "reviewDue": "2026-07-17T15:30:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about ADHD (attention deficit hyperactivity disorder) in children and teenagers, the symptoms of ADHD, how to get a diagnosis and how to manage it.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2025-03-21T15:32:36+00:00", + "dateModified": "2025-03-21T15:32:36+00:00", + "lastReviewed": [ + "2025-03-19T00:00:00+00:00", + "2028-03-19T15:55:00+00:00" + ], + "reviewDue": "2028-03-19T15:55:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/adhd-children-teenagers/", + "name": "ADHD in children and young people" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/adenomyosis/", - "name": "Adenomyosis" - }, - { - "description": "Find out what anorexia nervosa is, what causes it, the signs to look out for, and the treatment and support available.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2021-02-11T11:22:08+00:00", - "dateModified": "2022-08-16T12:47:57+00:00", - "keywords": "" + { + "description": "Find out what anorexia nervosa is, what causes it, the signs to look out for, and the treatment and support available.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2021-02-11T11:22:08+00:00", + "dateModified": "2024-01-22T12:49:14+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/mental-health/conditions/anorexia/", + "name": "Anorexia nervosa" }, - "url": "https://api.service.nhs.uk/nhs-website-content/mental-health/conditions/anorexia/", - "name": "Anorexia nervosa" - }, - { - "description": "Find out what antisocial personality disorder is, what the signs are, and how it's diagnosed and treated.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2021-02-12T17:48:26+00:00", - "dateModified": "2022-06-14T10:28:25+00:00", - "lastReviewed": ["2021-12-23T15:40:00+00:00", "2024-12-23T15:40:00+00:00"], - "reviewDue": "2024-12-23T15:40:00+00:00", - "keywords": "" + { + "description": "Find out what antisocial personality disorder is, what the signs are, and how it's diagnosed and treated.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2021-02-12T17:48:26+00:00", + "dateModified": "2022-06-14T10:28:25+00:00", + "lastReviewed": [ + "2021-12-23T15:40:00+00:00", + "2024-12-23T15:40:00+00:00" + ], + "reviewDue": "2024-12-23T15:40:00+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/mental-health/conditions/antisocial-personality-disorder/", + "name": "Antisocial personality disorder" }, - "url": "https://api.service.nhs.uk/nhs-website-content/mental-health/conditions/antisocial-personality-disorder/", - "name": "Antisocial personality disorder" - }, - { - "description": "Read about agoraphobia, a fear of being in situations where escape might be difficult or that help wouldn't be available if things go wrong.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2021-02-12T16:39:14+00:00", - "dateModified": "2022-03-29T10:14:46+00:00", - "keywords": "" + { + "description": "Read about agoraphobia, a fear of being in situations where escape might be difficult or that help wouldn't be available if things go wrong.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2021-02-12T16:39:14+00:00", + "dateModified": "2022-03-29T10:14:46+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/mental-health/conditions/agoraphobia/", + "name": "Agoraphobia" }, - "url": "https://api.service.nhs.uk/nhs-website-content/mental-health/conditions/agoraphobia/", - "name": "Agoraphobia" - } + { + "description": "Read about anxiety disorders in children and teenagers, with links to other useful resources.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "WebPage", + "genre": [ + "Advice or information" + ], + "datePublished": "2021-02-04T12:39:01+00:00", + "dateModified": "2025-03-24T13:44:27+00:00", + "lastReviewed": [ + "2023-12-15T00:00:00+00:00", + "2026-12-15T00:00:00+00:00" + ], + "reviewDue": "2026-12-15T00:00:00+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/mental-health/children-and-young-adults/advice-for-parents/anxiety-disorders-in-children/", + "name": "Anxiety disorders in children" + } ], "webpage": "https://www.nhs.uk/conditions/" } diff --git a/sandbox/responses/conditions-root-category-b.json b/sandbox/responses/conditions-root-category-b.json index facbfa9..7c78d50 100644 --- a/sandbox/responses/conditions-root-category-b.json +++ b/sandbox/responses/conditions-root-category-b.json @@ -1,1571 +1,1599 @@ { "@context": "http://schema.org", "@type": "MedicalWebPage", - "name": "Health A to Z", - "copyrightHolder": { "name": "Crown Copyright", "@type": "Organization" }, + "name": "Conditions A to Z", + "copyrightHolder": { + "name": "Crown Copyright", + "@type": "Organization" + }, "license": "https://developer.api.nhs.uk/terms", "author": { - "url": "https://www.nhs.uk", - "logo": "https://assets.nhs.uk/nhsuk-cms/images/nhs-attribution.width-510.png", - "email": "nhswebsite.servicedesk@nhs.net", - "@type": "Organization", - "name": "NHS website" + "url": "https://www.nhs.uk", + "logo": "https://assets.nhs.uk/nhsuk-cms/images/nhs-attribution.width-510.png", + "email": "nhswebsite.servicedesk@nhs.net", + "@type": "Organization", + "name": "NHS website" + }, + "about": { + "@type": "WebPage", + "name": "Conditions A to Z", + "alternateName": "" }, - "about": { "@type": "WebPage", "name": "Health A to Z", "alternateName": "" }, - "description": "", + "description": "Find out about health conditions, including their symptoms and how they're treated.", "url": "https://api.service.nhs.uk/nhs-website-content/conditions/", "genre": [], "keywords": "", - "dateModified": "2021-11-18T15:26:06+00:00", + "dateModified": "2025-04-16T13:49:43+00:00", "breadcrumb": { - "@context": "http://schema.org", - "@type": "BreadcrumbList", - "itemListElement": [ - { - "@type": "ListItem", - "position": 0, - "item": { "@id": "https://api.service.nhs.uk/nhs-website-content/conditions/", "name": "Health A to Z", "genre": [] } - } - ] + "@context": "http://schema.org", + "@type": "BreadcrumbList", + "itemListElement": [ + { + "@type": "ListItem", + "position": 0, + "item": { + "@id": "https://api.service.nhs.uk/nhs-website-content/conditions/", + "name": "Conditions A to Z", + "genre": [] + } + } + ] }, "contentSubTypes": [], "significantLink": [ - { - "description": "Read about balanitis, which is where the head of the penis is swollen and sore. Find out about the symptoms, causes, treatments and when to get medical help.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T16:07:52+00:00", - "dateModified": "2023-05-30T12:15:43+00:00", - "lastReviewed": ["2023-05-30T00:00:00+00:00", "2026-05-30T00:00:00+00:00"], - "reviewDue": "2026-05-30T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/balanitis/", - "name": "Balanitis" - }, - { - "description": "Read about having a barium enema, including what you need to do to prepare, what happens during the test, and what happens afterwards.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Procedure", "Test"], - "datePublished": "2017-10-17T16:09:38+00:00", - "dateModified": "2023-04-04T10:12:03+00:00", - "lastReviewed": ["2022-05-13T00:00:00+00:00", "2025-05-13T00:00:00+00:00"], - "reviewDue": "2025-05-13T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/barium-enema/", - "name": "Barium enema" - }, - { - "description": "Find out about bedbugs, including checking if you have them, how to get rid of them and how to treat bedbug bites.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T16:09:19+00:00", - "dateModified": "2022-08-04T13:49:39+00:00", - "lastReviewed": ["2022-08-01T23:00:00+00:00", "2025-08-01T23:00:00+00:00"], - "reviewDue": "2025-08-01T23:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bedbugs/", - "name": "Bedbugs" - }, - { - "description": "Read about a group of medicines called beta blockers, including what they're used for, side effects and what to do if you miss a dose or take too much.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Medicine"], - "datePublished": "2017-10-17T16:13:30+00:00", - "dateModified": "2023-02-17T16:57:13+00:00", - "lastReviewed": ["2022-12-02T01:00:00+00:00", "2025-12-02T01:00:00+00:00"], - "reviewDue": "2025-12-02T01:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/beta-blockers/", - "name": "Beta blockers" - }, - { - "description": "Find out more about a black eye, which is bruising and swelling around your eye, usually caused by a blow.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Accident or injury"], - "datePublished": "2017-10-17T16:07:56+00:00", - "dateModified": "2023-08-04T08:10:00+00:00", - "lastReviewed": ["2023-07-27T00:00:00+00:00", "2026-07-27T00:00:00+00:00"], - "reviewDue": "2026-07-27T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/black-eye/", - "name": "Black eye" - }, - { - "description": "Read about blood clots, their symptoms, when to get help and how to prevent them.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-18T08:20:04+00:00", - "dateModified": "2023-04-26T15:02:30+00:00", - "lastReviewed": ["2021-02-16T00:00:00+00:00", "2024-02-16T00:00:00+00:00"], - "reviewDue": "2024-02-16T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/blood-clots/", - "name": "Blood clots" - }, - { - "description": "Find out about blood groups. There are 4 main blood groups \u2013 A, B, AB and O.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "WebPage", - "genre": ["Advice or information"], - "datePublished": "2017-10-17T16:22:10+00:00", - "dateModified": "2023-05-17T11:24:01+00:00", - "lastReviewed": ["2023-05-10T08:40:00+00:00", "2026-05-10T08:40:00+00:00"], - "reviewDue": "2026-05-10T08:40:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/blood-groups/", - "name": "Blood groups" - }, - { - "description": "Find out about possible causes of blood in semen and when to get medical help.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Symptom"], - "datePublished": "2018-10-03T19:56:07+00:00", - "dateModified": "2022-03-22T14:11:41+00:00", - "lastReviewed": ["2022-03-15T01:00:00+00:00", "2025-03-15T01:00:00+00:00"], - "reviewDue": "2025-03-15T01:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/blood-in-semen/", - "name": "Blood in semen" - }, - { - "description": "Find out about blood in urine (pee). It's not usually anything serious, but sometimes it can be, so you must get it checked out by a GP.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Symptom"], - "datePublished": "2017-12-08T09:36:05+00:00", - "dateModified": "2023-06-12T11:34:55+00:00", - "lastReviewed": ["2023-05-19T00:00:00+00:00", "2026-05-19T00:00:00+00:00"], - "reviewDue": "2026-05-19T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/blood-in-urine/", - "name": "Blood in urine" - }, - { - "description": "Find out why a blood pressure test is important, how it\u2019s done and what your blood pressure reading might mean.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Test"], - "datePublished": "2018-07-30T13:46:29+00:00", - "dateModified": "2023-10-18T13:44:29+00:00", - "lastReviewed": ["2023-07-11T03:00:00+00:00", "2026-07-11T03:00:00+00:00"], - "reviewDue": "2026-07-11T03:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/blood-pressure-test/", - "name": "Blood pressure test" - }, - { - "description": "Read more about boils and carbuncles, which are red, painful lumps on the skin that are usually caused by a bacterial infection.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T16:16:23+00:00", - "dateModified": "2023-06-23T15:18:57+00:00", - "lastReviewed": ["2023-06-20T00:00:00+00:00", "2026-06-20T00:00:00+00:00"], - "reviewDue": "2026-06-20T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/boils/", - "name": "Boils" - }, - { - "description": "Find out about botulism, a rare but life-threatening condition caused by toxins produced by Clostridium botulinum bacteria.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T16:12:58+00:00", - "dateModified": "2022-10-06T19:25:49+00:00", - "lastReviewed": ["2022-10-02T23:00:00+00:00", "2025-10-02T23:00:00+00:00"], - "reviewDue": "2025-10-02T23:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/botulism/", - "name": "Botulism" - }, - { - "description": "Find out about bowel (colonic) polyps, which are small growths on the inner lining of the bowel. There are often no symptoms but should usually be removed.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T16:11:55+00:00", - "dateModified": "2023-08-02T12:51:35+00:00", - "lastReviewed": ["2023-07-28T09:38:00+00:00", "2026-07-28T09:38:00+00:00"], - "reviewDue": "2026-07-28T09:38:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bowel-polyps/", - "name": "Bowel polyps" - }, - { - "description": "Find out about the symptoms, causes and treatments for Bowen's disease, a very early and easily treatable form of skin cancer.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T16:18:43+00:00", - "dateModified": "2022-10-13T12:36:12+00:00", - "lastReviewed": ["2022-10-06T00:00:00+00:00", "2025-10-06T00:00:00+00:00"], - "reviewDue": "2025-10-06T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bowens-disease/", - "name": "Bowen's disease" - }, - { - "description": "A brain tumour is a growth of cells in the brain that multiplies in an abnormal, uncontrollable way. Find out about its symptoms and how it's treated.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T16:15:16+00:00", - "dateModified": "2023-06-13T10:05:22+00:00", - "lastReviewed": ["2023-06-11T23:00:00+00:00", "2026-06-11T23:00:00+00:00"], - "reviewDue": "2026-06-11T23:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/brain-tumours/", - "name": "Brain tumours" - }, - { - "description": "Find out about breast pain and what can cause it. It's usually linked to periods but can also be caused by injury, infection and taking certain medicines.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Symptom"], - "datePublished": "2017-10-17T16:24:54+00:00", - "dateModified": "2023-05-17T12:35:34+00:00", - "lastReviewed": ["2023-05-03T00:00:00+00:00", "2026-05-03T00:00:00+00:00"], - "reviewDue": "2026-05-03T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/breast-pain/", - "name": "Breast pain" - }, - { - "description": "Find out whether you might be eligible for breast reduction surgery on the NHS and what to do if you think you might qualify.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "WebPage", - "genre": ["Advice or information"], - "datePublished": "2017-10-17T16:38:33+00:00", - "dateModified": "2023-01-26T17:15:14+00:00", - "lastReviewed": ["2022-11-14T01:00:00+00:00", "2025-11-14T01:00:00+00:00"], - "reviewDue": "2025-11-14T01:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/breast-reduction-on-the-nhs/", - "name": "Breast reduction on the NHS" - }, - { - "description": "Find out about breath-holding in babies and children, including when to get medical help, what happens during an episode and what to do.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T16:48:03+00:00", - "dateModified": "2023-03-06T08:05:09+00:00", - "lastReviewed": ["2023-03-02T00:00:00+00:00", "2026-03-02T00:00:00+00:00"], - "reviewDue": "2026-03-02T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/breath-holding-in-babies-and-children/", - "name": "Breath-holding in babies and children" - }, - { - "description": "Find out how to tell if your ankle is broken (fractured) and when to get medical advice, plus how a broken ankle is treated and how long it takes to heal.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Accident or injury"], - "datePublished": "2017-10-17T16:28:23+00:00", - "dateModified": "2023-02-15T10:48:13+00:00", - "lastReviewed": ["2022-03-11T01:00:00+00:00", "2025-03-11T01:00:00+00:00"], - "reviewDue": "2025-03-11T01:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/broken-ankle/", - "name": "Broken ankle" - }, - { - "description": "Find out how to tell if you have a broken arm or wrist, where to get medical help and how long it takes to heal.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition", "Accident or injury"], - "datePublished": "2017-10-17T16:31:40+00:00", - "dateModified": "2023-09-20T14:31:35+00:00", - "lastReviewed": ["2023-05-26T14:54:00+00:00", "2026-05-26T14:54:00+00:00"], - "reviewDue": "2026-05-26T14:54:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/broken-arm-or-wrist/", - "name": "Broken arm or wrist" - }, - { - "description": "Find out how to tell if you have a broken collarbone, where to get medical help and how long it takes to heal.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition", "Accident or injury"], - "datePublished": "2017-10-17T17:04:08+00:00", - "dateModified": "2023-08-04T09:21:41+00:00", - "lastReviewed": ["2023-08-01T23:00:00+00:00", "2026-08-01T23:00:00+00:00"], - "reviewDue": "2026-08-01T23:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/broken-collarbone/", - "name": "Broken collarbone" - }, - { - "description": "Find out how to tell if you have a broken finger or thumb, what you should do, and how long it takes to heal.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Accident or injury"], - "datePublished": "2017-10-17T16:33:32+00:00", - "dateModified": "2022-03-24T13:56:08+00:00", - "lastReviewed": ["2022-03-23T01:00:00+00:00", "2025-03-23T01:00:00+00:00"], - "reviewDue": "2025-03-23T01:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/broken-finger/", - "name": "Broken finger or thumb" - }, - { - "description": "Read about the signs of a broken leg, what you should do if you think someone has broken their leg, how a broken leg is treated and how long it takes to recover.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Accident or injury"], - "datePublished": "2017-10-18T08:55:52+00:00", - "dateModified": "2023-10-20T08:47:58+00:00", - "lastReviewed": ["2021-09-15T00:00:00+00:00", "2024-09-15T00:00:00+00:00"], - "reviewDue": "2024-09-15T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/broken-leg/", - "name": "Broken leg" - }, - { - "description": "Find out about the signs of a broken nose, how to look after your nose at home and when you should seek medical advice.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition", "Accident or injury"], - "datePublished": "2017-10-17T17:22:01+00:00", - "dateModified": "2023-08-23T08:55:24+00:00", - "lastReviewed": ["2023-08-17T15:41:00+00:00", "2026-08-17T15:41:00+00:00"], - "reviewDue": "2026-08-17T15:41:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/broken-nose/", - "name": "Broken nose" - }, - { - "description": "Read about how long it takes injured ribs to heal, how to look after yourself until you're feeling better, and when you should get medical advice.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Accident or injury"], - "datePublished": "2017-10-17T16:44:28+00:00", - "dateModified": "2023-03-07T16:28:00+00:00", - "lastReviewed": ["2021-01-05T14:30:00+00:00", "2024-01-05T14:30:00+00:00"], - "reviewDue": "2024-01-05T14:30:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/broken-or-bruised-ribs/", - "name": "Broken or bruised ribs" - }, - { - "description": "Find out about the symptoms of a broken toe, when you should get medical advice, and how to look after it at home.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition", "Accident or injury"], - "datePublished": "2017-10-17T16:35:50+00:00", - "dateModified": "2022-05-11T14:04:59+00:00", - "lastReviewed": ["2022-05-05T23:00:00+00:00", "2025-05-05T23:00:00+00:00"], - "reviewDue": "2025-05-05T23:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/broken-toe/", - "name": "Broken toe" - }, - { - "description": "Find out about bronchitis, what the symptoms are, how you can ease the symptoms, where to get help, and how it is treated.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T16:40:47+00:00", - "dateModified": "2023-01-06T16:19:22+00:00", - "lastReviewed": ["2022-12-19T01:00:00+00:00", "2025-12-19T01:00:00+00:00"], - "reviewDue": "2025-12-19T01:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bronchitis/", - "name": "Bronchitis" - }, - { - "description": "Find out about brucellosis, including symptoms, what to do if you have it and treatments.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T16:54:59+00:00", - "dateModified": "2023-10-11T12:22:12+00:00", - "lastReviewed": ["2023-10-04T00:00:00+00:00", "2026-10-04T00:00:00+00:00"], - "reviewDue": "2026-10-04T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/brucellosis/", - "name": "Brucellosis" - }, - { - "description": "Brugada syndrome is a rare but serious condition that can cause the heart to beat dangerously fast.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T16:48:13+00:00", - "dateModified": "2023-07-17T07:11:23+00:00", - "lastReviewed": ["2020-05-07T00:00:00+00:00", "2023-05-07T00:00:00+00:00"], - "reviewDue": "2023-05-07T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/brugada-syndrome/", - "name": "Brugada syndrome" - }, - { - "description": "Find out about blue or grey skin or lips (cyanosis), including what it looks like, what causes it and when to get it checked.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Symptom"], - "datePublished": "2017-10-18T09:21:42+00:00", - "dateModified": "2023-10-05T11:01:36+00:00", - "lastReviewed": ["2023-10-04T00:00:00+00:00", "2026-10-04T00:00:00+00:00"], - "reviewDue": "2026-10-04T00:00:00+00:00", - "keywords": "", - "alternateName": ["Cyanosis"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/blue-skin-or-lips-cyanosis/", - "name": "Blue or grey skin or lips (cyanosis)" - }, - { - "description": "Find out about bladder pain syndrome (BPS), also called interstitial cystitis, where you have pelvic pain and problems peeing.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-18T16:39:40+00:00", - "dateModified": "2023-09-05T08:24:52+00:00", - "lastReviewed": ["2022-02-18T01:00:00+00:00", "2025-02-18T01:00:00+00:00"], - "reviewDue": "2025-02-18T01:00:00+00:00", - "keywords": "", - "alternateName": ["Interstitial cystitis", "Painful bladder syndrome"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/interstitial-cystitis/", - "name": "Bladder pain syndrome (interstitial cystitis)" - }, - { - "description": "Information for people with vision loss including details of support organisations, plus advice about specialist equipment, home modifications and mobility.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "WebPage", - "genre": ["Advice or information"], - "datePublished": "2017-10-18T14:48:31+00:00", - "dateModified": "2023-08-04T14:15:49+00:00", - "lastReviewed": ["2021-12-22T01:00:00+00:00", "2024-12-22T01:00:00+00:00"], - "reviewDue": "2024-12-22T01:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Read about balanitis, which is where the head of the penis is swollen and sore. Find out about the symptoms, causes, treatments and when to get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:07:52+00:00", + "dateModified": "2023-05-30T12:15:43+00:00", + "lastReviewed": [ + "2023-05-30T00:00:00+00:00", + "2026-05-30T00:00:00+00:00" + ], + "reviewDue": "2026-05-30T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/balanitis/", + "name": "Balanitis" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/vision-loss/", - "name": "Blindness and vision loss" - }, - { - "description": "Find out how to relieve back pain, what can cause it, and when to get medical advice.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Symptom"], - "datePublished": "2017-10-20T13:38:48+00:00", - "dateModified": "2023-09-26T10:02:52+00:00", - "lastReviewed": ["2022-06-09T23:00:00+00:00", "2025-06-09T23:00:00+00:00"], - "reviewDue": "2025-06-09T23:00:00+00:00", - "keywords": "", - "alternateName": ["Lumbago", "Lower back pain", "Upper back pain"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about bedbugs, including checking if you have them, how to get rid of them and how to treat bedbug bites.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:09:19+00:00", + "dateModified": "2023-11-08T13:24:51+00:00", + "lastReviewed": [ + "2022-08-01T23:00:00+00:00", + "2025-08-01T23:00:00+00:00" + ], + "reviewDue": "2025-08-01T23:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bedbugs/", + "name": "Bedbugs" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/back-pain/", - "name": "Back pain" - }, - { - "description": "Read about bacterial vaginosis (BV), a common cause of unusual vaginal discharge. BV is not a sexually transmitted infection (STI).", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2018-01-19T08:48:20+00:00", - "dateModified": "2022-10-28T16:21:24+00:00", - "lastReviewed": ["2022-10-26T23:00:00+00:00", "2025-10-27T00:00:00+00:00"], - "reviewDue": "2025-10-27T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out more about a black eye, which is bruising and swelling around your eye, usually caused by a blow.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Accident or injury" + ], + "datePublished": "2017-10-17T16:07:56+00:00", + "dateModified": "2024-06-18T15:49:03+00:00", + "lastReviewed": [ + "2023-07-27T00:00:00+00:00", + "2026-07-27T00:00:00+00:00" + ], + "reviewDue": "2026-07-27T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/black-eye/", + "name": "Black eye" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bacterial-vaginosis/", - "name": "Bacterial vaginosis" - }, - { - "description": "Find out what causes bad breath (halitosis), how to treat and prevent it, and when to get medical advice.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Symptom"], - "datePublished": "2018-10-03T20:00:01+00:00", - "dateModified": "2022-06-01T10:36:14+00:00", - "lastReviewed": ["2021-12-07T00:00:00+00:00", "2024-12-07T00:00:00+00:00"], - "reviewDue": "2024-12-07T00:00:00+00:00", - "keywords": "", - "alternateName": ["Halitosis"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Read more about boils and carbuncles, which are red, painful lumps on the skin that are usually caused by a bacterial infection.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:16:23+00:00", + "dateModified": "2023-06-23T15:18:57+00:00", + "lastReviewed": [ + "2023-06-20T00:00:00+00:00", + "2026-06-20T00:00:00+00:00" + ], + "reviewDue": "2026-06-20T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/boils/", + "name": "Boils" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bad-breath/", - "name": "Bad breath" - }, - { - "description": "Find out what a Baker's cyst is, what causes it, how it's treated and when to see your GP.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-23T14:51:30+00:00", - "dateModified": "2023-09-25T08:48:22+00:00", - "lastReviewed": ["2021-10-04T00:00:00+00:00", "2024-10-04T00:00:00+00:00"], - "reviewDue": "2024-10-04T00:00:00+00:00", - "keywords": "", - "alternateName": ["Popliteal cyst"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about botulism, a rare but life-threatening condition caused by toxins produced by Clostridium botulinum bacteria.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:12:58+00:00", + "dateModified": "2022-10-06T19:25:49+00:00", + "lastReviewed": [ + "2022-10-02T23:00:00+00:00", + "2025-10-02T23:00:00+00:00" + ], + "reviewDue": "2025-10-02T23:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/botulism/", + "name": "Botulism" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bakers-cyst/", - "name": "Baker's cyst" - }, - { - "description": "Find out what a Bartholin's cyst is, what the symptoms and causes are, and the possible treatment options.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2018-07-26T13:22:55+00:00", - "dateModified": "2023-09-25T08:49:53+00:00", - "lastReviewed": ["2021-10-26T00:00:00+00:00", "2024-10-26T00:00:00+00:00"], - "reviewDue": "2024-10-26T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about bowel (colonic) polyps, which are small growths on the inner lining of the bowel. There are often no symptoms but should usually be removed.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:11:55+00:00", + "dateModified": "2023-08-02T12:51:35+00:00", + "lastReviewed": [ + "2023-07-28T09:38:00+00:00", + "2026-07-28T09:38:00+00:00" + ], + "reviewDue": "2026-07-28T09:38:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bowel-polyps/", + "name": "Bowel polyps" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bartholins-cyst/", - "name": "Bartholin's cyst" - }, - { - "description": "Find out what you can do about bedwetting, what could be causing it and when to get medical help.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Symptom"], - "datePublished": "2017-10-20T12:36:15+00:00", - "dateModified": "2023-04-11T16:21:37+00:00", - "lastReviewed": ["2023-04-11T11:00:00+00:00", "2026-04-11T11:00:00+00:00"], - "reviewDue": "2026-04-11T11:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about the symptoms, causes and treatments for Bowen's disease, a very early and easily treatable form of skin cancer.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:18:43+00:00", + "dateModified": "2024-09-11T13:18:53+00:00", + "lastReviewed": [ + "2022-10-06T00:00:00+00:00", + "2025-10-06T00:00:00+00:00" + ], + "reviewDue": "2025-10-06T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bowens-disease/", + "name": "Bowen's disease" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bedwetting/", - "name": "Bedwetting in children" - }, - { - "description": "Read about Beh\u00e7et's disease, a rare and poorly understood condition in which blood vessels and tissues may become inflamed (swollen).", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T13:12:22+00:00", - "dateModified": "2023-04-24T12:14:55+00:00", - "lastReviewed": ["2023-04-05T23:00:00+00:00", "2026-04-05T23:00:00+00:00"], - "reviewDue": "2026-04-05T23:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "A brain tumour is a growth of cells in the brain that multiplies in an abnormal, uncontrollable way. Find out about its symptoms and how it's treated.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:15:16+00:00", + "dateModified": "2025-02-28T12:50:41+00:00", + "lastReviewed": [ + "2023-06-11T23:00:00+00:00", + "2026-06-11T23:00:00+00:00" + ], + "reviewDue": "2026-06-11T23:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/brain-tumours/", + "name": "Brain tumours" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/behcets-disease/", - "name": "Beh\u00e7et's disease" - }, - { - "description": "Find out more about Bell's palsy, a condition that causes temporary weakness or paralysis of the muscles on 1 side of the face.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-24T14:39:40+00:00", - "dateModified": "2023-07-05T08:08:00+00:00", - "lastReviewed": ["2023-07-04T00:00:00+00:00", "2026-07-04T00:00:00+00:00"], - "reviewDue": "2026-07-04T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about breath-holding in babies and children, including when to get medical help, what happens during an episode and what to do.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:48:03+00:00", + "dateModified": "2023-03-06T08:05:09+00:00", + "lastReviewed": [ + "2023-03-02T00:00:00+00:00", + "2026-03-02T00:00:00+00:00" + ], + "reviewDue": "2026-03-02T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/breath-holding-in-babies-and-children/", + "name": "Breath-holding in babies and children" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bells-palsy/", - "name": "Bell's palsy" - }, - { - "description": "Information about benign (non-cancerous) brain tumours, including types of tumour, when to see a GP, causes, treatment and recovery.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T14:02:09+00:00", - "dateModified": "2023-05-18T08:42:34+00:00", - "lastReviewed": ["2020-04-21T00:00:00+00:00", "2023-04-21T00:00:00+00:00"], - "reviewDue": "2023-04-21T00:00:00+00:00", - "keywords": "", - "alternateName": ["Brain tumour (benign)"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out how to tell if your ankle is broken (fractured) and when to get medical advice, plus how a broken ankle is treated and how long it takes to heal.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Accident or injury" + ], + "datePublished": "2017-10-17T16:28:23+00:00", + "dateModified": "2024-06-19T08:24:50+00:00", + "lastReviewed": [ + "2022-03-11T01:00:00+00:00", + "2025-03-11T01:00:00+00:00" + ], + "reviewDue": "2025-03-11T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/broken-ankle/", + "name": "Broken ankle" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/benign-brain-tumour/", - "name": "Benign brain tumour (non-cancerous)" - }, - { - "description": "Find out more about having a biopsy, which involves taking a small sample of body tissue so it can be examined under a microscope.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Procedure", "Test"], - "datePublished": "2017-10-20T14:01:58+00:00", - "dateModified": "2021-11-18T15:36:58+00:00", - "lastReviewed": ["2021-08-10T00:00:00+00:00", "2024-08-10T00:00:00+00:00"], - "reviewDue": "2024-08-10T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out how to tell if you have a broken arm or wrist, where to get medical help and how long it takes to heal.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition", + "Accident or injury" + ], + "datePublished": "2017-10-17T16:31:40+00:00", + "dateModified": "2024-06-18T16:36:10+00:00", + "lastReviewed": [ + "2023-05-26T14:54:00+00:00", + "2026-05-26T14:54:00+00:00" + ], + "reviewDue": "2026-05-26T14:54:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/broken-arm-or-wrist/", + "name": "Broken arm or wrist" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/biopsy/", - "name": "Biopsy" - }, - { - "description": "Find out about birthmarks, including information about 6 of the main types, when to see a GP, and whether or not treatment is needed.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T09:36:40+00:00", - "dateModified": "2023-05-09T12:02:29+00:00", - "lastReviewed": ["2023-04-27T23:00:00+00:00", "2026-04-27T23:00:00+00:00"], - "reviewDue": "2026-04-27T23:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out how to tell if you have a broken collarbone, where to get medical help and how long it takes to heal.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition", + "Accident or injury" + ], + "datePublished": "2017-10-17T17:04:08+00:00", + "dateModified": "2024-02-27T17:35:26+00:00", + "lastReviewed": [ + "2023-08-01T23:00:00+00:00", + "2026-08-01T23:00:00+00:00" + ], + "reviewDue": "2026-08-01T23:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/broken-collarbone/", + "name": "Broken collarbone" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/birthmarks/", - "name": "Birthmarks" - }, - { - "description": "Bladder cancer is where a growth of abnormal tissue, known as a tumour, develops in the bladder lining. In some cases, the tumour spreads into the surrounding muscles.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2018-05-17T11:13:51+00:00", - "dateModified": "2023-10-19T16:13:58+00:00", - "lastReviewed": ["2021-07-01T03:00:00+00:00", "2024-07-01T02:00:00+00:00"], - "reviewDue": "2024-07-01T02:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out how to tell if you have a broken finger or thumb, what you should do, and how long it takes to heal.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Accident or injury" + ], + "datePublished": "2017-10-17T16:33:32+00:00", + "dateModified": "2024-06-19T08:24:09+00:00", + "lastReviewed": [ + "2022-03-23T01:00:00+00:00", + "2025-03-23T01:00:00+00:00" + ], + "reviewDue": "2025-03-23T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/broken-finger/", + "name": "Broken finger or thumb" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bladder-cancer/", - "name": "Bladder cancer" - }, - { - "description": "Read about bladder stones and what causes them. Also, find out when to see a GP and how bladder stones are treated.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2018-06-08T09:27:46+00:00", - "dateModified": "2022-04-27T14:19:25+00:00", - "lastReviewed": ["2022-03-22T01:00:00+00:00", "2025-03-22T01:00:00+00:00"], - "reviewDue": "2025-03-22T01:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Read about the signs of a broken leg, what you should do if you think someone has broken their leg, how a broken leg is treated and how long it takes to recover.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Accident or injury" + ], + "datePublished": "2017-10-18T08:55:52+00:00", + "dateModified": "2024-05-23T16:35:40+00:00", + "lastReviewed": [ + "2021-09-15T00:00:00+00:00", + "2024-09-15T00:00:00+00:00" + ], + "reviewDue": "2024-09-15T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/broken-leg/", + "name": "Broken leg" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bladder-stones/", - "name": "Bladder stones" - }, - { - "description": "Bleeding from the bottom (rectal bleeding) is often seen as small amounts of bright-red blood on toilet paper or pink water in the toilet. Find out when to get medical help if you keep bleeding from your bottom.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Symptom"], - "datePublished": "2017-10-20T13:30:54+00:00", - "dateModified": "2023-04-24T15:13:50+00:00", - "lastReviewed": ["2023-04-12T00:00:00+00:00", "2026-04-12T00:00:00+00:00"], - "reviewDue": "2026-04-12T00:00:00+00:00", - "keywords": "", - "alternateName": ["Rectal bleeding"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about the signs of a broken nose, how to look after your nose at home and when you should seek medical advice.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition", + "Accident or injury" + ], + "datePublished": "2017-10-17T17:22:01+00:00", + "dateModified": "2024-06-18T16:39:57+00:00", + "lastReviewed": [ + "2023-08-17T15:41:00+00:00", + "2026-08-17T15:41:00+00:00" + ], + "reviewDue": "2026-08-17T15:41:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/broken-nose/", + "name": "Broken nose" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bleeding-from-the-bottom-rectal-bleeding/", - "name": "Bleeding from the bottom (rectal bleeding)" - }, - { - "description": "NHS information about blepharitis, including the symptoms, when to get medical help and what you can do to treat and prevent it.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-19T14:54:53+00:00", - "dateModified": "2022-02-10T09:26:31+00:00", - "lastReviewed": ["2022-02-08T01:00:00+00:00", "2025-02-08T01:00:00+00:00"], - "reviewDue": "2025-02-08T01:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about how long it takes injured ribs to heal, how to look after yourself until you're feeling better, and when you should get medical advice.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Accident or injury" + ], + "datePublished": "2017-10-17T16:44:28+00:00", + "dateModified": "2024-06-18T16:41:16+00:00", + "lastReviewed": [ + "2024-01-10T14:30:00+00:00", + "2027-01-10T14:30:00+00:00" + ], + "reviewDue": "2027-01-10T14:30:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/broken-or-bruised-ribs/", + "name": "Broken or bruised ribs" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/blepharitis/", - "name": "Blepharitis" - }, - { - "description": "Find out about blisters, including how to treat blisters yourself, how to avoid getting them, and when to get medical help.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-12-19T15:11:16+00:00", - "dateModified": "2023-05-17T09:03:36+00:00", - "lastReviewed": ["2021-01-04T00:00:00+00:00", "2024-01-04T00:00:00+00:00"], - "reviewDue": "2024-01-04T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about the symptoms of a broken toe, when you should get medical advice, and how to look after it at home.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition", + "Accident or injury" + ], + "datePublished": "2017-10-17T16:35:50+00:00", + "dateModified": "2024-06-19T08:23:00+00:00", + "lastReviewed": [ + "2022-05-05T23:00:00+00:00", + "2025-05-05T23:00:00+00:00" + ], + "reviewDue": "2025-05-05T23:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/broken-toe/", + "name": "Broken toe" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/blisters/", - "name": "Blisters" - }, - { - "description": "Find out about blood tests, including why and how they are done, with links to other useful resources.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Test"], - "datePublished": "2018-10-03T20:00:14+00:00", - "dateModified": "2023-04-17T09:59:35+00:00", - "lastReviewed": ["2022-08-08T00:00:00+00:00", "2025-08-08T00:00:00+00:00"], - "reviewDue": "2025-08-08T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about bronchitis, what the symptoms are, how you can ease the symptoms, where to get help, and how it is treated.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:40:47+00:00", + "dateModified": "2025-02-24T14:56:53+00:00", + "lastReviewed": [ + "2022-12-19T01:00:00+00:00", + "2025-12-19T01:00:00+00:00" + ], + "reviewDue": "2025-12-19T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bronchitis/", + "name": "Bronchitis" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/blood-tests/", - "name": "Blood tests" - }, - { - "description": "Find out how to stop yourself blushing and read about the possible causes and treatments.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Symptom"], - "datePublished": "2018-10-03T20:00:15+00:00", - "dateModified": "2022-02-11T13:24:33+00:00", - "lastReviewed": ["2022-02-11T00:00:00+00:00", "2025-02-11T01:00:00+00:00"], - "reviewDue": "2025-02-11T01:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about brucellosis, including symptoms, what to do if you have it and treatments.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:54:59+00:00", + "dateModified": "2023-10-11T12:22:12+00:00", + "lastReviewed": [ + "2023-10-04T00:00:00+00:00", + "2026-10-04T00:00:00+00:00" + ], + "reviewDue": "2026-10-04T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/brucellosis/", + "name": "Brucellosis" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/blushing/", - "name": "Blushing" - }, - { - "description": "Find out more about primary bone cancer, a rare type of cancer that begins in the bones. Around 550 new cases are diagnosed each year in the UK.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T13:56:14+00:00", - "dateModified": "2023-10-19T16:24:11+00:00", - "lastReviewed": ["2021-06-20T00:00:00+00:00", "2024-06-20T00:00:00+00:00"], - "reviewDue": "2024-06-20T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about Brugada syndrome, including what the symptoms are, when and where to get medical help, the causes and how it's treated.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:48:13+00:00", + "dateModified": "2023-12-15T12:21:23+00:00", + "lastReviewed": [ + "2023-12-13T01:00:00+00:00", + "2026-12-13T01:00:00+00:00" + ], + "reviewDue": "2026-12-13T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/brugada-syndrome/", + "name": "Brugada syndrome" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bone-cancer/", - "name": "Bone cancer" - }, - { - "description": "Find out NHS information about bone cysts, including how they're treated and what causes them.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T13:42:44+00:00", - "dateModified": "2023-07-24T15:09:18+00:00", - "lastReviewed": ["2023-07-21T00:00:00+00:00", "2026-07-21T00:00:00+00:00"], - "reviewDue": "2026-07-21T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about bladder pain syndrome (BPS), also called interstitial cystitis, where you have pelvic pain and problems peeing.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-18T16:39:40+00:00", + "dateModified": "2025-04-03T16:08:54+00:00", + "lastReviewed": [ + "2022-02-18T01:00:00+00:00", + "2025-02-18T01:00:00+00:00" + ], + "reviewDue": "2025-02-18T01:00:00+00:00", + "keywords": "", + "alternateName": [ + "Interstitial cystitis", + "Painful bladder syndrome" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/interstitial-cystitis/", + "name": "Bladder pain syndrome (interstitial cystitis)" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bone-cyst/", - "name": "Bone cyst" - }, - { - "description": "Information on bowel cancer screening with links to other useful resources.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Test"], - "datePublished": "2017-10-20T14:07:54+00:00", - "dateModified": "2023-09-29T15:00:54+00:00", - "lastReviewed": ["2021-11-08T00:00:00+00:00", "2024-11-08T00:00:00+00:00"], - "reviewDue": "2024-11-08T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Information for people with vision loss including details of support organisations, plus advice about specialist equipment, home modifications and mobility.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "WebPage", + "genre": [ + "Advice or information" + ], + "datePublished": "2017-10-18T14:48:31+00:00", + "dateModified": "2024-09-06T15:16:51+00:00", + "lastReviewed": [ + "2021-12-22T01:00:00+00:00", + "2024-12-22T01:00:00+00:00" + ], + "reviewDue": "2024-12-22T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/vision-loss/", + "name": "Blindness and vision loss" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bowel-cancer-screening/", - "name": "Bowel cancer screening" - }, - { - "description": "Read about bowel incontinence, including the symptoms, what causes it and the treatments available.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T13:47:09+00:00", - "dateModified": "2023-05-17T21:52:40+00:00", - "lastReviewed": ["2021-03-04T00:00:00+00:00", "2024-03-04T00:00:00+00:00"], - "reviewDue": "2024-03-04T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Read about bacterial vaginosis (BV), a common cause of unusual vaginal discharge. BV is not a sexually transmitted infection (STI).", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2018-01-19T08:48:20+00:00", + "dateModified": "2024-06-11T14:21:35+00:00", + "lastReviewed": [ + "2022-10-26T23:00:00+00:00", + "2025-10-27T00:00:00+00:00" + ], + "reviewDue": "2025-10-27T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bacterial-vaginosis/", + "name": "Bacterial vaginosis" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bowel-incontinence/", - "name": "Bowel incontinence" - }, - { - "description": "A brain abscess is a pus-filled swelling in the brain. It's a rare and life-threatening condition, usually caused by infection or a severe head injury.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2018-09-11T08:06:22+00:00", - "dateModified": "2022-10-28T09:21:14+00:00", - "lastReviewed": ["2022-10-18T00:00:00+00:00", "2025-10-18T00:00:00+00:00"], - "reviewDue": "2025-10-18T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out what a Baker's cyst is, what causes it, how it's treated and when to see your GP.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-23T14:51:30+00:00", + "dateModified": "2023-10-31T08:37:36+00:00", + "lastReviewed": [ + "2021-10-04T00:00:00+00:00", + "2024-10-04T00:00:00+00:00" + ], + "reviewDue": "2024-10-04T00:00:00+00:00", + "keywords": "", + "alternateName": [ + "Popliteal cyst" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bakers-cyst/", + "name": "Baker's cyst" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/brain-abscess/", - "name": "Brain abscess" - }, - { - "description": "Find out what a brain aneurysm is, including why they develop, who's affected, how they're treated and how to prevent them.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-19T14:51:52+00:00", - "dateModified": "2022-04-20T14:55:18+00:00", - "lastReviewed": ["2022-04-10T23:00:00+00:00", "2025-04-11T15:11:00+00:00"], - "reviewDue": "2025-04-11T15:11:00+00:00", - "keywords": "", - "alternateName": ["Aneurysm (brain)"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out what a Bartholin's cyst is, what the symptoms and causes are, and the possible treatment options.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2018-07-26T13:22:55+00:00", + "dateModified": "2024-03-12T11:24:14+00:00", + "lastReviewed": [ + "2021-10-26T00:00:00+00:00", + "2024-10-26T00:00:00+00:00" + ], + "reviewDue": "2024-10-26T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bartholins-cyst/", + "name": "Bartholin's cyst" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/brain-aneurysm/", - "name": "Brain aneurysm" - }, - { - "description": "Brain stem death is where a person no longer has any brain stem functions, and has permanently lost the potential for consciousness and the capacity to breathe.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "WebPage", - "genre": ["Advice or information"], - "datePublished": "2017-10-20T14:14:32+00:00", - "dateModified": "2022-09-14T15:33:15+00:00", - "lastReviewed": ["2022-09-08T00:00:00+00:00", "2025-09-08T00:00:00+00:00"], - "reviewDue": "2025-09-08T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Read about Behçet's disease, a rare and poorly understood condition in which blood vessels and tissues may become inflamed (swollen).", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T13:12:22+00:00", + "dateModified": "2024-11-27T12:16:39+00:00", + "lastReviewed": [ + "2023-04-05T23:00:00+00:00", + "2026-04-05T23:00:00+00:00" + ], + "reviewDue": "2026-04-05T23:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/behcets-disease/", + "name": "Behçet's disease" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/brain-death/", - "name": "Brain death" - }, - { - "description": "Find out about breast abscesses, including what the symptoms are, where to get help, how they are treated and what causes them.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-11-21T08:39:20+00:00", - "dateModified": "2023-06-16T16:14:20+00:00", - "lastReviewed": ["2023-06-14T11:00:00+00:00", "2026-06-14T11:00:00+00:00"], - "reviewDue": "2026-06-14T11:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out more about Bell's palsy, a condition that causes temporary weakness or paralysis of the muscles on 1 side of the face.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-24T14:39:40+00:00", + "dateModified": "2024-11-27T12:19:16+00:00", + "lastReviewed": [ + "2023-07-04T00:00:00+00:00", + "2026-07-04T00:00:00+00:00" + ], + "reviewDue": "2026-07-04T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bells-palsy/", + "name": "Bell's palsy" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/breast-abscess/", - "name": "Breast abscess" - }, - { - "description": "Read about breast cancer in women, the most common type of cancer in the UK, including information on symptoms, causes, diagnosis, treatment and prevention.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T14:09:15+00:00", - "dateModified": "2023-04-11T15:12:57+00:00", - "lastReviewed": ["2019-10-28T00:00:00+00:00", "2022-10-28T00:00:00+00:00"], - "reviewDue": "2022-10-28T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about birthmarks, including information about 6 of the main types, when to see a GP, and whether or not treatment is needed.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T09:36:40+00:00", + "dateModified": "2023-05-09T12:02:29+00:00", + "lastReviewed": [ + "2023-04-27T23:00:00+00:00", + "2026-04-27T23:00:00+00:00" + ], + "reviewDue": "2026-04-27T23:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/birthmarks/", + "name": "Birthmarks" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/breast-cancer/", - "name": "Breast cancer in women" - }, - { - "description": "Read about the symptoms of breast cancer in men, what causes it, how it's treated, and what the outlook is.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T14:15:04+00:00", - "dateModified": "2023-09-28T16:20:30+00:00", - "lastReviewed": ["2020-03-18T00:00:00+00:00", "2023-03-18T00:00:00+00:00"], - "reviewDue": "2023-03-18T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Bladder cancer is where a growth of abnormal tissue, known as a tumour, develops in the bladder lining. In some cases, the tumour spreads into the surrounding muscles.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2018-05-17T11:13:51+00:00", + "dateModified": "2023-11-06T09:19:27+00:00", + "lastReviewed": [ + "2021-07-01T03:00:00+00:00", + "2024-07-01T02:00:00+00:00" + ], + "reviewDue": "2024-07-01T02:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bladder-cancer/", + "name": "Bladder cancer" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/breast-cancer-in-men/", - "name": "Breast cancer in men" - }, - { - "description": "Find out about breast lumps. They can have a lot of different causes and most are harmless. But always see a GP if you have a lump in your breast or any unusual changes to your breasts.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Symptom"], - "datePublished": "2017-10-20T13:51:59+00:00", - "dateModified": "2023-07-05T12:28:49+00:00", - "lastReviewed": ["2023-06-28T00:00:00+00:00", "2026-06-28T00:00:00+00:00"], - "reviewDue": "2026-06-28T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Read about bladder stones and what causes them. Also, find out when to see a GP and how bladder stones are treated.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2018-06-08T09:27:46+00:00", + "dateModified": "2024-02-14T09:32:33+00:00", + "lastReviewed": [ + "2022-03-22T01:00:00+00:00", + "2025-03-22T01:00:00+00:00" + ], + "reviewDue": "2025-03-22T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bladder-stones/", + "name": "Bladder stones" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/breast-lump/", - "name": "Breast lumps" - }, - { - "description": "Read about bronchiectasis, which is a long-term condition where the airways of the lungs become widened. This leads to a build-up of excess mucus that can make the lungs more vulnerable to infection.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-19T15:14:28+00:00", - "dateModified": "2023-09-26T09:50:47+00:00", - "lastReviewed": ["2021-07-27T00:00:00+00:00", "2024-07-27T00:00:00+00:00"], - "reviewDue": "2024-07-27T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "NHS information about blepharitis, including the symptoms, when to get medical help and what you can do to treat and prevent it.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-19T14:54:53+00:00", + "dateModified": "2022-02-10T09:26:31+00:00", + "lastReviewed": [ + "2022-02-08T01:00:00+00:00", + "2025-02-08T01:00:00+00:00" + ], + "reviewDue": "2025-02-08T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/blepharitis/", + "name": "Blepharitis" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bronchiectasis/", - "name": "Bronchiectasis" - }, - { - "description": "Find out more about bronchiolitis, including the symptoms, how it's treated, and what causes it.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T14:55:23+00:00", - "dateModified": "2022-10-27T13:10:54+00:00", - "lastReviewed": ["2022-04-13T00:00:00+00:00", "2025-04-13T00:00:00+00:00"], - "reviewDue": "2025-04-13T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "NHS information about blisters, including how to treat blisters yourself, how to avoid getting them, and when to get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-12-19T15:11:16+00:00", + "dateModified": "2023-11-22T17:49:11+00:00", + "lastReviewed": [ + "2023-11-22T00:00:00+00:00", + "2026-11-22T00:00:00+00:00" + ], + "reviewDue": "2026-11-22T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/blisters/", + "name": "Blisters" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bronchiolitis/", - "name": "Bronchiolitis" - }, - { - "description": "Read about bronchodilators, a medication used to treat asthma and COPD by relaxing the muscles in the lungs and widening the airways (bronchi).", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Medicine"], - "datePublished": "2017-10-20T14:26:33+00:00", - "dateModified": "2022-10-07T13:06:35+00:00", - "lastReviewed": ["2022-10-05T00:00:00+00:00", "2025-10-05T00:00:00+00:00"], - "reviewDue": "2025-10-05T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out more about primary bone cancer, a rare type of cancer that begins in the bones. Around 550 new cases are diagnosed each year in the UK.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T13:56:14+00:00", + "dateModified": "2025-02-28T13:05:51+00:00", + "lastReviewed": [ + "2021-06-20T00:00:00+00:00", + "2024-06-20T00:00:00+00:00" + ], + "reviewDue": "2024-06-20T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bone-cancer/", + "name": "Bone cancer" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bronchodilators/", - "name": "Bronchodilators" - }, - { - "description": "Find out what can cause the eye to bulge and what treatments may help.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Symptom"], - "datePublished": "2017-10-19T15:59:18+00:00", - "dateModified": "2022-08-10T09:35:17+00:00", - "lastReviewed": ["2022-08-03T23:00:00+00:00", "2025-08-04T00:00:00+00:00"], - "reviewDue": "2025-08-04T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out NHS information about bone cysts, including how they're treated and what causes them.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T13:42:44+00:00", + "dateModified": "2023-07-24T15:09:18+00:00", + "lastReviewed": [ + "2023-07-21T00:00:00+00:00", + "2026-07-21T00:00:00+00:00" + ], + "reviewDue": "2026-07-21T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bone-cyst/", + "name": "Bone cyst" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bulging-eyes/", - "name": "Bulging eyes (exophthalmos)" - }, - { - "description": "Burns and scalds are damage to the skin caused by heat. Both are treated in the same way.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Accident or injury"], - "datePublished": "2017-10-19T15:24:10+00:00", - "dateModified": "2022-07-01T15:48:36+00:00", - "lastReviewed": ["2022-06-23T00:00:00+00:00", "2025-06-23T00:00:00+00:00"], - "reviewDue": "2025-06-23T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about bowel incontinence, including the symptoms, what causes it and the treatments available.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T13:47:09+00:00", + "dateModified": "2025-04-11T16:41:25+00:00", + "lastReviewed": [ + "2024-08-14T23:00:00+00:00", + "2027-08-14T23:00:00+00:00" + ], + "reviewDue": "2027-08-14T23:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bowel-incontinence/", + "name": "Bowel incontinence" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/burns-and-scalds/", - "name": "Burns and scalds" - }, - { - "description": "Bursitis is where a bursa becomes swollen and inflamed. A bursa is a small, fluid-filled sac that acts like a cushion between tendons and bones.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-12-11T10:00:36+00:00", - "dateModified": "2023-03-07T16:30:46+00:00", - "lastReviewed": ["2020-12-29T01:00:00+00:00", "2023-12-29T01:00:00+00:00"], - "reviewDue": "2023-12-29T01:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "A brain abscess is a pus-filled swelling in the brain. It's a rare and life-threatening condition, usually caused by infection or a severe head injury.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2018-09-11T08:06:22+00:00", + "dateModified": "2022-10-28T09:21:14+00:00", + "lastReviewed": [ + "2022-10-18T00:00:00+00:00", + "2025-10-18T00:00:00+00:00" + ], + "reviewDue": "2025-10-18T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/brain-abscess/", + "name": "Brain abscess" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bursitis/", - "name": "Bursitis" - }, - { - "description": "A DEXA scan is a type of X-ray that measures bone mineral density (BMD). It's also known as a DXA, dual X-ray absorptiometry, a bone density scan or a bone densitometry scan.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Test"], - "datePublished": "2017-10-19T15:18:46+00:00", - "dateModified": "2022-10-07T14:54:17+00:00", - "lastReviewed": ["2022-10-04T23:00:00+00:00", "2025-10-04T23:00:00+00:00"], - "reviewDue": "2025-10-04T23:00:00+00:00", - "keywords": "", - "alternateName": ["DEXA scan"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out what a brain aneurysm is, including why they develop, who's affected, how they're treated and how to prevent them.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-19T14:51:52+00:00", + "dateModified": "2023-12-04T09:45:15+00:00", + "lastReviewed": [ + "2022-04-10T23:00:00+00:00", + "2025-04-11T15:11:00+00:00" + ], + "reviewDue": "2025-04-11T15:11:00+00:00", + "keywords": "", + "alternateName": [ + "Aneurysm (brain)" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/brain-aneurysm/", + "name": "Brain aneurysm" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/dexa-scan/", - "name": "Bone density scan (DEXA scan)" - }, - { - "description": "NHS information about broken hip (hip fracture) including what the symptoms are, how it's treated and recovery.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition", "Accident or injury"], - "datePublished": "2017-10-23T12:22:24+00:00", - "dateModified": "2023-02-14T16:44:30+00:00", - "lastReviewed": ["2023-02-08T03:00:00+00:00", "2026-02-08T03:00:00+00:00"], - "reviewDue": "2026-02-08T03:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Brain stem death is where a person no longer has any brain stem functions, and has permanently lost the potential for consciousness and the capacity to breathe.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "WebPage", + "genre": [ + "Advice or information" + ], + "datePublished": "2017-10-20T14:14:32+00:00", + "dateModified": "2024-11-27T12:20:45+00:00", + "lastReviewed": [ + "2022-09-08T00:00:00+00:00", + "2025-09-08T00:00:00+00:00" + ], + "reviewDue": "2025-09-08T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/brain-death/", + "name": "Brain death" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/broken-hip/", - "name": "Broken hip" - }, - { - "description": "Read about benign prostate enlargement (BPE), also known as benign prostatic hyperplasia (BPH), which is a common condition in men over 50 years of age.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T08:30:25+00:00", - "dateModified": "2023-06-16T13:45:07+00:00", - "lastReviewed": ["2023-06-08T16:00:00+00:00", "2026-06-08T16:00:00+00:00"], - "reviewDue": "2026-06-08T16:00:00+00:00", - "keywords": "", - "alternateName": ["Prostate enlargement"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about breast abscesses, including what the symptoms are, where to get help, how they are treated and what causes them.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-11-21T08:39:20+00:00", + "dateModified": "2023-06-16T16:14:20+00:00", + "lastReviewed": [ + "2023-06-14T11:00:00+00:00", + "2026-06-14T11:00:00+00:00" + ], + "reviewDue": "2026-06-14T11:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/breast-abscess/", + "name": "Breast abscess" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/prostate-enlargement/", - "name": "Benign prostate enlargement" - }, - { - "description": "Bird flu, or avian flu, is an infectious viral illness that spreads among birds. In rare cases, it can affect humans.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-19T06:59:46+00:00", - "dateModified": "2023-10-20T08:47:04+00:00", - "lastReviewed": ["2022-01-06T07:49:00+00:00", "2024-08-03T06:49:00+00:00"], - "reviewDue": "2024-08-03T06:49:00+00:00", - "keywords": "", - "alternateName": ["Avian flu"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Read about bronchiectasis, which is a long-term condition where the airways of the lungs become widened. This leads to a build-up of excess mucus that can make the lungs more vulnerable to infection.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-19T15:14:28+00:00", + "dateModified": "2024-04-17T07:18:43+00:00", + "lastReviewed": [ + "2021-07-27T00:00:00+00:00", + "2024-07-27T00:00:00+00:00" + ], + "reviewDue": "2024-07-27T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bronchiectasis/", + "name": "Bronchiectasis" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bird-flu/", - "name": "Bird flu" - }, - { - "description": "Find out about blood transfusions, including when you might need one, how they're carried out and associated risks.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Procedure", "Treatment"], - "datePublished": "2017-10-19T07:24:53+00:00", - "dateModified": "2023-09-14T11:43:09+00:00", - "lastReviewed": ["2021-01-18T07:20:00+00:00", "2024-01-18T07:20:00+00:00"], - "reviewDue": "2024-01-18T07:20:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out more about bronchiolitis, including the symptoms, how it's treated, and what causes it.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T14:55:23+00:00", + "dateModified": "2024-09-01T07:10:00+00:00", + "lastReviewed": [ + "2022-04-13T00:00:00+00:00", + "2025-04-13T00:00:00+00:00" + ], + "reviewDue": "2025-04-13T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bronchiolitis/", + "name": "Bronchiolitis" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/blood-transfusion/", - "name": "Blood transfusion" - }, - { - "description": "NHS information about bunions, including symptoms, how they're treated and how to help prevent them.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-12-21T11:43:43+00:00", - "dateModified": "2023-06-26T09:41:45+00:00", - "lastReviewed": ["2023-06-12T11:30:00+00:00", "2026-06-12T11:30:00+00:00"], - "reviewDue": "2026-06-12T11:30:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Burns and scalds are damage to the skin caused by heat. Both are treated in the same way.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Accident or injury" + ], + "datePublished": "2017-10-19T15:24:10+00:00", + "dateModified": "2024-08-09T15:02:21+00:00", + "lastReviewed": [ + "2022-06-23T00:00:00+00:00", + "2025-06-23T00:00:00+00:00" + ], + "reviewDue": "2025-06-23T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/burns-and-scalds/", + "name": "Burns and scalds" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bunions/", - "name": "Bunions" - }, - { - "description": "Read about bullous pemphigoid, a rare skin condition that usually starts with an itchy, raised skin rash and then as the condition develops, large blisters can form.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2018-04-17T15:03:11+00:00", - "dateModified": "2021-11-18T15:56:35+00:00", - "lastReviewed": ["2021-07-19T00:00:00+00:00", "2024-07-19T00:00:00+00:00"], - "reviewDue": "2024-07-19T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "NHS information about bursitis, including symptoms, when to get help, treatments and prevention.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-12-11T10:00:36+00:00", + "dateModified": "2023-11-24T17:43:37+00:00", + "lastReviewed": [ + "2023-10-30T03:00:00+00:00", + "2026-10-30T03:00:00+00:00" + ], + "reviewDue": "2026-10-30T03:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bursitis/", + "name": "Bursitis" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bullous-pemphigoid/", - "name": "Bullous pemphigoid" - }, - { - "description": "NHS information and advice about how to treat body odour, including when to see a GP if the problem persists.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Symptom"], - "datePublished": "2019-01-15T14:04:28+00:00", - "dateModified": "2022-02-04T07:44:55+00:00", - "lastReviewed": ["2021-12-06T13:03:00+00:00", "2024-12-06T13:03:00+00:00"], - "reviewDue": "2024-12-06T13:03:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "NHS information about broken hip (hip fracture) including what the symptoms are, how it's treated and recovery.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition", + "Accident or injury" + ], + "datePublished": "2017-10-23T12:22:24+00:00", + "dateModified": "2024-06-18T10:52:16+00:00", + "lastReviewed": [ + "2023-02-08T03:00:00+00:00", + "2026-02-08T03:00:00+00:00" + ], + "reviewDue": "2026-02-08T03:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/broken-hip/", + "name": "Broken hip" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/body-odour-bo/", - "name": "Body odour (BO)" - }, - { - "description": "This guide includes all you need to know about caring for your baby.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": [], - "datePublished": "2020-12-08T20:04:05+00:00", - "dateModified": "2022-08-08T08:03:36+00:00", - "keywords": "" + { + "description": "Bird flu, or avian flu, is an infectious viral illness that spreads among birds. In rare cases, it can affect humans.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-19T06:59:46+00:00", + "dateModified": "2024-04-15T09:19:46+00:00", + "lastReviewed": [ + "2022-01-06T07:49:00+00:00", + "2024-08-03T06:49:00+00:00" + ], + "reviewDue": "2024-08-03T06:49:00+00:00", + "keywords": "", + "alternateName": [ + "Avian flu" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bird-flu/", + "name": "Bird flu" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/baby/", - "name": "Baby" - }, - { - "description": "Find out about NHS breast screening, including when you'll be invited, how to book, what happens and what your result means.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Test"], - "datePublished": "2021-09-22T09:03:18+00:00", - "dateModified": "2022-12-19T14:53:20+00:00", - "keywords": "", - "alternateName": ["Mammogram"] + { + "description": "NHS information about bunions, including symptoms, how they're treated and how to help prevent them.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-12-21T11:43:43+00:00", + "dateModified": "2024-09-18T13:59:17+00:00", + "lastReviewed": [ + "2023-06-12T11:30:00+00:00", + "2026-06-12T11:30:00+00:00" + ], + "reviewDue": "2026-06-12T11:30:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bunions/", + "name": "Bunions" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/breast-screening-mammogram/", - "name": "Breast screening (mammogram)" - }, - { - "description": "Find out about common causes of bloating, what you can do about it and when to get medical help.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Symptom"], - "datePublished": "2022-03-03T13:09:51+00:00", - "dateModified": "2022-03-03T13:09:51+00:00", - "lastReviewed": ["2022-03-03T12:13:00+00:00", "2025-03-03T12:13:00+00:00"], - "reviewDue": "2025-03-03T12:13:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out more about bullous pemphigoid, a rare skin condition that usually starts with an itchy, raised skin rash.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2018-04-17T15:03:11+00:00", + "dateModified": "2025-02-21T17:37:01+00:00", + "lastReviewed": [ + "2025-02-06T01:00:00+00:00", + "2028-02-06T01:00:00+00:00" + ], + "reviewDue": "2028-02-06T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bullous-pemphigoid/", + "name": "Bullous pemphigoid" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bloating/", - "name": "Bloating" - }, - { - "description": "Find out about braces and orthodontics, including how much they cost on the NHS or privately, and how to care for your teeth while wearing braces.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "WebPage", - "genre": ["Advice or information"], - "datePublished": "2022-02-24T16:46:44+00:00", - "dateModified": "2022-05-05T10:00:23+00:00", - "lastReviewed": ["2022-01-25T16:40:00+00:00", "2025-01-25T16:40:00+00:00"], - "reviewDue": "2025-01-25T16:40:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + { + "description": "Find out about bowel cancer, including what the symptoms are, what to do if you think you have it, how it is treated, and where to get support.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2023-03-22T15:50:26+00:00", + "dateModified": "2023-03-22T15:50:26+00:00", + "keywords": "", + "alternateName": [ + "Colon cancer", + "Rectal cancer" + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bowel-cancer/", + "name": "Bowel cancer" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/braces-and-orthodontics/", - "name": "Braces and orthodontics" - }, - { - "description": "Find out about bowel cancer, including what the symptoms are, what to do if you think you have it, how it is treated, and where to get support.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2023-03-22T15:50:26+00:00", - "dateModified": "2023-03-22T15:50:26+00:00", - "keywords": "", - "alternateName": ["Colon cancer", "Rectal cancer"] + { + "description": "Understand more about bile duct cancer, its symptoms, when to get medical help, testing and diagnosis, treatment and where to find help and support.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2023-07-05T14:22:21+00:00", + "dateModified": "2023-07-05T14:22:21+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bile-duct-cancer/", + "name": "Bile duct cancer (cholangiocarcinoma)" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bowel-cancer/", - "name": "Bowel cancer" - }, - { - "description": "Understand more about bile duct cancer, its symptoms, when to get medical help, testing and diagnosis, treatment and where to find help and support.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2023-07-05T14:22:21+00:00", - "dateModified": "2023-07-05T14:22:21+00:00", - "keywords": "" + { + "description": "Anyone can get breast cancer. Find out about breast cancer in women, including what the symptoms are, what to do if you think you have it, how it is treated, and where to get support.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2024-03-15T12:06:08+00:00", + "dateModified": "2024-03-15T12:06:08+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/breast-cancer-in-women/", + "name": "Breast cancer in women" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bile-duct-cancer/", - "name": "Bile duct cancer (cholangiocarcinoma)" - }, - { - "description": "NHS information and advice about body dysmorphic disorder (BDD or body dysmorphia), including what the symptoms are and what can help.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2021-02-10T16:51:34+00:00", - "dateModified": "2023-01-12T15:51:24+00:00", - "lastReviewed": ["2020-10-13T23:00:00+00:00", "2023-10-13T23:00:00+00:00"], - "reviewDue": "2023-10-13T23:00:00+00:00", - "keywords": "" + { + "description": "Anyone can get breast cancer. Find out about breast cancer in men, including what the symptoms are, what to do if you think you have it, how it is treated, and where to get support.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2024-04-02T15:43:57+00:00", + "dateModified": "2024-04-02T15:43:57+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/breast-cancer-in-men/", + "name": "Breast cancer in men" }, - "url": "https://api.service.nhs.uk/nhs-website-content/mental-health/conditions/body-dysmorphia/", - "name": "Body dysmorphic disorder (BDD)" - }, - { - "description": "Bipolar disorder, previously known as manic depression, is a condition that affects your moods, which can swing from one extreme to another.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2021-02-11T12:01:26+00:00", - "dateModified": "2022-08-16T12:55:27+00:00", - "keywords": "" + { + "description": "NHS information and advice about body dysmorphic disorder (BDD or body dysmorphia), including what the symptoms are and what can help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2021-02-10T16:51:34+00:00", + "dateModified": "2025-01-15T14:59:24+00:00", + "lastReviewed": [ + "2023-10-17T23:00:00+00:00", + "2026-10-17T23:00:00+00:00" + ], + "reviewDue": "2026-10-17T23:00:00+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/mental-health/conditions/body-dysmorphia/", + "name": "Body dysmorphic disorder (BDD)" }, - "url": "https://api.service.nhs.uk/nhs-website-content/mental-health/conditions/bipolar-disorder/", - "name": "Bipolar disorder" - }, - { - "description": "Read about bulimia nervosa, an eating disorder and mental health condition where someone is binge eating, then making themselves vomit or using laxatives to purge the food from their body", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2021-02-11T14:58:27+00:00", - "dateModified": "2022-03-29T10:26:45+00:00", - "keywords": "" + { + "description": "Read about binge eating disorder, which is when a person feels compelled to overeat on a regular basis. Find out about the symptoms, treatments and possible causes.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2021-02-12T14:02:28+00:00", + "dateModified": "2022-03-29T10:26:12+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/mental-health/conditions/binge-eating/", + "name": "Binge eating disorder" }, - "url": "https://api.service.nhs.uk/nhs-website-content/mental-health/conditions/bulimia/", - "name": "Bulimia" - }, - { - "description": "Read about binge eating disorder, which is when a person feels compelled to overeat on a regular basis. Find out about the symptoms, treatments and possible causes.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2021-02-12T14:02:28+00:00", - "dateModified": "2022-03-29T10:26:12+00:00", - "keywords": "" + { + "description": "Read about borderline personality disorder. Personality disorders can cause a range of distressing symptoms and patterns of abnormal behaviour.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2021-02-12T15:29:49+00:00", + "dateModified": "2022-08-16T12:57:08+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/mental-health/conditions/borderline-personality-disorder/", + "name": "Borderline personality disorder" }, - "url": "https://api.service.nhs.uk/nhs-website-content/mental-health/conditions/binge-eating/", - "name": "Binge eating disorder" - }, - { - "description": "Read about borderline personality disorder. Personality disorders can cause a range of distressing symptoms and patterns of abnormal behaviour.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2021-02-12T15:29:49+00:00", - "dateModified": "2022-08-16T12:57:08+00:00", - "keywords": "" + { + "description": "Find out about bipolar disorder, including symptoms, how it's diagnosed and treatments.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2024-10-30T13:14:01+00:00", + "dateModified": "2024-10-30T13:14:01+00:00", + "lastReviewed": [ + "2024-10-28T13:48:00+00:00", + "2027-10-28T12:48:00+00:00" + ], + "reviewDue": "2027-10-28T12:48:00+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/mental-health/conditions/bipolar-disorder/", + "name": "Bipolar disorder" }, - "url": "https://api.service.nhs.uk/nhs-website-content/mental-health/conditions/borderline-personality-disorder/", - "name": "Borderline personality disorder" - } + { + "description": "Find out what bulimia is, the symptoms and signs to look out for, and the treatment and support available.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2024-11-08T16:29:26+00:00", + "dateModified": "2024-11-11T08:14:07+00:00", + "lastReviewed": [ + "2024-11-07T14:03:00+00:00", + "2027-11-07T14:03:00+00:00" + ], + "reviewDue": "2027-11-07T14:03:00+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/mental-health/conditions/bulimia/", + "name": "Bulimia" + } ], "webpage": "https://www.nhs.uk/conditions/" } diff --git a/sandbox/responses/conditions-root-category-z.json b/sandbox/responses/conditions-root-category-z.json index 99c784d..861fc11 100644 --- a/sandbox/responses/conditions-root-category-z.json +++ b/sandbox/responses/conditions-root-category-z.json @@ -2,52 +2,74 @@ "@context": "http://schema.org", "@type": "MedicalWebPage", "name": "Health A to Z", - "copyrightHolder": { "name": "Crown Copyright", "@type": "Organization" }, + "copyrightHolder": { + "name": "Crown Copyright", + "@type": "Organization" + }, "license": "https://developer.api.nhs.uk/terms", "author": { - "url": "https://www.nhs.uk", - "logo": "https://assets.nhs.uk/nhsuk-cms/images/nhs-attribution.width-510.png", - "email": "nhswebsite.servicedesk@nhs.net", - "@type": "Organization", - "name": "NHS website" + "url": "https://www.nhs.uk", + "logo": "https://assets.nhs.uk/nhsuk-cms/images/nhs-attribution.width-510.png", + "email": "nhswebsite.servicedesk@nhs.net", + "@type": "Organization", + "name": "NHS website" + }, + "about": { + "@type": "WebPage", + "name": "Health A to Z", + "alternateName": "" }, - "about": { "@type": "WebPage", "name": "Health A to Z", "alternateName": "" }, - "description": "", + "description": "Find out about conditions, symptoms and treatments, including what to do and when to get help.", "url": "https://api.service.nhs.uk/nhs-website-content/conditions/", "genre": [], "keywords": "", - "dateModified": "2021-11-18T15:26:06+00:00", + "dateModified": "2025-01-14T11:49:05+00:00", "breadcrumb": { - "@context": "http://schema.org", - "@type": "BreadcrumbList", - "itemListElement": [ - { - "@type": "ListItem", - "position": 0, - "item": { "@id": "https://api.service.nhs.uk/nhs-website-content/conditions/", "name": "Health A to Z", "genre": [] } - } - ] + "@context": "http://schema.org", + "@type": "BreadcrumbList", + "itemListElement": [ + { + "@type": "ListItem", + "position": 0, + "item": { + "@id": "https://api.service.nhs.uk/nhs-website-content/conditions/", + "name": "Health A to Z", + "genre": [] + } + } + ] }, "contentSubTypes": [], "significantLink": [ - { - "description": "Find out more about Zika virus, including where it's found, how you catch it and what the symptoms are.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-18T14:31:13+00:00", - "dateModified": "2022-02-23T15:41:03+00:00", - "lastReviewed": ["2022-02-18T00:00:00+00:00", "2025-02-18T00:00:00+00:00"], - "reviewDue": "2025-02-18T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/zika/", - "name": "Zika virus" - } + { + "description": "Find out more about Zika virus, including where it's found, how you catch it and what the symptoms are.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-18T14:31:13+00:00", + "dateModified": "2022-02-23T15:41:03+00:00", + "lastReviewed": [ + "2022-02-18T00:00:00+00:00", + "2025-02-18T00:00:00+00:00" + ], + "reviewDue": "2025-02-18T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/zika/", + "name": "Zika virus" + } ], "webpage": "https://www.nhs.uk/conditions/" } diff --git a/sandbox/responses/conditions-root-no-params.json b/sandbox/responses/conditions-root-no-params.json index c73fcae..df339d4 100644 --- a/sandbox/responses/conditions-root-no-params.json +++ b/sandbox/responses/conditions-root-no-params.json @@ -1,8 +1,11 @@ { "@context": "http://schema.org", "@type": "MedicalWebPage", - "name": "Health A to Z", - "copyrightHolder": { "name": "Crown Copyright", "@type": "Organization" }, + "name": "Conditions A to Z", + "copyrightHolder": { + "name": "Crown Copyright", + "@type": "Organization" + }, "license": "https://developer.api.nhs.uk/terms", "author": { "url": "https://www.nhs.uk", @@ -11,12 +14,16 @@ "@type": "Organization", "name": "NHS website" }, - "about": { "@type": "WebPage", "name": "Health A to Z", "alternateName": "" }, - "description": "", + "about": { + "@type": "WebPage", + "name": "Conditions A to Z", + "alternateName": "" + }, + "description": "Find out about health conditions, including their symptoms and how they're treated.", "url": "https://api.service.nhs.uk/nhs-website-content/conditions/", "genre": [], "keywords": "", - "dateModified": "2021-11-18T15:26:06+00:00", + "dateModified": "2025-04-16T13:49:43+00:00", "breadcrumb": { "@context": "http://schema.org", "@type": "BreadcrumbList", @@ -24,7 +31,11 @@ { "@type": "ListItem", "position": 0, - "item": { "@id": "https://api.service.nhs.uk/nhs-website-content/conditions/", "name": "Health A to Z", "genre": [] } + "item": { + "@id": "https://api.service.nhs.uk/nhs-website-content/conditions/", + "name": "Conditions A to Z", + "genre": [] + } } ] }, @@ -37,13 +48,24 @@ "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Condition"], + "genre": [ + "Condition" + ], "datePublished": "2017-10-24T08:48:21+00:00", - "dateModified": "2021-11-30T15:42:29+00:00", - "lastReviewed": ["2021-06-20T00:00:00+00:00", "2024-06-20T00:00:00+00:00"], - "reviewDue": "2024-06-20T00:00:00+00:00", + "dateModified": "2025-02-20T13:24:49+00:00", + "lastReviewed": [ + "2024-07-04T00:00:00+00:00", + "2027-07-04T00:00:00+00:00" + ], + "reviewDue": "2027-07-04T00:00:00+00:00", "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acanthosis-nigricans/", "name": "Acanthosis nigricans" @@ -55,31 +77,53 @@ "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Condition"], + "genre": [ + "Condition" + ], "datePublished": "2017-10-17T15:19:45+00:00", - "dateModified": "2023-07-05T15:04:16+00:00", - "lastReviewed": ["2020-12-24T14:50:00+00:00", "2023-12-24T15:00:00+00:00"], - "reviewDue": "2023-12-24T15:00:00+00:00", + "dateModified": "2023-12-12T10:14:58+00:00", + "lastReviewed": [ + "2023-12-05T14:50:00+00:00", + "2026-12-05T15:00:00+00:00" + ], + "reviewDue": "2026-12-05T15:00:00+00:00", "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, "url": "https://api.service.nhs.uk/nhs-website-content/conditions/achalasia/", "name": "Achalasia" }, { - "description": "Find out about first aid and treatment for acid and chemical burns, including burns from acid attacks.", + "description": "Find out about acid and chemical burns including what causes them, where to get help, how to do first aid, and how they're treated.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Accident or injury"], + "genre": [ + "Accident or injury" + ], "datePublished": "2018-10-03T19:55:47+00:00", - "dateModified": "2023-09-04T07:39:55+00:00", - "lastReviewed": ["2020-09-18T00:00:00+00:00", "2023-09-18T17:00:00+00:00"], - "reviewDue": "2023-09-18T17:00:00+00:00", + "dateModified": "2024-06-10T08:44:38+00:00", + "lastReviewed": [ + "2024-06-05T00:00:00+00:00", + "2027-06-05T17:00:00+00:00" + ], + "reviewDue": "2027-06-05T17:00:00+00:00", "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acid-and-chemical-burns/", "name": "Acid and chemical burns" @@ -91,55 +135,63 @@ "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Condition"], + "genre": [ + "Condition" + ], "datePublished": "2017-10-17T15:44:39+00:00", - "dateModified": "2022-12-02T16:38:26+00:00", - "lastReviewed": ["2022-11-29T00:00:00+00:00", "2025-11-29T00:00:00+00:00"], + "dateModified": "2024-03-07T16:55:34+00:00", + "lastReviewed": [ + "2022-11-29T00:00:00+00:00", + "2025-11-29T00:00:00+00:00" + ], "reviewDue": "2025-11-29T00:00:00+00:00", "keywords": "", - "alternateName": ["Vestibular schwannoma"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "alternateName": [ + "Vestibular schwannoma" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acoustic-neuroma/", "name": "Acoustic neuroma (vestibular schwannoma)" }, { - "description": "Find out about acromegaly, a rare condition where the body produces too much growth hormone causing tissue and bone to grow more quickly. Read about symptoms, causes, diagnosis and treatment.", + "description": "Find out about acromegaly, the abnormal growth of hands, feet and other body parts. This includes the symptoms, when to get medical help and how it's treated.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Condition"], + "genre": [ + "Condition" + ], "datePublished": "2017-10-17T15:17:11+00:00", - "dateModified": "2023-10-02T08:09:37+00:00", - "lastReviewed": ["2020-10-12T00:00:00+00:00", "2023-10-12T00:00:00+00:00"], - "reviewDue": "2023-10-12T00:00:00+00:00", + "dateModified": "2025-02-20T13:26:16+00:00", + "lastReviewed": [ + "2024-12-19T01:00:00+00:00", + "2027-12-19T01:00:00+00:00" + ], + "reviewDue": "2027-12-19T01:00:00+00:00", "keywords": "", - "alternateName": ["Gigantism"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "alternateName": [ + "Gigantism" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acromegaly/", "name": "Acromegaly" }, - { - "description": "Find out when your urine albumin to creatinine ratio (ACR) should\r\nbe measured. ACR values can help identify kidney disease that occurs as a complication of diabetes.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Test"], - "datePublished": "2018-08-28T16:15:09+00:00", - "dateModified": "2022-05-30T12:17:41+00:00", - "lastReviewed": ["2022-05-24T00:00:00+00:00", "2025-05-24T00:00:00+00:00"], - "reviewDue": "2025-05-24T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acr-test/", - "name": "Urine albumin to creatinine ratio (ACR)" - }, { "description": "Find out more about actinic keratoses, which are patches of skin that have been damaged by the sun.", "linkRelationship": "Result", @@ -147,36 +199,31 @@ "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Condition"], + "genre": [ + "Condition" + ], "datePublished": "2017-10-17T15:23:05+00:00", "dateModified": "2023-07-04T10:02:21+00:00", - "lastReviewed": ["2023-06-14T00:00:00+00:00", "2026-06-14T00:00:00+00:00"], + "lastReviewed": [ + "2023-06-14T00:00:00+00:00", + "2026-06-14T00:00:00+00:00" + ], "reviewDue": "2026-06-14T00:00:00+00:00", "keywords": "", - "alternateName": ["Solar keratoses"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "alternateName": [ + "Solar keratoses" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, "url": "https://api.service.nhs.uk/nhs-website-content/conditions/actinic-keratoses/", "name": "Actinic keratoses (solar keratoses)" }, - { - "description": "Read about acupuncture, a treatment derived from ancient Chinese medicine in which fine needles are inserted at certain sites in the body to relieve or prevent health problems", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Treatment"], - "datePublished": "2017-10-17T15:41:00+00:00", - "dateModified": "2023-03-15T09:54:23+00:00", - "lastReviewed": ["2023-02-28T02:00:00+00:00", "2026-02-28T03:00:00+00:00"], - "reviewDue": "2026-02-28T03:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acupuncture/", - "name": "Acupuncture" - }, { "description": "Read about acute cholecystitis, which is inflammation of the gallbladder. It usually occurs when a gallstone blocks the cystic duct.", "linkRelationship": "Result", @@ -184,14 +231,28 @@ "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Condition"], + "genre": [ + "Condition" + ], "datePublished": "2017-10-17T15:30:37+00:00", - "dateModified": "2023-06-08T14:38:26+00:00", - "lastReviewed": ["2023-02-21T01:00:00+00:00", "2026-02-21T01:00:00+00:00"], + "dateModified": "2023-12-18T14:58:04+00:00", + "lastReviewed": [ + "2023-02-21T01:00:00+00:00", + "2026-02-21T01:00:00+00:00" + ], "reviewDue": "2026-02-21T01:00:00+00:00", "keywords": "", - "alternateName": ["Gallbladder pain", "Cholecystitis (acute)"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "alternateName": [ + "Gallbladder pain", + "Cholecystitis (acute)" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acute-cholecystitis/", "name": "Acute cholecystitis" @@ -203,216 +264,532 @@ "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Condition"], + "genre": [ + "Condition" + ], "datePublished": "2018-10-03T19:55:51+00:00", "dateModified": "2022-09-13T14:52:40+00:00", - "lastReviewed": ["2022-09-07T23:00:00+00:00", "2025-09-07T23:00:00+00:00"], + "lastReviewed": [ + "2022-09-07T23:00:00+00:00", + "2025-09-07T23:00:00+00:00" + ], "reviewDue": "2025-09-07T23:00:00+00:00", "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acute-kidney-injury/", "name": "Acute kidney injury" }, { - "description": "Find out about acute respiratory distress syndrome, including who\u2019s at risk of getting it, the symptoms, how it\u2019s treated and what causes it.", + "description": "Find out about acute respiratory distress syndrome, including who’s at risk of getting it, the symptoms, how it’s treated and what causes it.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Condition"], + "genre": [ + "Condition" + ], "datePublished": "2017-10-17T15:27:22+00:00", - "dateModified": "2023-07-25T12:53:45+00:00", - "lastReviewed": ["2023-07-11T23:00:00+00:00", "2026-07-11T23:00:00+00:00"], + "dateModified": "2024-06-18T15:33:56+00:00", + "lastReviewed": [ + "2023-07-11T23:00:00+00:00", + "2026-07-11T23:00:00+00:00" + ], "reviewDue": "2026-07-11T23:00:00+00:00", "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acute-respiratory-distress-syndrome/", "name": "Acute respiratory distress syndrome (ARDS)" }, { - "description": "Find out what an adenoidectomy is, why it's done, what happens during the operation and the possible complications.", + "description": "Find out about alcohol poisoning, what the symptoms are, what to do if you think you or someone else has it, what the treatments are and what causes it.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Procedure", "Treatment"], - "datePublished": "2017-10-17T15:31:58+00:00", - "dateModified": "2023-06-16T13:39:11+00:00", - "lastReviewed": ["2023-03-10T15:37:00+00:00", "2026-03-10T15:37:00+00:00"], - "reviewDue": "2026-03-10T15:37:00+00:00", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T15:40:36+00:00", + "dateModified": "2024-06-19T13:14:22+00:00", + "lastReviewed": [ + "2023-01-11T01:00:00+00:00", + "2026-01-11T01:00:00+00:00" + ], + "reviewDue": "2026-01-11T01:00:00+00:00", "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/adenoidectomy/", - "name": "Adenoidectomy" + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/alcohol-poisoning/", + "name": "Alcohol poisoning" }, { - "description": "An air or gas embolism is a serious problem that can happen to scuba divers and during some medical procedures. Read about the causes, symptoms and treatments.", + "description": "Read about alkaptonuria, or \"black urine disease\", a rare inherited disorder that can turn urine and parts of the body a dark colour and lead to other problems.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-12-01T09:45:51+00:00", - "dateModified": "2023-10-02T08:10:10+00:00", - "lastReviewed": ["2020-12-16T00:00:00+00:00", "2023-12-16T00:00:00+00:00"], - "reviewDue": "2023-12-16T00:00:00+00:00", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-24T10:34:28+00:00", + "dateModified": "2024-10-15T08:00:59+00:00", + "lastReviewed": [ + "2022-03-10T00:00:00+00:00", + "2025-03-10T00:00:00+00:00" + ], + "reviewDue": "2025-03-10T00:00:00+00:00", "keywords": "", - "alternateName": ["Decompression sickness"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/air-embolism/", - "name": "Air or gas embolism" + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/alkaptonuria/", + "name": "Alkaptonuria" }, { - "description": "Find out about alcohol poisoning, what the symptoms are, what to do if you think you or someone else has it, what the treatments are and what causes it.", + "description": "Find out about amyloidosis, including what the symptoms are, when and where to get medical help, the causes and how it's treated.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T15:40:36+00:00", - "dateModified": "2023-01-12T12:26:14+00:00", - "lastReviewed": ["2023-01-11T01:00:00+00:00", "2026-01-11T01:00:00+00:00"], - "reviewDue": "2026-01-11T01:00:00+00:00", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T15:48:36+00:00", + "dateModified": "2025-02-28T12:50:27+00:00", + "lastReviewed": [ + "2023-08-23T00:00:00+00:00", + "2026-08-23T00:00:00+00:00" + ], + "reviewDue": "2026-08-23T00:00:00+00:00", "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/alcohol-poisoning/", - "name": "Alcohol poisoning" + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/amyloidosis/", + "name": "Amyloidosis" }, { - "description": "The Alexander technique teaches improved posture and movement, which is believed to help reduce and prevent problems caused by unhelpful habits.", + "description": "Read about anabolic steroids, which are prescription-only medicines that are sometimes taken without medical advice to increase muscle mass and improve athletic performance.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "WebPage", + "genre": [ + "Advice or information" + ], + "datePublished": "2017-10-17T15:50:01+00:00", + "dateModified": "2024-11-27T11:27:43+00:00", + "lastReviewed": [ + "2022-04-13T09:37:00+00:00", + "2025-04-13T09:37:00+00:00" + ], + "reviewDue": "2025-04-13T09:37:00+00:00", + "keywords": "", + "alternateName": [ + "Steroid misuse" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anabolic-steroid-misuse/", + "name": "Anabolic steroid misuse" + }, + { + "description": "Read about Angelman syndrome, a genetic disorder that affects the nervous system and causes severe physical and intellectual disability", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Treatment"], - "datePublished": "2017-10-17T16:16:34+00:00", - "dateModified": "2023-10-10T14:03:35+00:00", - "lastReviewed": ["2021-09-06T00:00:00+00:00", "2024-09-06T00:00:00+00:00"], - "reviewDue": "2024-09-06T00:00:00+00:00", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:28:17+00:00", + "dateModified": "2023-04-13T10:12:21+00:00", + "lastReviewed": [ + "2023-03-09T01:00:00+00:00", + "2026-03-09T01:00:00+00:00" + ], + "reviewDue": "2026-03-09T01:00:00+00:00", "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/alexander-technique/", - "name": "Alexander technique" + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/angelman-syndrome/", + "name": "Angelman syndrome" }, { - "description": "Read about alkaptonuria, or \"black urine disease\", a rare inherited disorder that can turn urine and parts of the body a dark colour and lead to other problems.", + "description": "Find out what to do if you’ve been bitten by an animal or person, including first aid advice, when to get medical help and what treatment you may need.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-24T10:34:28+00:00", - "dateModified": "2023-04-27T13:09:51+00:00", - "lastReviewed": ["2022-03-10T00:00:00+00:00", "2025-03-10T00:00:00+00:00"], - "reviewDue": "2025-03-10T00:00:00+00:00", + "genre": [ + "Accident or injury" + ], + "datePublished": "2017-10-17T15:53:13+00:00", + "dateModified": "2024-06-18T15:43:26+00:00", + "lastReviewed": [ + "2022-06-22T23:00:00+00:00", + "2025-06-22T23:00:00+00:00" + ], + "reviewDue": "2025-06-22T23:00:00+00:00", "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "alternateName": [ + "Bite (animal or human)", + "Cat bites", + "Dog bites", + "Human bites" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/alkaptonuria/", - "name": "Alkaptonuria" + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/animal-and-human-bites/", + "name": "Animal and human bites" }, { - "description": "Information about amputation, including why and how it's carried out, recovery and rehabilitation, prosthetics, stump care and possible complications.", + "description": "Find out about the symptoms of heart rhythm problems and what causes them, and when you should see a GP.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Procedure", "Treatment"], - "datePublished": "2017-10-17T15:47:57+00:00", - "dateModified": "2023-04-13T10:05:18+00:00", - "lastReviewed": ["2023-02-17T01:00:00+00:00", "2026-02-17T01:00:00+00:00"], - "reviewDue": "2026-02-17T01:00:00+00:00", + "genre": [ + "Condition" + ], + "datePublished": "2018-02-19T15:41:03+00:00", + "dateModified": "2025-04-08T14:24:30+00:00", + "lastReviewed": [ + "2024-10-28T00:00:00+00:00", + "2027-10-27T23:00:00+00:00" + ], + "reviewDue": "2027-10-27T23:00:00+00:00", "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "alternateName": [ + "Arrhythmia" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/amputation/", - "name": "Amputation" + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/arrhythmia/", + "name": "Heart rhythm problems (arrhythmia)" }, { - "description": "Find out about amyloidosis, including what the symptoms are, when and where to get medical help, the causes and how it's treated.", + "description": "Asbestosis is a serious lung condition caused by exposure to asbestos – a building material used mostly from the 1950s to the 1990s.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T15:48:36+00:00", - "dateModified": "2023-08-24T13:52:35+00:00", - "lastReviewed": ["2023-08-23T00:00:00+00:00", "2026-08-23T00:00:00+00:00"], - "reviewDue": "2026-08-23T00:00:00+00:00", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:02:11+00:00", + "dateModified": "2024-03-20T15:19:22+00:00", + "lastReviewed": [ + "2023-07-31T15:03:00+00:00", + "2026-07-31T00:00:00+00:00" + ], + "reviewDue": "2026-07-31T00:00:00+00:00", "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/amyloidosis/", - "name": "Amyloidosis" + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/asbestosis/", + "name": "Asbestosis" }, { - "description": "Read about anabolic steroids, which are prescription-only medicines that are sometimes taken without medical advice to increase muscle mass and improve athletic performance.", + "description": "Find out more about atherosclerosis, what the symptoms are, how you can help stop it getting worse, how it's treated and what causes it.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { - "@type": "WebPage", - "genre": ["Advice or information"], - "datePublished": "2017-10-17T15:50:01+00:00", - "dateModified": "2022-11-04T09:39:37+00:00", - "lastReviewed": ["2022-04-13T09:37:00+00:00", "2025-04-13T09:37:00+00:00"], - "reviewDue": "2025-04-13T09:37:00+00:00", + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T15:59:05+00:00", + "dateModified": "2024-11-27T11:55:44+00:00", + "lastReviewed": [ + "2023-01-30T01:00:00+00:00", + "2026-01-30T01:00:00+00:00" + ], + "reviewDue": "2026-01-30T01:00:00+00:00", "keywords": "", - "alternateName": ["Steroid misuse"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anabolic-steroid-misuse/", - "name": "Anabolic steroid misuse" + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/atherosclerosis/", + "name": "Atherosclerosis" + }, + { + "description": "Read about athlete's foot, a common fungal infection of the foot. Find out about the symptoms, what causes it, and how it's treated.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:02:41+00:00", + "dateModified": "2024-05-08T11:28:05+00:00", + "lastReviewed": [ + "2024-04-29T17:00:00+00:00", + "2027-04-29T17:00:00+00:00" + ], + "reviewDue": "2027-04-29T17:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/athletes-foot/", + "name": "Athlete's foot" + }, + { + "description": "Find out about auditory processing disorder, a condition where you have difficulty understanding sounds including spoken words.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:01:41+00:00", + "dateModified": "2025-03-24T11:59:49+00:00", + "lastReviewed": [ + "2023-07-31T00:00:00+00:00", + "2026-07-31T00:00:00+00:00" + ], + "reviewDue": "2026-07-31T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/auditory-processing-disorder/", + "name": "Auditory processing disorder (APD)" + }, + { + "description": "Read about balanitis, which is where the head of the penis is swollen and sore. Find out about the symptoms, causes, treatments and when to get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:07:52+00:00", + "dateModified": "2023-05-30T12:15:43+00:00", + "lastReviewed": [ + "2023-05-30T00:00:00+00:00", + "2026-05-30T00:00:00+00:00" + ], + "reviewDue": "2026-05-30T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/balanitis/", + "name": "Balanitis" + }, + { + "description": "Find out about bedbugs, including checking if you have them, how to get rid of them and how to treat bedbug bites.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:09:19+00:00", + "dateModified": "2023-11-08T13:24:51+00:00", + "lastReviewed": [ + "2022-08-01T23:00:00+00:00", + "2025-08-01T23:00:00+00:00" + ], + "reviewDue": "2025-08-01T23:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bedbugs/", + "name": "Bedbugs" + }, + { + "description": "Find out more about a black eye, which is bruising and swelling around your eye, usually caused by a blow.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Accident or injury" + ], + "datePublished": "2017-10-17T16:07:56+00:00", + "dateModified": "2024-06-18T15:49:03+00:00", + "lastReviewed": [ + "2023-07-27T00:00:00+00:00", + "2026-07-27T00:00:00+00:00" + ], + "reviewDue": "2026-07-27T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/black-eye/", + "name": "Black eye" }, { - "description": "Find out about different types of anaesthetics, how they work, and the potential side effects. Also, read about the role of the anaesthetist.", + "description": "Find out about the symptoms of an infected piercing, including what to do if your piercing is infected and how to keep your piercing clean to stop it getting infected.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Medicine"], - "datePublished": "2017-10-17T15:49:39+00:00", - "dateModified": "2021-11-18T15:26:25+00:00", - "lastReviewed": ["2021-09-23T00:00:00+00:00", "2024-09-23T00:00:00+00:00"], - "reviewDue": "2024-09-23T00:00:00+00:00", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:19:09+00:00", + "dateModified": "2023-04-25T09:59:10+00:00", + "lastReviewed": [ + "2023-04-18T00:00:00+00:00", + "2026-04-18T00:00:00+00:00" + ], + "reviewDue": "2026-04-18T00:00:00+00:00", "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anaesthesia/", - "name": "Anaesthesia" + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/infected-piercings/", + "name": "Infected piercings" }, { - "description": "Anal cancer is a rare type of cancer that affects the anus. Get information and advice about symptoms, causes and treatments.", + "description": "Read more about boils and carbuncles, which are red, painful lumps on the skin that are usually caused by a bacterial infection.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T16:08:41+00:00", - "dateModified": "2022-07-12T15:04:44+00:00", - "lastReviewed": ["2021-03-08T01:00:00+00:00", "2024-03-08T01:00:00+00:00"], - "reviewDue": "2024-03-08T01:00:00+00:00", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:16:23+00:00", + "dateModified": "2023-06-23T15:18:57+00:00", + "lastReviewed": [ + "2023-06-20T00:00:00+00:00", + "2026-06-20T00:00:00+00:00" + ], + "reviewDue": "2026-06-20T00:00:00+00:00", "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anal-cancer/", - "name": "Anal cancer" + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/boils/", + "name": "Boils" } ], "relatedLink": [ @@ -425,7 +802,7 @@ }, { "@type": "LinkRole", - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/?page=208", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/?page=29", "name": "Last Page", "description": "Link to Last Page", "linkRelationship": "Pagination" diff --git a/sandbox/responses/conditions-root-page-1.json b/sandbox/responses/conditions-root-page-1.json index 0b683b1..02bf824 100644 --- a/sandbox/responses/conditions-root-page-1.json +++ b/sandbox/responses/conditions-root-page-1.json @@ -1,8 +1,11 @@ { "@context": "http://schema.org", "@type": "MedicalWebPage", - "name": "Health A to Z", - "copyrightHolder": { "name": "Crown Copyright", "@type": "Organization" }, + "name": "Conditions A to Z", + "copyrightHolder": { + "name": "Crown Copyright", + "@type": "Organization" + }, "license": "https://developer.api.nhs.uk/terms", "author": { "url": "https://www.nhs.uk", @@ -11,12 +14,16 @@ "@type": "Organization", "name": "NHS website" }, - "about": { "@type": "WebPage", "name": "Health A to Z", "alternateName": "" }, - "description": "", + "about": { + "@type": "WebPage", + "name": "Conditions A to Z", + "alternateName": "" + }, + "description": "Find out about health conditions, including their symptoms and how they're treated.", "url": "https://api.service.nhs.uk/nhs-website-content/conditions/", "genre": [], "keywords": "", - "dateModified": "2021-11-18T15:26:06+00:00", + "dateModified": "2025-04-16T13:49:43+00:00", "breadcrumb": { "@context": "http://schema.org", "@type": "BreadcrumbList", @@ -24,7 +31,11 @@ { "@type": "ListItem", "position": 0, - "item": { "@id": "https://api.service.nhs.uk/nhs-website-content/conditions/", "name": "Health A to Z", "genre": [] } + "item": { + "@id": "https://api.service.nhs.uk/nhs-website-content/conditions/", + "name": "Conditions A to Z", + "genre": [] + } } ] }, @@ -37,13 +48,24 @@ "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Condition"], + "genre": [ + "Condition" + ], "datePublished": "2017-10-24T08:48:21+00:00", - "dateModified": "2021-11-30T15:42:29+00:00", - "lastReviewed": ["2021-06-20T00:00:00+00:00", "2024-06-20T00:00:00+00:00"], - "reviewDue": "2024-06-20T00:00:00+00:00", + "dateModified": "2025-02-20T13:24:49+00:00", + "lastReviewed": [ + "2024-07-04T00:00:00+00:00", + "2027-07-04T00:00:00+00:00" + ], + "reviewDue": "2027-07-04T00:00:00+00:00", "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acanthosis-nigricans/", "name": "Acanthosis nigricans" @@ -55,31 +77,53 @@ "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Condition"], + "genre": [ + "Condition" + ], "datePublished": "2017-10-17T15:19:45+00:00", - "dateModified": "2023-07-05T15:04:16+00:00", - "lastReviewed": ["2020-12-24T14:50:00+00:00", "2023-12-24T15:00:00+00:00"], - "reviewDue": "2023-12-24T15:00:00+00:00", + "dateModified": "2023-12-12T10:14:58+00:00", + "lastReviewed": [ + "2023-12-05T14:50:00+00:00", + "2026-12-05T15:00:00+00:00" + ], + "reviewDue": "2026-12-05T15:00:00+00:00", "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, "url": "https://api.service.nhs.uk/nhs-website-content/conditions/achalasia/", "name": "Achalasia" }, { - "description": "Find out about first aid and treatment for acid and chemical burns, including burns from acid attacks.", + "description": "Find out about acid and chemical burns including what causes them, where to get help, how to do first aid, and how they're treated.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Accident or injury"], + "genre": [ + "Accident or injury" + ], "datePublished": "2018-10-03T19:55:47+00:00", - "dateModified": "2023-09-04T07:39:55+00:00", - "lastReviewed": ["2020-09-18T00:00:00+00:00", "2023-09-18T17:00:00+00:00"], - "reviewDue": "2023-09-18T17:00:00+00:00", + "dateModified": "2024-06-10T08:44:38+00:00", + "lastReviewed": [ + "2024-06-05T00:00:00+00:00", + "2027-06-05T17:00:00+00:00" + ], + "reviewDue": "2027-06-05T17:00:00+00:00", "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acid-and-chemical-burns/", "name": "Acid and chemical burns" @@ -91,55 +135,63 @@ "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Condition"], + "genre": [ + "Condition" + ], "datePublished": "2017-10-17T15:44:39+00:00", - "dateModified": "2022-12-02T16:38:26+00:00", - "lastReviewed": ["2022-11-29T00:00:00+00:00", "2025-11-29T00:00:00+00:00"], + "dateModified": "2024-03-07T16:55:34+00:00", + "lastReviewed": [ + "2022-11-29T00:00:00+00:00", + "2025-11-29T00:00:00+00:00" + ], "reviewDue": "2025-11-29T00:00:00+00:00", "keywords": "", - "alternateName": ["Vestibular schwannoma"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "alternateName": [ + "Vestibular schwannoma" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acoustic-neuroma/", "name": "Acoustic neuroma (vestibular schwannoma)" }, { - "description": "Find out about acromegaly, a rare condition where the body produces too much growth hormone causing tissue and bone to grow more quickly. Read about symptoms, causes, diagnosis and treatment.", + "description": "Find out about acromegaly, the abnormal growth of hands, feet and other body parts. This includes the symptoms, when to get medical help and how it's treated.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Condition"], + "genre": [ + "Condition" + ], "datePublished": "2017-10-17T15:17:11+00:00", - "dateModified": "2023-10-02T08:09:37+00:00", - "lastReviewed": ["2020-10-12T00:00:00+00:00", "2023-10-12T00:00:00+00:00"], - "reviewDue": "2023-10-12T00:00:00+00:00", + "dateModified": "2025-02-20T13:26:16+00:00", + "lastReviewed": [ + "2024-12-19T01:00:00+00:00", + "2027-12-19T01:00:00+00:00" + ], + "reviewDue": "2027-12-19T01:00:00+00:00", "keywords": "", - "alternateName": ["Gigantism"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "alternateName": [ + "Gigantism" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acromegaly/", "name": "Acromegaly" }, - { - "description": "Find out when your urine albumin to creatinine ratio (ACR) should\r\nbe measured. ACR values can help identify kidney disease that occurs as a complication of diabetes.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Test"], - "datePublished": "2018-08-28T16:15:09+00:00", - "dateModified": "2022-05-30T12:17:41+00:00", - "lastReviewed": ["2022-05-24T00:00:00+00:00", "2025-05-24T00:00:00+00:00"], - "reviewDue": "2025-05-24T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acr-test/", - "name": "Urine albumin to creatinine ratio (ACR)" - }, { "description": "Find out more about actinic keratoses, which are patches of skin that have been damaged by the sun.", "linkRelationship": "Result", @@ -147,36 +199,31 @@ "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Condition"], + "genre": [ + "Condition" + ], "datePublished": "2017-10-17T15:23:05+00:00", "dateModified": "2023-07-04T10:02:21+00:00", - "lastReviewed": ["2023-06-14T00:00:00+00:00", "2026-06-14T00:00:00+00:00"], + "lastReviewed": [ + "2023-06-14T00:00:00+00:00", + "2026-06-14T00:00:00+00:00" + ], "reviewDue": "2026-06-14T00:00:00+00:00", "keywords": "", - "alternateName": ["Solar keratoses"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "alternateName": [ + "Solar keratoses" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, "url": "https://api.service.nhs.uk/nhs-website-content/conditions/actinic-keratoses/", "name": "Actinic keratoses (solar keratoses)" }, - { - "description": "Read about acupuncture, a treatment derived from ancient Chinese medicine in which fine needles are inserted at certain sites in the body to relieve or prevent health problems", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Treatment"], - "datePublished": "2017-10-17T15:41:00+00:00", - "dateModified": "2023-03-15T09:54:23+00:00", - "lastReviewed": ["2023-02-28T02:00:00+00:00", "2026-02-28T03:00:00+00:00"], - "reviewDue": "2026-02-28T03:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acupuncture/", - "name": "Acupuncture" - }, { "description": "Read about acute cholecystitis, which is inflammation of the gallbladder. It usually occurs when a gallstone blocks the cystic duct.", "linkRelationship": "Result", @@ -184,14 +231,28 @@ "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Condition"], + "genre": [ + "Condition" + ], "datePublished": "2017-10-17T15:30:37+00:00", - "dateModified": "2023-06-08T14:38:26+00:00", - "lastReviewed": ["2023-02-21T01:00:00+00:00", "2026-02-21T01:00:00+00:00"], + "dateModified": "2023-12-18T14:58:04+00:00", + "lastReviewed": [ + "2023-02-21T01:00:00+00:00", + "2026-02-21T01:00:00+00:00" + ], "reviewDue": "2026-02-21T01:00:00+00:00", "keywords": "", - "alternateName": ["Gallbladder pain", "Cholecystitis (acute)"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "alternateName": [ + "Gallbladder pain", + "Cholecystitis (acute)" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acute-cholecystitis/", "name": "Acute cholecystitis" @@ -203,216 +264,532 @@ "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Condition"], + "genre": [ + "Condition" + ], "datePublished": "2018-10-03T19:55:51+00:00", "dateModified": "2022-09-13T14:52:40+00:00", - "lastReviewed": ["2022-09-07T23:00:00+00:00", "2025-09-07T23:00:00+00:00"], + "lastReviewed": [ + "2022-09-07T23:00:00+00:00", + "2025-09-07T23:00:00+00:00" + ], "reviewDue": "2025-09-07T23:00:00+00:00", "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acute-kidney-injury/", "name": "Acute kidney injury" }, { - "description": "Find out about acute respiratory distress syndrome, including who\u2019s at risk of getting it, the symptoms, how it\u2019s treated and what causes it.", + "description": "Find out about acute respiratory distress syndrome, including who’s at risk of getting it, the symptoms, how it’s treated and what causes it.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Condition"], + "genre": [ + "Condition" + ], "datePublished": "2017-10-17T15:27:22+00:00", - "dateModified": "2023-07-25T12:53:45+00:00", - "lastReviewed": ["2023-07-11T23:00:00+00:00", "2026-07-11T23:00:00+00:00"], + "dateModified": "2024-06-18T15:33:56+00:00", + "lastReviewed": [ + "2023-07-11T23:00:00+00:00", + "2026-07-11T23:00:00+00:00" + ], "reviewDue": "2026-07-11T23:00:00+00:00", "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acute-respiratory-distress-syndrome/", "name": "Acute respiratory distress syndrome (ARDS)" }, { - "description": "Find out what an adenoidectomy is, why it's done, what happens during the operation and the possible complications.", + "description": "Find out about alcohol poisoning, what the symptoms are, what to do if you think you or someone else has it, what the treatments are and what causes it.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Procedure", "Treatment"], - "datePublished": "2017-10-17T15:31:58+00:00", - "dateModified": "2023-06-16T13:39:11+00:00", - "lastReviewed": ["2023-03-10T15:37:00+00:00", "2026-03-10T15:37:00+00:00"], - "reviewDue": "2026-03-10T15:37:00+00:00", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T15:40:36+00:00", + "dateModified": "2024-06-19T13:14:22+00:00", + "lastReviewed": [ + "2023-01-11T01:00:00+00:00", + "2026-01-11T01:00:00+00:00" + ], + "reviewDue": "2026-01-11T01:00:00+00:00", "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/adenoidectomy/", - "name": "Adenoidectomy" + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/alcohol-poisoning/", + "name": "Alcohol poisoning" }, { - "description": "An air or gas embolism is a serious problem that can happen to scuba divers and during some medical procedures. Read about the causes, symptoms and treatments.", + "description": "Read about alkaptonuria, or \"black urine disease\", a rare inherited disorder that can turn urine and parts of the body a dark colour and lead to other problems.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-12-01T09:45:51+00:00", - "dateModified": "2023-10-02T08:10:10+00:00", - "lastReviewed": ["2020-12-16T00:00:00+00:00", "2023-12-16T00:00:00+00:00"], - "reviewDue": "2023-12-16T00:00:00+00:00", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-24T10:34:28+00:00", + "dateModified": "2024-10-15T08:00:59+00:00", + "lastReviewed": [ + "2022-03-10T00:00:00+00:00", + "2025-03-10T00:00:00+00:00" + ], + "reviewDue": "2025-03-10T00:00:00+00:00", "keywords": "", - "alternateName": ["Decompression sickness"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/air-embolism/", - "name": "Air or gas embolism" + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/alkaptonuria/", + "name": "Alkaptonuria" }, { - "description": "Find out about alcohol poisoning, what the symptoms are, what to do if you think you or someone else has it, what the treatments are and what causes it.", + "description": "Find out about amyloidosis, including what the symptoms are, when and where to get medical help, the causes and how it's treated.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T15:40:36+00:00", - "dateModified": "2023-01-12T12:26:14+00:00", - "lastReviewed": ["2023-01-11T01:00:00+00:00", "2026-01-11T01:00:00+00:00"], - "reviewDue": "2026-01-11T01:00:00+00:00", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T15:48:36+00:00", + "dateModified": "2025-02-28T12:50:27+00:00", + "lastReviewed": [ + "2023-08-23T00:00:00+00:00", + "2026-08-23T00:00:00+00:00" + ], + "reviewDue": "2026-08-23T00:00:00+00:00", "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/alcohol-poisoning/", - "name": "Alcohol poisoning" + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/amyloidosis/", + "name": "Amyloidosis" }, { - "description": "The Alexander technique teaches improved posture and movement, which is believed to help reduce and prevent problems caused by unhelpful habits.", + "description": "Read about anabolic steroids, which are prescription-only medicines that are sometimes taken without medical advice to increase muscle mass and improve athletic performance.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "WebPage", + "genre": [ + "Advice or information" + ], + "datePublished": "2017-10-17T15:50:01+00:00", + "dateModified": "2024-11-27T11:27:43+00:00", + "lastReviewed": [ + "2022-04-13T09:37:00+00:00", + "2025-04-13T09:37:00+00:00" + ], + "reviewDue": "2025-04-13T09:37:00+00:00", + "keywords": "", + "alternateName": [ + "Steroid misuse" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anabolic-steroid-misuse/", + "name": "Anabolic steroid misuse" + }, + { + "description": "Read about Angelman syndrome, a genetic disorder that affects the nervous system and causes severe physical and intellectual disability", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Treatment"], - "datePublished": "2017-10-17T16:16:34+00:00", - "dateModified": "2023-10-10T14:03:35+00:00", - "lastReviewed": ["2021-09-06T00:00:00+00:00", "2024-09-06T00:00:00+00:00"], - "reviewDue": "2024-09-06T00:00:00+00:00", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:28:17+00:00", + "dateModified": "2023-04-13T10:12:21+00:00", + "lastReviewed": [ + "2023-03-09T01:00:00+00:00", + "2026-03-09T01:00:00+00:00" + ], + "reviewDue": "2026-03-09T01:00:00+00:00", "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/alexander-technique/", - "name": "Alexander technique" + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/angelman-syndrome/", + "name": "Angelman syndrome" }, { - "description": "Read about alkaptonuria, or \"black urine disease\", a rare inherited disorder that can turn urine and parts of the body a dark colour and lead to other problems.", + "description": "Find out what to do if you’ve been bitten by an animal or person, including first aid advice, when to get medical help and what treatment you may need.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-24T10:34:28+00:00", - "dateModified": "2023-04-27T13:09:51+00:00", - "lastReviewed": ["2022-03-10T00:00:00+00:00", "2025-03-10T00:00:00+00:00"], - "reviewDue": "2025-03-10T00:00:00+00:00", + "genre": [ + "Accident or injury" + ], + "datePublished": "2017-10-17T15:53:13+00:00", + "dateModified": "2024-06-18T15:43:26+00:00", + "lastReviewed": [ + "2022-06-22T23:00:00+00:00", + "2025-06-22T23:00:00+00:00" + ], + "reviewDue": "2025-06-22T23:00:00+00:00", "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "alternateName": [ + "Bite (animal or human)", + "Cat bites", + "Dog bites", + "Human bites" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/alkaptonuria/", - "name": "Alkaptonuria" + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/animal-and-human-bites/", + "name": "Animal and human bites" }, { - "description": "Information about amputation, including why and how it's carried out, recovery and rehabilitation, prosthetics, stump care and possible complications.", + "description": "Find out about the symptoms of heart rhythm problems and what causes them, and when you should see a GP.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Procedure", "Treatment"], - "datePublished": "2017-10-17T15:47:57+00:00", - "dateModified": "2023-04-13T10:05:18+00:00", - "lastReviewed": ["2023-02-17T01:00:00+00:00", "2026-02-17T01:00:00+00:00"], - "reviewDue": "2026-02-17T01:00:00+00:00", + "genre": [ + "Condition" + ], + "datePublished": "2018-02-19T15:41:03+00:00", + "dateModified": "2025-04-08T14:24:30+00:00", + "lastReviewed": [ + "2024-10-28T00:00:00+00:00", + "2027-10-27T23:00:00+00:00" + ], + "reviewDue": "2027-10-27T23:00:00+00:00", "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "alternateName": [ + "Arrhythmia" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/amputation/", - "name": "Amputation" + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/arrhythmia/", + "name": "Heart rhythm problems (arrhythmia)" }, { - "description": "Find out about amyloidosis, including what the symptoms are, when and where to get medical help, the causes and how it's treated.", + "description": "Asbestosis is a serious lung condition caused by exposure to asbestos – a building material used mostly from the 1950s to the 1990s.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T15:48:36+00:00", - "dateModified": "2023-08-24T13:52:35+00:00", - "lastReviewed": ["2023-08-23T00:00:00+00:00", "2026-08-23T00:00:00+00:00"], - "reviewDue": "2026-08-23T00:00:00+00:00", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:02:11+00:00", + "dateModified": "2024-03-20T15:19:22+00:00", + "lastReviewed": [ + "2023-07-31T15:03:00+00:00", + "2026-07-31T00:00:00+00:00" + ], + "reviewDue": "2026-07-31T00:00:00+00:00", "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/amyloidosis/", - "name": "Amyloidosis" + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/asbestosis/", + "name": "Asbestosis" }, { - "description": "Read about anabolic steroids, which are prescription-only medicines that are sometimes taken without medical advice to increase muscle mass and improve athletic performance.", + "description": "Find out more about atherosclerosis, what the symptoms are, how you can help stop it getting worse, how it's treated and what causes it.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { - "@type": "WebPage", - "genre": ["Advice or information"], - "datePublished": "2017-10-17T15:50:01+00:00", - "dateModified": "2022-11-04T09:39:37+00:00", - "lastReviewed": ["2022-04-13T09:37:00+00:00", "2025-04-13T09:37:00+00:00"], - "reviewDue": "2025-04-13T09:37:00+00:00", + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T15:59:05+00:00", + "dateModified": "2024-11-27T11:55:44+00:00", + "lastReviewed": [ + "2023-01-30T01:00:00+00:00", + "2026-01-30T01:00:00+00:00" + ], + "reviewDue": "2026-01-30T01:00:00+00:00", "keywords": "", - "alternateName": ["Steroid misuse"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anabolic-steroid-misuse/", - "name": "Anabolic steroid misuse" + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/atherosclerosis/", + "name": "Atherosclerosis" + }, + { + "description": "Read about athlete's foot, a common fungal infection of the foot. Find out about the symptoms, what causes it, and how it's treated.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:02:41+00:00", + "dateModified": "2024-05-08T11:28:05+00:00", + "lastReviewed": [ + "2024-04-29T17:00:00+00:00", + "2027-04-29T17:00:00+00:00" + ], + "reviewDue": "2027-04-29T17:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/athletes-foot/", + "name": "Athlete's foot" + }, + { + "description": "Find out about auditory processing disorder, a condition where you have difficulty understanding sounds including spoken words.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:01:41+00:00", + "dateModified": "2025-03-24T11:59:49+00:00", + "lastReviewed": [ + "2023-07-31T00:00:00+00:00", + "2026-07-31T00:00:00+00:00" + ], + "reviewDue": "2026-07-31T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/auditory-processing-disorder/", + "name": "Auditory processing disorder (APD)" + }, + { + "description": "Read about balanitis, which is where the head of the penis is swollen and sore. Find out about the symptoms, causes, treatments and when to get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:07:52+00:00", + "dateModified": "2023-05-30T12:15:43+00:00", + "lastReviewed": [ + "2023-05-30T00:00:00+00:00", + "2026-05-30T00:00:00+00:00" + ], + "reviewDue": "2026-05-30T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/balanitis/", + "name": "Balanitis" + }, + { + "description": "Find out about bedbugs, including checking if you have them, how to get rid of them and how to treat bedbug bites.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:09:19+00:00", + "dateModified": "2023-11-08T13:24:51+00:00", + "lastReviewed": [ + "2022-08-01T23:00:00+00:00", + "2025-08-01T23:00:00+00:00" + ], + "reviewDue": "2025-08-01T23:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bedbugs/", + "name": "Bedbugs" + }, + { + "description": "Find out more about a black eye, which is bruising and swelling around your eye, usually caused by a blow.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Accident or injury" + ], + "datePublished": "2017-10-17T16:07:56+00:00", + "dateModified": "2024-06-18T15:49:03+00:00", + "lastReviewed": [ + "2023-07-27T00:00:00+00:00", + "2026-07-27T00:00:00+00:00" + ], + "reviewDue": "2026-07-27T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/black-eye/", + "name": "Black eye" }, { - "description": "Find out about different types of anaesthetics, how they work, and the potential side effects. Also, read about the role of the anaesthetist.", + "description": "Find out about the symptoms of an infected piercing, including what to do if your piercing is infected and how to keep your piercing clean to stop it getting infected.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Medicine"], - "datePublished": "2017-10-17T15:49:39+00:00", - "dateModified": "2021-11-18T15:26:25+00:00", - "lastReviewed": ["2021-09-23T00:00:00+00:00", "2024-09-23T00:00:00+00:00"], - "reviewDue": "2024-09-23T00:00:00+00:00", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:19:09+00:00", + "dateModified": "2023-04-25T09:59:10+00:00", + "lastReviewed": [ + "2023-04-18T00:00:00+00:00", + "2026-04-18T00:00:00+00:00" + ], + "reviewDue": "2026-04-18T00:00:00+00:00", "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anaesthesia/", - "name": "Anaesthesia" + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/infected-piercings/", + "name": "Infected piercings" }, { - "description": "Anal cancer is a rare type of cancer that affects the anus. Get information and advice about symptoms, causes and treatments.", + "description": "Read more about boils and carbuncles, which are red, painful lumps on the skin that are usually caused by a bacterial infection.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T16:08:41+00:00", - "dateModified": "2022-07-12T15:04:44+00:00", - "lastReviewed": ["2021-03-08T01:00:00+00:00", "2024-03-08T01:00:00+00:00"], - "reviewDue": "2024-03-08T01:00:00+00:00", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:16:23+00:00", + "dateModified": "2023-06-23T15:18:57+00:00", + "lastReviewed": [ + "2023-06-20T00:00:00+00:00", + "2026-06-20T00:00:00+00:00" + ], + "reviewDue": "2026-06-20T00:00:00+00:00", "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anal-cancer/", - "name": "Anal cancer" + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/boils/", + "name": "Boils" } ], "relatedLink": [ @@ -425,7 +802,7 @@ }, { "@type": "LinkRole", - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/?page=208", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/?page=29", "name": "Last Page", "description": "Link to Last Page", "linkRelationship": "Pagination" @@ -447,3 +824,4 @@ ], "webpage": "https://www.nhs.uk/conditions/" } + diff --git a/sandbox/responses/conditions-root-page-2.json b/sandbox/responses/conditions-root-page-2.json index 8faf618..9d394af 100644 --- a/sandbox/responses/conditions-root-page-2.json +++ b/sandbox/responses/conditions-root-page-2.json @@ -2,7 +2,10 @@ "@context": "http://schema.org", "@type": "MedicalWebPage", "name": "Health A to Z", - "copyrightHolder": { "name": "Crown Copyright", "@type": "Organization" }, + "copyrightHolder": { + "name": "Crown Copyright", + "@type": "Organization" + }, "license": "https://developer.api.nhs.uk/terms", "author": { "url": "https://www.nhs.uk", @@ -11,12 +14,16 @@ "@type": "Organization", "name": "NHS website" }, - "about": { "@type": "WebPage", "name": "Health A to Z", "alternateName": "" }, - "description": "", + "about": { + "@type": "WebPage", + "name": "Health A to Z", + "alternateName": "" + }, + "description": "Find out about conditions, symptoms and treatments, including what to do and when to get help.", "url": "https://api.service.nhs.uk/nhs-website-content/conditions/", "genre": [], "keywords": "", - "dateModified": "2021-11-18T15:26:06+00:00", + "dateModified": "2025-01-14T11:49:05+00:00", "breadcrumb": { "@context": "http://schema.org", "@type": "BreadcrumbList", @@ -24,392 +31,747 @@ { "@type": "ListItem", "position": 0, - "item": { "@id": "https://api.service.nhs.uk/nhs-website-content/conditions/", "name": "Health A to Z", "genre": [] } + "item": { + "@id": "https://api.service.nhs.uk/nhs-website-content/conditions/", + "name": "Health A to Z", + "genre": [] + } } ] }, "contentSubTypes": [], "significantLink": [ { - "description": "Find out what causes anal pain, what you can do to ease the pain and when to get medical help.", + "description": "Read more about boils and carbuncles, which are red, painful lumps on the skin that are usually caused by a bacterial infection.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:16:23+00:00", + "dateModified": "2023-06-23T15:18:57+00:00", + "lastReviewed": [ + "2023-06-20T00:00:00+00:00", + "2026-06-20T00:00:00+00:00" + ], + "reviewDue": "2026-06-20T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/boils/", + "name": "Boils" + }, + { + "description": "Find out about botulism, a rare but life-threatening condition caused by toxins produced by Clostridium botulinum bacteria.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:12:58+00:00", + "dateModified": "2022-10-06T19:25:49+00:00", + "lastReviewed": [ + "2022-10-02T23:00:00+00:00", + "2025-10-02T23:00:00+00:00" + ], + "reviewDue": "2025-10-02T23:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/botulism/", + "name": "Botulism" + }, + { + "description": "Find out about bowel (colonic) polyps, which are small growths on the inner lining of the bowel. There are often no symptoms but should usually be removed.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Symptom"], - "datePublished": "2017-10-17T15:49:36+00:00", - "dateModified": "2022-03-16T09:04:13+00:00", - "lastReviewed": ["2022-03-15T01:00:00+00:00", "2025-03-15T01:00:00+00:00"], - "reviewDue": "2025-03-15T01:00:00+00:00", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:11:55+00:00", + "dateModified": "2023-08-02T12:51:35+00:00", + "lastReviewed": [ + "2023-07-28T09:38:00+00:00", + "2026-07-28T09:38:00+00:00" + ], + "reviewDue": "2026-07-28T09:38:00+00:00", "keywords": "", - "alternateName": ["Proctalgia"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anal-pain/", - "name": "Anal pain" + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bowel-polyps/", + "name": "Bowel polyps" }, { - "description": "Read about Angelman syndrome, a genetic disorder that affects the nervous system and causes severe physical and intellectual disability", + "description": "Find out about the symptoms, causes and treatments for Bowen's disease, a very early and easily treatable form of skin cancer.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T16:28:17+00:00", - "dateModified": "2023-04-13T10:12:21+00:00", - "lastReviewed": ["2023-03-09T01:00:00+00:00", "2026-03-09T01:00:00+00:00"], - "reviewDue": "2026-03-09T01:00:00+00:00", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:18:43+00:00", + "dateModified": "2024-09-11T13:18:53+00:00", + "lastReviewed": [ + "2022-10-06T00:00:00+00:00", + "2025-10-06T00:00:00+00:00" + ], + "reviewDue": "2025-10-06T00:00:00+00:00", "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/angelman-syndrome/", - "name": "Angelman syndrome" + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bowens-disease/", + "name": "Bowen's disease" }, { - "description": "Find out what to do if you\u2019ve been bitten by an animal or person, including first aid advice, when to get medical help and what treatment you may need.", + "description": "A brain tumour is a growth of cells in the brain that multiplies in an abnormal, uncontrollable way. Find out about its symptoms and how it's treated.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Accident or injury"], - "datePublished": "2017-10-17T15:53:13+00:00", - "dateModified": "2023-08-08T09:25:16+00:00", - "lastReviewed": ["2022-06-22T23:00:00+00:00", "2025-06-22T23:00:00+00:00"], - "reviewDue": "2025-06-22T23:00:00+00:00", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:15:16+00:00", + "dateModified": "2025-02-28T12:50:41+00:00", + "lastReviewed": [ + "2023-06-11T23:00:00+00:00", + "2026-06-11T23:00:00+00:00" + ], + "reviewDue": "2026-06-11T23:00:00+00:00", "keywords": "", - "alternateName": ["Dog bites", "Human bites", "Bite (animal or human)", "Cat bites"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/animal-and-human-bites/", - "name": "Animal and human bites" + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/brain-tumours/", + "name": "Brain tumours" }, { - "description": "Find out about antacids, a type of medicine used to control the acid levels in the stomach.", + "description": "Find out about breath-holding in babies and children, including when to get medical help, what happens during an episode and what to do.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Medicine"], - "datePublished": "2017-10-17T15:54:58+00:00", - "dateModified": "2023-04-13T14:41:26+00:00", - "lastReviewed": ["2023-03-24T10:33:00+00:00", "2026-03-24T10:33:00+00:00"], - "reviewDue": "2026-03-24T10:33:00+00:00", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:48:03+00:00", + "dateModified": "2023-03-06T08:05:09+00:00", + "lastReviewed": [ + "2023-03-02T00:00:00+00:00", + "2026-03-02T00:00:00+00:00" + ], + "reviewDue": "2026-03-02T00:00:00+00:00", "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/antacids/", - "name": "Antacids" + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/breath-holding-in-babies-and-children/", + "name": "Breath-holding in babies and children" }, { - "description": "Antihistamines are a type of medicine often used to treat allergies. Find out about the different types, who can take them and what side effects they can cause.", + "description": "Find out how to tell if your ankle is broken (fractured) and when to get medical advice, plus how a broken ankle is treated and how long it takes to heal.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Medicine"], - "datePublished": "2017-10-17T15:57:58+00:00", - "dateModified": "2023-05-18T14:32:06+00:00", - "lastReviewed": ["2023-05-15T23:00:00+00:00", "2026-05-15T23:00:00+00:00"], - "reviewDue": "2026-05-15T23:00:00+00:00", + "genre": [ + "Accident or injury" + ], + "datePublished": "2017-10-17T16:28:23+00:00", + "dateModified": "2024-06-19T08:24:50+00:00", + "lastReviewed": [ + "2022-03-11T01:00:00+00:00", + "2025-03-11T01:00:00+00:00" + ], + "reviewDue": "2025-03-11T01:00:00+00:00", "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/antihistamines/", - "name": "Antihistamines" + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/broken-ankle/", + "name": "Broken ankle" }, { - "description": "Read about anxiety disorders in children and teenagers, with links to other useful resources.", + "description": "Find out how to tell if you have a broken arm or wrist, where to get medical help and how long it takes to heal.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T16:28:08+00:00", - "dateModified": "2021-11-18T15:26:34+00:00", - "lastReviewed": ["2020-12-01T00:00:00+00:00", "2023-12-01T00:00:00+00:00"], - "reviewDue": "2023-12-01T00:00:00+00:00", + "genre": [ + "Condition", + "Accident or injury" + ], + "datePublished": "2017-10-17T16:31:40+00:00", + "dateModified": "2024-06-18T16:36:10+00:00", + "lastReviewed": [ + "2023-05-26T14:54:00+00:00", + "2026-05-26T14:54:00+00:00" + ], + "reviewDue": "2026-05-26T14:54:00+00:00", "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anxiety-disorders-in-children/", - "name": "Anxiety disorders in children" + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/broken-arm-or-wrist/", + "name": "Broken arm or wrist" }, { - "description": "Arrhythmias or heart rhythm problems are experienced by more than 2 million people in the UK. Most people with an abnormal heart rhythm can lead a normal life if it is properly diagnosed.", + "description": "Find out how to tell if you have a broken collarbone, where to get medical help and how long it takes to heal.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2018-02-19T15:41:03+00:00", - "dateModified": "2023-10-20T08:46:13+00:00", - "lastReviewed": ["2021-09-14T00:00:00+00:00", "2024-09-14T00:00:00+00:00"], - "reviewDue": "2024-09-14T00:00:00+00:00", + "genre": [ + "Condition", + "Accident or injury" + ], + "datePublished": "2017-10-17T17:04:08+00:00", + "dateModified": "2024-02-27T17:35:26+00:00", + "lastReviewed": [ + "2023-08-01T23:00:00+00:00", + "2026-08-01T23:00:00+00:00" + ], + "reviewDue": "2026-08-01T23:00:00+00:00", "keywords": "", - "alternateName": ["Heart rhythm problems"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/arrhythmia/", - "name": "Arrhythmia" + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/broken-collarbone/", + "name": "Broken collarbone" }, { - "description": "Arterial thrombosis is a blood clot in an artery. Find out why it happens and how it is treated.", + "description": "Find out how to tell if you have a broken finger or thumb, what you should do, and how long it takes to heal.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T15:56:14+00:00", - "dateModified": "2023-08-07T07:30:32+00:00", - "lastReviewed": ["2020-01-09T00:00:00+00:00", "2023-01-09T00:00:00+00:00"], - "reviewDue": "2023-01-09T00:00:00+00:00", + "genre": [ + "Accident or injury" + ], + "datePublished": "2017-10-17T16:33:32+00:00", + "dateModified": "2024-06-19T08:24:09+00:00", + "lastReviewed": [ + "2022-03-23T01:00:00+00:00", + "2025-03-23T01:00:00+00:00" + ], + "reviewDue": "2025-03-23T01:00:00+00:00", "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/arterial-thrombosis/", - "name": "Arterial thrombosis" + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/broken-finger/", + "name": "Broken finger or thumb" }, { - "description": "Find out about intrauterine (artificial) insemination, or IUI, a fertility treatment that involves directly inserting sperm into a woman's womb.", + "description": "Read about the signs of a broken leg, what you should do if you think someone has broken their leg, how a broken leg is treated and how long it takes to recover.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Procedure", "Treatment"], - "datePublished": "2017-10-17T16:07:35+00:00", - "dateModified": "2023-10-09T07:35:09+00:00", - "lastReviewed": ["2020-03-10T00:00:00+00:00", "2023-03-10T00:00:00+00:00"], - "reviewDue": "2023-03-10T00:00:00+00:00", + "genre": [ + "Accident or injury" + ], + "datePublished": "2017-10-18T08:55:52+00:00", + "dateModified": "2024-05-23T16:35:40+00:00", + "lastReviewed": [ + "2021-09-15T00:00:00+00:00", + "2024-09-15T00:00:00+00:00" + ], + "reviewDue": "2024-09-15T00:00:00+00:00", "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/artificial-insemination/", - "name": "Intrauterine insemination (IUI)" + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/broken-leg/", + "name": "Broken leg" }, { - "description": "Asbestosis is a serious lung condition caused by exposure to asbestos \u2013 a building material used mostly from the 1950s to the 1990s.", + "description": "Find out about the signs of a broken nose, how to look after your nose at home and when you should seek medical advice.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T16:02:11+00:00", - "dateModified": "2023-10-03T12:28:12+00:00", - "lastReviewed": ["2023-07-31T15:03:00+00:00", "2026-07-31T00:00:00+00:00"], - "reviewDue": "2026-07-31T00:00:00+00:00", + "genre": [ + "Condition", + "Accident or injury" + ], + "datePublished": "2017-10-17T17:22:01+00:00", + "dateModified": "2024-06-18T16:39:57+00:00", + "lastReviewed": [ + "2023-08-17T15:41:00+00:00", + "2026-08-17T15:41:00+00:00" + ], + "reviewDue": "2026-08-17T15:41:00+00:00", "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/asbestosis/", - "name": "Asbestosis" + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/broken-nose/", + "name": "Broken nose" }, { - "description": "Find out about aspirin, including what it's used for, who can take it, and what the main side effects are.", + "description": "Find out about how long it takes injured ribs to heal, how to look after yourself until you're feeling better, and when you should get medical advice.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Medicine"], - "datePublished": "2017-10-17T16:05:29+00:00", - "dateModified": "2021-11-18T15:26:40+00:00", - "lastReviewed": ["2016-05-06T00:00:00+00:00", "2019-05-01T00:00:00+00:00"], - "reviewDue": "2019-05-01T00:00:00+00:00", + "genre": [ + "Accident or injury" + ], + "datePublished": "2017-10-17T16:44:28+00:00", + "dateModified": "2024-06-18T16:41:16+00:00", + "lastReviewed": [ + "2024-01-10T14:30:00+00:00", + "2027-01-10T14:30:00+00:00" + ], + "reviewDue": "2027-01-10T14:30:00+00:00", "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/aspirin/", - "name": "Aspirin" + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/broken-or-bruised-ribs/", + "name": "Broken or bruised ribs" }, { - "description": "Find out more about atherosclerosis, what the symptoms are, how you can help stop it getting worse, how it's treated and what causes it.", + "description": "Find out about the symptoms of a broken toe, when you should get medical advice, and how to look after it at home.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T15:59:05+00:00", - "dateModified": "2023-04-24T14:20:31+00:00", - "lastReviewed": ["2023-01-30T01:00:00+00:00", "2026-01-30T01:00:00+00:00"], - "reviewDue": "2026-01-30T01:00:00+00:00", + "genre": [ + "Condition", + "Accident or injury" + ], + "datePublished": "2017-10-17T16:35:50+00:00", + "dateModified": "2024-06-19T08:23:00+00:00", + "lastReviewed": [ + "2022-05-05T23:00:00+00:00", + "2025-05-05T23:00:00+00:00" + ], + "reviewDue": "2025-05-05T23:00:00+00:00", "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/atherosclerosis/", - "name": "Atherosclerosis" + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/broken-toe/", + "name": "Broken toe" }, { - "description": "Read about athlete's foot, a common fungal infection of the foot. Find out about the symptoms, what causes it, and how it's treated.", + "description": "Find out about bronchitis, what the symptoms are, how you can ease the symptoms, where to get help, and how it is treated.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T16:02:41+00:00", - "dateModified": "2023-05-17T08:49:09+00:00", - "lastReviewed": ["2021-06-08T17:00:00+00:00", "2024-06-08T17:00:00+00:00"], - "reviewDue": "2024-06-08T17:00:00+00:00", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:40:47+00:00", + "dateModified": "2025-02-24T14:56:53+00:00", + "lastReviewed": [ + "2022-12-19T01:00:00+00:00", + "2025-12-19T01:00:00+00:00" + ], + "reviewDue": "2025-12-19T01:00:00+00:00", "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/athletes-foot/", - "name": "Athlete's foot" + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bronchitis/", + "name": "Bronchitis" }, { - "description": "Find out about auditory processing disorder, a condition where you have difficulty understanding sounds including spoken words.", + "description": "Find out about brucellosis, including symptoms, what to do if you have it and treatments.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T16:01:41+00:00", - "dateModified": "2023-08-02T11:28:29+00:00", - "lastReviewed": ["2023-07-31T00:00:00+00:00", "2026-07-31T00:00:00+00:00"], - "reviewDue": "2026-07-31T00:00:00+00:00", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:54:59+00:00", + "dateModified": "2023-10-11T12:22:12+00:00", + "lastReviewed": [ + "2023-10-04T00:00:00+00:00", + "2026-10-04T00:00:00+00:00" + ], + "reviewDue": "2026-10-04T00:00:00+00:00", "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/auditory-processing-disorder/", - "name": "Auditory processing disorder (APD)" + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/brucellosis/", + "name": "Brucellosis" }, { - "description": "Read about balanitis, which is where the head of the penis is swollen and sore. Find out about the symptoms, causes, treatments and when to get medical help.", + "description": "Find out about Brugada syndrome, including what the symptoms are, when and where to get medical help, the causes and how it's treated.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T16:07:52+00:00", - "dateModified": "2023-05-30T12:15:43+00:00", - "lastReviewed": ["2023-05-30T00:00:00+00:00", "2026-05-30T00:00:00+00:00"], - "reviewDue": "2026-05-30T00:00:00+00:00", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:48:13+00:00", + "dateModified": "2023-12-15T12:21:23+00:00", + "lastReviewed": [ + "2023-12-13T01:00:00+00:00", + "2026-12-13T01:00:00+00:00" + ], + "reviewDue": "2026-12-13T01:00:00+00:00", "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/balanitis/", - "name": "Balanitis" + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/brugada-syndrome/", + "name": "Brugada syndrome" }, { - "description": "Read about having a barium enema, including what you need to do to prepare, what happens during the test, and what happens afterwards.", + "description": "Find out about carbon monoxide poisoning, what the symptoms are, what to do if you have it, what causes it, how it is treated, and how to prevent it.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Procedure", "Test"], - "datePublished": "2017-10-17T16:09:38+00:00", - "dateModified": "2023-04-04T10:12:03+00:00", - "lastReviewed": ["2022-05-13T00:00:00+00:00", "2025-05-13T00:00:00+00:00"], - "reviewDue": "2025-05-13T00:00:00+00:00", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T17:06:34+00:00", + "dateModified": "2024-06-18T16:57:08+00:00", + "lastReviewed": [ + "2022-07-01T00:00:00+00:00", + "2025-07-01T00:00:00+00:00" + ], + "reviewDue": "2025-07-01T00:00:00+00:00", "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/barium-enema/", - "name": "Barium enema" + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/carbon-monoxide-poisoning/", + "name": "Carbon monoxide poisoning" }, { - "description": "Find out about bedbugs, including checking if you have them, how to get rid of them and how to treat bedbug bites.", + "description": "Find out about cardiomyopathy, a general term for diseases of the heart muscle, where the walls of the heart chambers have become stretched, thickened or stiff.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T16:09:19+00:00", - "dateModified": "2022-08-04T13:49:39+00:00", - "lastReviewed": ["2022-08-01T23:00:00+00:00", "2025-08-01T23:00:00+00:00"], - "reviewDue": "2025-08-01T23:00:00+00:00", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T17:26:05+00:00", + "dateModified": "2024-04-08T11:55:41+00:00", + "lastReviewed": [ + "2023-05-24T23:00:00+00:00", + "2026-05-24T23:00:00+00:00" + ], + "reviewDue": "2026-05-24T23:00:00+00:00", "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bedbugs/", - "name": "Bedbugs" + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/cardiomyopathy/", + "name": "Cardiomyopathy" }, { - "description": "Read about a group of medicines called beta blockers, including what they're used for, side effects and what to do if you miss a dose or take too much.", + "description": "Find out what cardiovascular disease (CVD) is, what problems it can cause, why it happens and how you can reduce your risk.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Medicine"], - "datePublished": "2017-10-17T16:13:30+00:00", - "dateModified": "2023-02-17T16:57:13+00:00", - "lastReviewed": ["2022-12-02T01:00:00+00:00", "2025-12-02T01:00:00+00:00"], - "reviewDue": "2025-12-02T01:00:00+00:00", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T18:19:54+00:00", + "dateModified": "2025-02-20T13:30:42+00:00", + "lastReviewed": [ + "2022-04-22T00:00:00+00:00", + "2025-04-22T00:00:00+00:00" + ], + "reviewDue": "2025-04-22T00:00:00+00:00", "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/beta-blockers/", - "name": "Beta blockers" + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/cardiovascular-disease/", + "name": "Cardiovascular disease" }, { - "description": "Find out more about a black eye, which is bruising and swelling around your eye, usually caused by a blow.", + "description": "Find out about cataracts in adults including what the symptoms are and how treatment with surgery can help.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Accident or injury"], - "datePublished": "2017-10-17T16:07:56+00:00", - "dateModified": "2023-08-04T08:10:00+00:00", - "lastReviewed": ["2023-07-27T00:00:00+00:00", "2026-07-27T00:00:00+00:00"], - "reviewDue": "2026-07-27T00:00:00+00:00", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T18:46:58+00:00", + "dateModified": "2025-03-18T13:23:59+00:00", + "lastReviewed": [ + "2025-03-12T10:04:00+00:00", + "2028-03-12T10:04:00+00:00" + ], + "reviewDue": "2028-03-12T10:04:00+00:00", "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "alternateName": [ + "Cataracts (age-related)" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/black-eye/", - "name": "Black eye" + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/cataracts/", + "name": "Cataracts in adults" }, { - "description": "Read about blood clots, their symptoms, when to get help and how to prevent them.", + "description": "Find out about catarrh, including what the symptoms are, what you can do to help ease it, when to get medical help, and treatments that may be recommended.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-18T08:20:04+00:00", - "dateModified": "2023-04-26T15:02:30+00:00", - "lastReviewed": ["2021-02-16T00:00:00+00:00", "2024-02-16T00:00:00+00:00"], - "reviewDue": "2024-02-16T00:00:00+00:00", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-18T07:05:13+00:00", + "dateModified": "2025-04-11T16:48:08+00:00", + "lastReviewed": [ + "2022-11-17T00:00:00+00:00", + "2025-11-17T00:00:00+00:00" + ], + "reviewDue": "2025-11-17T00:00:00+00:00", "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/blood-clots/", - "name": "Blood clots" + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/catarrh/", + "name": "Catarrh" }, { - "description": "Find out about blood groups. There are 4 main blood groups \u2013 A, B, AB and O.", + "description": "Find out what a cavernoma is, what symptoms it can cause, the importance of closely monitoring symptoms, how it's diagnosed and treatment options.", "linkRelationship": "Result", "@type": "LinkRole", "articleStatus": "published", "mainEntityOfPage": { - "@type": "WebPage", - "genre": ["Advice or information"], - "datePublished": "2017-10-17T16:22:10+00:00", - "dateModified": "2023-05-17T11:24:01+00:00", - "lastReviewed": ["2023-05-10T08:40:00+00:00", "2026-05-10T08:40:00+00:00"], - "reviewDue": "2026-05-10T08:40:00+00:00", + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-18T06:59:14+00:00", + "dateModified": "2024-11-27T12:25:26+00:00", + "lastReviewed": [ + "2022-11-04T00:00:00+00:00", + "2025-11-04T00:00:00+00:00" + ], + "reviewDue": "2025-11-04T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/cavernoma/", + "name": "Cavernoma" + }, + { + "description": "Find out about Clostridium difficile (C. diff), including what the symptoms are, who's most at risk and how it's treated.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-18T07:09:27+00:00", + "dateModified": "2024-04-11T16:14:46+00:00", + "lastReviewed": [ + "2022-02-08T00:00:00+00:00", + "2025-02-08T00:00:00+00:00" + ], + "reviewDue": "2025-02-08T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/c-difficile/", + "name": "Clostridium difficile (C. diff) infection" + }, + { + "description": "NHS information about Charles Bonnet syndrome, including symptoms, causes and treatments.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-18T08:00:37+00:00", + "dateModified": "2023-08-22T10:36:07+00:00", + "lastReviewed": [ + "2022-11-17T00:00:00+00:00", + "2025-11-17T00:00:00+00:00" + ], + "reviewDue": "2025-11-17T00:00:00+00:00", "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/blood-groups/", - "name": "Blood groups" + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/charles-bonnet-syndrome/", + "name": "Charles Bonnet syndrome" } ], "relatedLink": [ @@ -422,7 +784,7 @@ }, { "@type": "LinkRole", - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/?page=208", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/?page=29", "name": "Last Page", "description": "Link to Last Page", "linkRelationship": "Pagination" diff --git a/sandbox/responses/conditions-root-page-29.json b/sandbox/responses/conditions-root-page-29.json new file mode 100644 index 0000000..aadd394 --- /dev/null +++ b/sandbox/responses/conditions-root-page-29.json @@ -0,0 +1,106 @@ +{ + "@context": "http://schema.org", + "@type": "MedicalWebPage", + "name": "Conditions A to Z", + "copyrightHolder": { + "name": "Crown Copyright", + "@type": "Organization" + }, + "license": "https://developer.api.nhs.uk/terms", + "author": { + "url": "https://www.nhs.uk", + "logo": "https://assets.nhs.uk/nhsuk-cms/images/nhs-attribution.width-510.png", + "email": "nhswebsite.servicedesk@nhs.net", + "@type": "Organization", + "name": "NHS website" + }, + "about": { + "@type": "WebPage", + "name": "Conditions A to Z", + "alternateName": "" + }, + "description": "Find out about health conditions, including their symptoms and how they're treated.", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/", + "genre": [], + "keywords": "", + "dateModified": "2025-04-16T13:49:43+00:00", + "breadcrumb": { + "@context": "http://schema.org", + "@type": "BreadcrumbList", + "itemListElement": [ + { + "@type": "ListItem", + "position": 0, + "item": { + "@id": "https://api.service.nhs.uk/nhs-website-content/conditions/", + "name": "Conditions A to Z", + "genre": [] + } + } + ] + }, + "contentSubTypes": [], + "significantLink": [ + { + "description": "Read about anxiety disorders in children and teenagers, with links to other useful resources.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "WebPage", + "genre": [ + "Advice or information" + ], + "datePublished": "2021-02-04T12:39:01+00:00", + "dateModified": "2025-03-24T13:44:27+00:00", + "lastReviewed": [ + "2023-12-15T00:00:00+00:00", + "2026-12-15T00:00:00+00:00" + ], + "reviewDue": "2026-12-15T00:00:00+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/mental-health/children-and-young-adults/advice-for-parents/anxiety-disorders-in-children/", + "name": "Anxiety disorders in children" + }, + { + "description": "", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [], + "datePublished": "2023-07-04T13:11:42+00:00", + "dateModified": "2025-03-24T14:00:43+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/womens-health/", + "name": "Women's health" + } + ], + "relatedLink": [ + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/?page=1", + "name": "First Page", + "description": "Link to First Page", + "linkRelationship": "Pagination" + }, + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/?page=29", + "name": "Last Page", + "description": "Link to Last Page", + "linkRelationship": "Pagination" + }, + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/?page=29", + "name": "Self", + "description": "Link to nhs.uk Page", + "linkRelationship": "Self" + } + ], + "webpage": "https://www.nhs.uk/conditions/" +} diff --git a/sandbox/responses/conditions-root-page-70.json b/sandbox/responses/conditions-root-page-70.json deleted file mode 100644 index 8c8dda9..0000000 --- a/sandbox/responses/conditions-root-page-70.json +++ /dev/null @@ -1,175 +0,0 @@ -{ - "@context": "http://schema.org", - "@type": "MedicalWebPage", - "name": "Health A to Z", - "copyrightHolder": { "name": "Crown Copyright", "@type": "Organization" }, - "license": "https://developer.api.nhs.uk/terms", - "author": { - "url": "https://www.nhs.uk", - "logo": "https://assets.nhs.uk/nhsuk-cms/images/nhs-attribution.width-510.png", - "email": "nhswebsite.servicedesk@nhs.net", - "@type": "Organization", - "name": "NHS website" - }, - "about": { "@type": "WebPage", "name": "Health A to Z", "alternateName": "" }, - "description": "", - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/", - "genre": [], - "keywords": "", - "dateModified": "2021-11-18T15:26:06+00:00", - "breadcrumb": { - "@context": "http://schema.org", - "@type": "BreadcrumbList", - "itemListElement": [ - { - "@type": "ListItem", - "position": 0, - "item": { "@id": "https://api.service.nhs.uk/nhs-website-content/conditions/", "name": "Health A to Z", "genre": [] } - } - ] - }, - "contentSubTypes": [], - "significantLink": [ - { - "description": "Trigger finger is a condition that affects 1 or more of the hand's tendons, making it difficult to bend the affected finger or thumb.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-23T14:54:50+00:00", - "dateModified": "2022-03-25T15:04:07+00:00", - "lastReviewed": ["2022-03-18T01:00:00+00:00", "2025-03-18T02:00:00+00:00"], - "reviewDue": "2025-03-18T02:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/trigger-finger/", - "name": "Trigger finger" - }, - { - "description": "NHS information about tuberculosis (TB), including symptoms, when to get medical help, treatments and causes.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-23T14:59:19+00:00", - "dateModified": "2023-04-25T08:00:28+00:00", - "lastReviewed": ["2023-04-20T01:00:00+00:00", "2026-04-20T01:00:00+00:00"], - "reviewDue": "2026-04-20T01:00:00+00:00", - "keywords": "", - "alternateName": ["TB"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/tuberculosis-tb/", - "name": "Tuberculosis (TB)" - }, - { - "description": "Tuberous sclerosis, also known as tuberous sclerosis complex, is a rare genetic condition that causes mainly non-cancerous (benign) tumours to develop in different parts of the body.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-23T14:48:51+00:00", - "dateModified": "2023-08-16T13:41:00+00:00", - "lastReviewed": ["2021-08-09T00:00:00+00:00", "2024-08-09T00:00:00+00:00"], - "reviewDue": "2024-08-09T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/tuberous-sclerosis/", - "name": "Tuberous sclerosis" - }, - { - "description": "Turner syndrome is a genetic disorder that only affects females. It causes a wide range of symptoms and some distinctive characteristics.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2018-02-26T13:36:42+00:00", - "dateModified": "2022-10-10T09:16:31+00:00", - "lastReviewed": ["2021-07-07T00:00:00+00:00", "2024-07-07T00:00:00+00:00"], - "reviewDue": "2024-07-07T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/turner-syndrome/", - "name": "Turner syndrome" - }, - { - "description": "Read about type 2 diabetes, a condition that causes a person's blood sugar level to become too high.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-20T16:08:01+00:00", - "dateModified": "2022-06-28T13:49:41+00:00", - "lastReviewed": ["2020-08-18T00:00:00+00:00", "2023-08-18T00:00:00+00:00"], - "reviewDue": "2023-08-18T00:00:00+00:00", - "keywords": "", - "alternateName": ["Diabetes (type 2)"], - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/type-2-diabetes/", - "name": "Type 2 diabetes" - }, - { - "description": "Find out about typhoid fever, what causes it, how it's treated and what you can do to protect yourself if you're travelling to a high-risk area.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2018-04-03T12:10:49+00:00", - "dateModified": "2023-10-20T09:27:44+00:00", - "lastReviewed": ["2021-09-20T00:00:00+00:00", "2024-09-20T00:00:00+00:00"], - "reviewDue": "2024-09-20T00:00:00+00:00", - "keywords": "", - "code": [{ "@type": "MedicalCode", "codeValue": "", "codingSystem": "SNOMED-CT" }] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/typhoid-fever/", - "name": "Typhoid fever" - } - ], - "relatedLink": [ - { - "@type": "LinkRole", - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/?page=1", - "name": "First Page", - "description": "Link to First Page", - "linkRelationship": "Pagination" - }, - { - "@type": "LinkRole", - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/?page=208", - "name": "Last Page", - "description": "Link to Last Page", - "linkRelationship": "Pagination" - }, - { - "@type": "LinkRole", - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/?page=70", - "name": "Self", - "description": "Link to nhs.uk Page", - "linkRelationship": "Self" - }, - { - "@type": "LinkRole", - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/?page=71", - "name": "Next Page", - "description": "Link to Next Page", - "linkRelationship": "Pagination" - } - ], - "webpage": "https://www.nhs.uk/conditions/" -} diff --git a/sandbox/responses/conditions-zika-no-params.json b/sandbox/responses/conditions-zika-no-params.json index e15cb72..c1f882d 100644 --- a/sandbox/responses/conditions-zika-no-params.json +++ b/sandbox/responses/conditions-zika-no-params.json @@ -2,436 +2,479 @@ "@context": "http://schema.org", "@type": "MedicalWebPage", "name": "Zika virus", - "copyrightHolder": { "name": "Crown Copyright", "@type": "Organization" }, + "copyrightHolder": { + "name": "Crown Copyright", + "@type": "Organization" + }, "license": "https://developer.api.nhs.uk/terms", "author": { - "url": "https://www.nhs.uk", - "logo": "https://assets.nhs.uk/nhsuk-cms/images/nhs-attribution.width-510.png", - "email": "nhswebsite.servicedesk@nhs.net", - "@type": "Organization", - "name": "NHS website" + "url": "https://www.nhs.uk", + "logo": "https://assets.nhs.uk/nhsuk-cms/images/nhs-attribution.width-510.png", + "email": "nhswebsite.servicedesk@nhs.net", + "@type": "Organization", + "name": "NHS website" + }, + "about": { + "@type": "WebPage", + "name": "Zika virus", + "alternateName": "" }, - "about": { "@type": "WebPage", "name": "Zika virus", "alternateName": "" }, "description": "Find out more about Zika virus, including where it's found, how you catch it and what the symptoms are.", "url": "https://api.service.nhs.uk/nhs-website-content/conditions/zika/", - "genre": ["Condition"], + "genre": [ + "Condition" + ], "keywords": [], "dateModified": "2022-02-23T15:41:03+00:00", - "lastReviewed": ["2022-02-18T00:00:00+00:00", "2025-02-18T00:00:00+00:00"], + "lastReviewed": [ + "2022-02-18T00:00:00+00:00", + "2025-02-18T00:00:00+00:00" + ], "breadcrumb": { - "@context": "http://schema.org", - "@type": "BreadcrumbList", - "itemListElement": [ + "@context": "http://schema.org", + "@type": "BreadcrumbList", + "itemListElement": [ + { + "@type": "ListItem", + "position": 0, + "item": { + "@id": "https://api.service.nhs.uk/nhs-website-content/conditions/", + "name": "Health A to Z", + "genre": [] + } + }, + { + "@type": "ListItem", + "position": 1, + "item": { + "@id": "https://api.service.nhs.uk/nhs-website-content/conditions/zika/", + "name": "Zika virus", + "genre": [ + "Condition" + ] + } + } + ] + }, + "hasPart": [ { - "@type": "ListItem", - "position": 0, - "item": { "@id": "https://api.service.nhs.uk/nhs-website-content/conditions/", "name": "Health A to Z", "genre": [] } + "@type": "HealthTopicContent", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/zika/#causes", + "hasHealthAspect": "http://schema.org/CausesHealthAspect", + "headline": "Check if you're at risk of Zika virus", + "description": "Zika virus is usually caught by being bitten by an infected mosquito. There's also a very small risk of it being passed on through sex.", + "hasPart": [ + { + "@type": "WebPageElement", + "headline": "", + "text": "

Zika virus is usually caught by being bitten by an infected mosquito.

Very rarely, you can get the virus by having sex with someone who has it.

Zika virus is found in parts of:

The type of mosquitoes that carry Zika virus are not found in the UK.

" + } + ] }, { - "@type": "ListItem", - "position": 1, - "item": { - "@id": "https://api.service.nhs.uk/nhs-website-content/conditions/zika/", - "name": "Zika virus", - "genre": ["Condition"] - } - } - ] - }, - "hasPart": [ - { - "@type": "HealthTopicContent", - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/zika/#causes", - "hasHealthAspect": "http://schema.org/CausesHealthAspect", - "headline": "Check if you're at risk of Zika virus", - "description": "Zika virus is usually caught by being bitten by an infected mosquito. There's also a very small risk of it being passed on through sex.", - "hasPart": [ - { - "@type": "WebPageElement", - "headline": "", - "text": "

Zika virus is usually caught by being bitten by an infected mosquito.

Very rarely, you can get the virus by having sex with someone who has it.

Zika virus is found in parts of:

The type of mosquitoes that carry Zika virus are not found in the UK.

" - } - ] - }, - { - "@type": "HealthTopicContent", - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/zika/#prevention", - "hasHealthAspect": "http://schema.org/PreventionHealthAspect", - "headline": "How to avoid Zika virus", - "description": "You can reduce your risk of getting Zika virus by avoiding mosquito bites. For example, use insect repellent and sleep under a mosquito net.", - "hasPart": [ - { - "@type": "WebPageElement", - "headline": "", - "text": "

If you're travelling to an area where Zika virus is found, get advice from a GP, nurse, pharmacist or travel clinic before you go.

It's best to do this at least 4 to 6 weeks before you travel, but you can still get advice at the last minute if you need to.

There are things you can do to avoid getting Zika virus while you're travelling.

" - }, - { - "@type": "WebPageElement", - "headline": "Do", - "text": "" - } - ] - }, - { - "@type": "HealthTopicContent", - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/zika/#symptoms", - "hasHealthAspect": "http://schema.org/SymptomsHealthAspect", - "headline": "Symptoms of Zika virus", - "description": "Zika virus often has no symptoms. Some people get symptoms like a rash, high temperature, headache or muscle aches for a few days.", - "hasPart": [ - { - "@type": "WebPageElement", - "headline": "", - "text": "

Most people have few or no symptoms if they get Zika virus.

If you do have symptoms, they're usually mild and last around 2 to 7 days.

The most common symptoms include:

" - } - ] - }, - { - "@type": "HealthTopicContent", - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/zika/#urgent-medical-help", - "hasHealthAspect": "http://schema.org/MedicalHelpUrgentHealthAspect", - "headline": "", - "description": "", - "hasPart": [ - { - "@type": "WebPageElement", - "identifier": "urgent", - "headline": "Ask for an urgent GP appointment or get help from NHS 111 if:", - "text": "

\n You've recently travelled to a country with a Zika virus risk and:\n

\n\n

\n You can call 111 or\n \n get help from 111 online\n \n .\n

\n

\n Get medical advice quickly if you have Zika virus symptoms while you're travelling.\n

\n" - } - ] - }, - { - "@type": "HealthTopicContent", - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/zika/#medical-treatments", - "hasHealthAspect": "http://schema.org/TreatmentsHealthAspect", - "headline": "Treatments for Zika virus", - "description": "There's no treatment for Zika virus. It usually gets better in about a week. Staying hydrated and taking painkillers can ease symptoms.", - "hasPart": [ - { - "@type": "WebPageElement", + "@type": "HealthTopicContent", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/zika/#prevention", + "hasHealthAspect": "http://schema.org/PreventionHealthAspect", + "headline": "How to avoid Zika virus", + "description": "You can reduce your risk of getting Zika virus by avoiding mosquito bites. For example, use insect repellent and sleep under a mosquito net.", + "hasPart": [ + { + "@type": "WebPageElement", + "headline": "", + "text": "

If you're travelling to an area where Zika virus is found, get advice from a GP, nurse, pharmacist or travel clinic before you go.

It's best to do this at least 4 to 6 weeks before you travel, but you can still get advice at the last minute if you need to.

There are things you can do to avoid getting Zika virus while you're travelling.

" + }, + { + "@type": "WebPageElement", + "headline": "Do", + "text": "" + } + ] + }, + { + "@type": "HealthTopicContent", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/zika/#symptoms", + "hasHealthAspect": "http://schema.org/SymptomsHealthAspect", + "headline": "Symptoms of Zika virus", + "description": "Zika virus often has no symptoms. Some people get symptoms like a rash, high temperature, headache or muscle aches for a few days.", + "hasPart": [ + { + "@type": "WebPageElement", + "headline": "", + "text": "

Most people have few or no symptoms if they get Zika virus.

If you do have symptoms, they're usually mild and last around 2 to 7 days.

The most common symptoms include:

" + } + ] + }, + { + "@type": "HealthTopicContent", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/zika/#urgent-medical-help", + "hasHealthAspect": "http://schema.org/MedicalHelpUrgentHealthAspect", "headline": "", - "text": "

There are no specific treatments for Zika virus.

If you have symptoms, you should:

If you're pregnant and have Zika virus, your midwife or hospital doctor will talk about the risk with you and may arrange an ultrasound scan to check your baby's growth.

You may also be referred to a specialist for more monitoring.

" - } - ] - }, - { - "@type": "HealthTopicContent", - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/zika/#complications", - "hasHealthAspect": "http://schema.org/RisksOrComplicationsHealthAspect", - "headline": "Complications of Zika virus", - "description": "Zika virus can harm your baby if you get it when you're pregnant. Rarely, it can also cause a serious condition called Guillain-Barr\u00e9 syndrome.", - "hasPart": [ - { - "@type": "WebPageElement", + "description": "", + "hasPart": [ + { + "@type": "WebPageElement", + "identifier": "urgent", + "headline": "Ask for an urgent GP appointment or get help from NHS 111 if:", + "text": "

\n You've recently travelled to a country with a Zika virus risk and:\n

\n\n

\n You can call 111 or\n \n get help from 111 online\n \n .\n

\n

\n Get medical advice quickly if you have Zika virus symptoms while you're travelling.\n

\n" + } + ] + }, + { + "@type": "HealthTopicContent", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/zika/#medical-treatments", + "hasHealthAspect": "http://schema.org/TreatmentsHealthAspect", + "headline": "Treatments for Zika virus", + "description": "There's no treatment for Zika virus. It usually gets better in about a week. Staying hydrated and taking painkillers can ease symptoms.", + "hasPart": [ + { + "@type": "WebPageElement", + "headline": "", + "text": "

There are no specific treatments for Zika virus.

If you have symptoms, you should:

If you're pregnant and have Zika virus, your midwife or hospital doctor will talk about the risk with you and may arrange an ultrasound scan to check your baby's growth.

You may also be referred to a specialist for more monitoring.

" + } + ] + }, + { + "@type": "HealthTopicContent", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/zika/#complications", + "hasHealthAspect": "http://schema.org/RisksOrComplicationsHealthAspect", + "headline": "Complications of Zika virus", + "description": "Zika virus can harm your baby if you get it when you're pregnant. Rarely, it can also cause a serious condition called Guillain-Barré syndrome.", + "hasPart": [ + { + "@type": "WebPageElement", + "headline": "", + "text": "

Zika virus can harm a developing baby if you get it when you're pregnant.

It can cause problems with the baby's brain and the baby having an unusually small head (microcephaly).

You can have Zika virus without having any symptoms. This is why it's important to avoid getting pregnant for up to 3 months after you've come back to the UK from a country where there's a Zika virus risk.

Speak to your midwife or doctor for advice if you're worried your unborn baby may be affected by Zika virus.

Rarely, Zika virus can also cause Guillain-Barré syndrome (GBS), a serious condition that affects the nervous system.

" + } + ] + }, + { + "@type": "HealthTopicContent", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/zika/#overview", + "hasHealthAspect": "http://schema.org/OverviewHealthAspect", "headline": "", - "text": "

Zika virus can harm a developing baby if you get it when you're pregnant.

It can cause problems with the baby's brain and the baby having an unusually small head (microcephaly).

You can have Zika virus without having any symptoms. This is why it's important to avoid getting pregnant for up to 3 months after you've come back to the UK from a country where there's a Zika virus risk.

Speak to your midwife or doctor for advice if you're worried your unborn baby may be affected by Zika virus.

Rarely, Zika virus can also cause Guillain-Barr\u00e9 syndrome (GBS), a serious condition that affects the nervous system.

" - } - ] - }, - { - "@type": "HealthTopicContent", - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/zika/#overview", - "hasHealthAspect": "http://schema.org/OverviewHealthAspect", - "headline": "", - "description": "Zika virus is mainly spread by mosquitoes found in some parts of the world. For most people it's mild, but it can cause problems if you're pregnant.", - "hasPart": [ - { - "text": "

Zika virus is usually caught by being bitten by an infected mosquito. There's also a very small risk of it being passed on through sex.

", - "@type": "WebPageElement" - }, - { - "text": "

You can reduce your risk of getting Zika virus by avoiding mosquito bites. For example, use insect repellent and sleep under a mosquito net.

", - "@type": "WebPageElement" - }, - { - "text": "

Zika virus often has no symptoms. Some people get symptoms like a rash, high temperature, headache or muscle aches for a few days.

", - "@type": "WebPageElement" - }, - { - "text": "

There's no treatment for Zika virus. It usually gets better in about a week. Staying hydrated and taking painkillers can ease symptoms.

", - "@type": "WebPageElement" - }, - { - "text": "

Zika virus can harm your baby if you get it when you're pregnant. Rarely, it can also cause a serious condition called Guillain-Barr\u00e9 syndrome.

", - "@type": "WebPageElement" - } - ] - } + "description": "Zika virus is mainly spread by mosquitoes found in some parts of the world. For most people it's mild, but it can cause problems if you're pregnant.", + "hasPart": [ + { + "@type": "WebPageElement", + "headline": "Zika virus", + "text": "Causes" + }, + { + "@type": "WebPageElement", + "headline": "Zika virus", + "text": "Prevention" + }, + { + "@type": "WebPageElement", + "headline": "Zika virus", + "text": "Symptoms" + }, + { + "@type": "WebPageElement", + "headline": "Zika virus", + "text": "Medical treatments" + }, + { + "@type": "WebPageElement", + "headline": "Zika virus", + "text": "Complications" + }, + { + "text": "

", + "@type": "WebPageElement" + }, + { + "text": "

", + "@type": "WebPageElement" + }, + { + "text": "

You can reduce your risk of getting Zika virus by avoiding mosquito bites. For example, use insect repellent and sleep under a mosquito net.

", + "@type": "WebPageElement" + }, + { + "text": "

", + "@type": "WebPageElement" + }, + { + "text": "

There's no treatment for Zika virus. It usually gets better in about a week. Staying hydrated and taking painkillers can ease symptoms.

", + "@type": "WebPageElement" + } + ] + } ], "relatedLink": [ - { - "@type": "LinkRole", - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/zika/", - "linkRelationship": "Navigation", - "position": 0, - "name": "Zika virus" - } + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/zika/", + "linkRelationship": "Navigation", + "position": 0, + "name": "Zika virus" + } ], "contentSubTypes": [], "mainEntityOfPage": [ - { - "identifier": "0", - "name": "section heading", - "position": 0, - "@type": "WebPageElement", - "mainEntityOfPage": [ - { - "position": 0, - "identifier": "1", - "text": "

Zika virus is mainly spread by mosquitoes found in some parts of the world. For most people it's mild and not harmful, but can cause problems if you're pregnant.

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "description": "", - "hasPart": [ - { - "position": 0, - "identifier": "1", - "text": "

Zika virus is mainly spread by mosquitoes found in some parts of the world. For most people it's mild and not harmful, but can cause problems if you're pregnant.

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ] - }, - { - "identifier": "0", - "name": "section heading", - "position": 1, - "@type": "WebPageElement", - "mainEntityOfPage": [ - { - "position": 0, - "identifier": "1", - "text": "

Zika virus is usually caught by being bitten by an infected mosquito.

Very rarely, you can get the virus by having sex with someone who has it.

Zika virus is found in parts of:

The type of mosquitoes that carry Zika virus are not found in the UK.

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "description": "Zika virus is usually caught by being bitten by an infected mosquito. There's also a very small risk of it being passed on through sex.", - "hasPart": [ - { - "position": 0, - "identifier": "1", - "text": "

Zika virus is usually caught by being bitten by an infected mosquito.

Very rarely, you can get the virus by having sex with someone who has it.

Zika virus is found in parts of:

The type of mosquitoes that carry Zika virus are not found in the UK.

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "hasHealthAspect": "http://schema.org/CausesHealthAspect", - "headline": "Check if you're at risk of Zika virus" - }, - { - "identifier": "0", - "name": "section heading", - "position": 2, - "@type": "WebPageElement", - "mainEntityOfPage": [ - { - "position": 0, - "@type": "WebPageElement", - "name": "Information", - "identifier": "3", - "text": "

Check before you travel

It's important to check the risk for the country you're going to before you travel.

Find out more about the Zika virus risk in specific countries on the Travel Health Pro website

" - } - ], - "description": "", - "hasPart": [ - { - "position": 0, - "@type": "WebPageElement", - "name": "Information", - "identifier": "3", - "text": "

Check before you travel

It's important to check the risk for the country you're going to before you travel.

Find out more about the Zika virus risk in specific countries on the Travel Health Pro website

" - } - ] - }, - { - "identifier": "0", - "name": "section heading", - "position": 3, - "@type": "WebPageElement", - "mainEntityOfPage": [ - { - "position": 0, - "identifier": "1", - "text": "

If you're travelling to an area where Zika virus is found, get advice from a GP, nurse, pharmacist or travel clinic before you go.

It's best to do this at least 4 to 6 weeks before you travel, but you can still get advice at the last minute if you need to.

There are things you can do to avoid getting Zika virus while you're travelling.

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "" - }, - { - "position": 1, - "@type": "WebPageElement", - "name": "Do/Don't", - "identifier": "9", - "text": "

Do

  • use insect repellent on your skin \u2013 make sure it's 50% DEET-based

  • sleep under mosquito nets treated with insecticide

  • wear loose clothing that covers your arms and legs \u2013 the mosquitoes that carry Zika virus are most active during the day

" - } - ], - "description": "You can reduce your risk of getting Zika virus by avoiding mosquito bites. For example, use insect repellent and sleep under a mosquito net.", - "hasPart": [ - { + { + "identifier": "0", + "name": "section heading", "position": 0, - "identifier": "1", - "text": "

If you're travelling to an area where Zika virus is found, get advice from a GP, nurse, pharmacist or travel clinic before you go.

It's best to do this at least 4 to 6 weeks before you travel, but you can still get advice at the last minute if you need to.

There are things you can do to avoid getting Zika virus while you're travelling.

", "@type": "WebPageElement", - "name": "markdown", - "headline": "" - }, - { + "mainEntityOfPage": [ + { + "position": 0, + "identifier": "1", + "text": "

Zika virus is mainly spread by mosquitoes found in some parts of the world. For most people it's mild and not harmful, but can cause problems if you're pregnant.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "description": "", + "hasPart": [ + { + "position": 0, + "identifier": "1", + "text": "

Zika virus is mainly spread by mosquitoes found in some parts of the world. For most people it's mild and not harmful, but can cause problems if you're pregnant.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ] + }, + { + "identifier": "0", + "name": "section heading", "position": 1, "@type": "WebPageElement", - "name": "Do/Don't", - "identifier": "9", - "text": "

Do

  • use insect repellent on your skin \u2013 make sure it's 50% DEET-based

  • sleep under mosquito nets treated with insecticide

  • wear loose clothing that covers your arms and legs \u2013 the mosquitoes that carry Zika virus are most active during the day

" - } - ], - "hasHealthAspect": "http://schema.org/PreventionHealthAspect", - "headline": "How to avoid Zika virus" - }, - { - "identifier": "0", - "name": "section heading", - "position": 4, - "@type": "WebPageElement", - "mainEntityOfPage": [ - { - "position": 0, - "identifier": "1", - "text": "

Most people have few or no symptoms if they get Zika virus.

If you do have symptoms, they're usually mild and last around 2 to 7 days.

The most common symptoms include:

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "description": "Zika virus often has no symptoms. Some people get symptoms like a rash, high temperature, headache or muscle aches for a few days.", - "hasPart": [ - { - "position": 0, - "identifier": "1", - "text": "

Most people have few or no symptoms if they get Zika virus.

If you do have symptoms, they're usually mild and last around 2 to 7 days.

The most common symptoms include:

", - "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "hasHealthAspect": "http://schema.org/SymptomsHealthAspect", - "headline": "Symptoms of Zika virus" - }, - { - "identifier": "0", - "name": "section heading", - "position": 5, - "@type": "WebPageElement", - "mainEntityOfPage": [ - { - "position": 0, - "@type": "WebPageElement", - "name": "urgent", - "identifier": "5", - "text": "

Ask for an urgent GP appointment or get help from NHS 111 if:

\n

You've recently travelled to a country with a Zika virus risk and:

  • you feel unwell
  • you or your partner are pregnant
  • you or your partner get pregnant within 3 months of coming back to the UK
  • have numbness, pins and needles, muscle weakness or pain in your feet and hands that spreads to your arms and legs

You can call 111 or get help from 111 online.

Get medical advice quickly if you have Zika virus symptoms while you're travelling.

\n
" - } - ], - "description": "", - "hasPart": [ - { - "position": 0, + "mainEntityOfPage": [ + { + "position": 0, + "identifier": "1", + "text": "

Zika virus is usually caught by being bitten by an infected mosquito.

Very rarely, you can get the virus by having sex with someone who has it.

Zika virus is found in parts of:

The type of mosquitoes that carry Zika virus are not found in the UK.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "description": "Zika virus is usually caught by being bitten by an infected mosquito. There's also a very small risk of it being passed on through sex.", + "hasPart": [ + { + "position": 0, + "identifier": "1", + "text": "

Zika virus is usually caught by being bitten by an infected mosquito.

Very rarely, you can get the virus by having sex with someone who has it.

Zika virus is found in parts of:

The type of mosquitoes that carry Zika virus are not found in the UK.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "hasHealthAspect": "http://schema.org/CausesHealthAspect", + "headline": "Check if you're at risk of Zika virus" + }, + { + "identifier": "0", + "name": "section heading", + "position": 2, "@type": "WebPageElement", - "name": "urgent", - "identifier": "5", - "text": "

Ask for an urgent GP appointment or get help from NHS 111 if:

\n

You've recently travelled to a country with a Zika virus risk and:

  • you feel unwell
  • you or your partner are pregnant
  • you or your partner get pregnant within 3 months of coming back to the UK
  • have numbness, pins and needles, muscle weakness or pain in your feet and hands that spreads to your arms and legs

You can call 111 or get help from 111 online.

Get medical advice quickly if you have Zika virus symptoms while you're travelling.

\n
" - } - ], - "hasHealthAspect": "http://schema.org/MedicalHelpUrgentHealthAspect" - }, - { - "identifier": "0", - "name": "section heading", - "position": 6, - "@type": "WebPageElement", - "mainEntityOfPage": [ - { - "position": 0, - "identifier": "1", - "text": "

There are no specific treatments for Zika virus.

If you have symptoms, you should:

If you're pregnant and have Zika virus, your midwife or hospital doctor will talk about the risk with you and may arrange an ultrasound scan to check your baby's growth.

You may also be referred to a specialist for more monitoring.

", + "mainEntityOfPage": [ + { + "position": 0, + "@type": "WebPageElement", + "name": "Information", + "identifier": "3", + "text": "

Check before you travel

It's important to check the risk for the country you're going to before you travel.

Find out more about the Zika virus risk in specific countries on the Travel Health Pro website

" + } + ], + "description": "", + "hasPart": [ + { + "position": 0, + "@type": "WebPageElement", + "name": "Information", + "identifier": "3", + "text": "

Check before you travel

It's important to check the risk for the country you're going to before you travel.

Find out more about the Zika virus risk in specific countries on the Travel Health Pro website

" + } + ] + }, + { + "identifier": "0", + "name": "section heading", + "position": 3, "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "description": "There's no treatment for Zika virus. It usually gets better in about a week. Staying hydrated and taking painkillers can ease symptoms.", - "hasPart": [ - { - "position": 0, - "identifier": "1", - "text": "

There are no specific treatments for Zika virus.

If you have symptoms, you should:

If you're pregnant and have Zika virus, your midwife or hospital doctor will talk about the risk with you and may arrange an ultrasound scan to check your baby's growth.

You may also be referred to a specialist for more monitoring.

", + "mainEntityOfPage": [ + { + "position": 0, + "identifier": "1", + "text": "

If you're travelling to an area where Zika virus is found, get advice from a GP, nurse, pharmacist or travel clinic before you go.

It's best to do this at least 4 to 6 weeks before you travel, but you can still get advice at the last minute if you need to.

There are things you can do to avoid getting Zika virus while you're travelling.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + }, + { + "position": 1, + "@type": "WebPageElement", + "name": "Do/Don't", + "identifier": "9", + "text": "

Do

  • use insect repellent on your skin – make sure it's 50% DEET-based

  • sleep under mosquito nets treated with insecticide

  • wear loose clothing that covers your arms and legs – the mosquitoes that carry Zika virus are most active during the day

" + } + ], + "description": "You can reduce your risk of getting Zika virus by avoiding mosquito bites. For example, use insect repellent and sleep under a mosquito net.", + "hasPart": [ + { + "position": 0, + "identifier": "1", + "text": "

If you're travelling to an area where Zika virus is found, get advice from a GP, nurse, pharmacist or travel clinic before you go.

It's best to do this at least 4 to 6 weeks before you travel, but you can still get advice at the last minute if you need to.

There are things you can do to avoid getting Zika virus while you're travelling.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + }, + { + "position": 1, + "@type": "WebPageElement", + "name": "Do/Don't", + "identifier": "9", + "text": "

Do

  • use insect repellent on your skin – make sure it's 50% DEET-based

  • sleep under mosquito nets treated with insecticide

  • wear loose clothing that covers your arms and legs – the mosquitoes that carry Zika virus are most active during the day

" + } + ], + "hasHealthAspect": "http://schema.org/PreventionHealthAspect", + "headline": "How to avoid Zika virus" + }, + { + "identifier": "0", + "name": "section heading", + "position": 4, "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "hasHealthAspect": "http://schema.org/TreatmentsHealthAspect", - "headline": "Treatments for Zika virus" - }, - { - "identifier": "0", - "name": "section heading", - "position": 7, - "@type": "WebPageElement", - "mainEntityOfPage": [ - { - "position": 0, - "identifier": "1", - "text": "

Zika virus can harm a developing baby if you get it when you're pregnant.

It can cause problems with the baby's brain and the baby having an unusually small head (microcephaly).

You can have Zika virus without having any symptoms. This is why it's important to avoid getting pregnant for up to 3 months after you've come back to the UK from a country where there's a Zika virus risk.

Speak to your midwife or doctor for advice if you're worried your unborn baby may be affected by Zika virus.

Rarely, Zika virus can also cause Guillain-Barr\u00e9 syndrome (GBS), a serious condition that affects the nervous system.

", + "mainEntityOfPage": [ + { + "position": 0, + "identifier": "1", + "text": "

Most people have few or no symptoms if they get Zika virus.

If you do have symptoms, they're usually mild and last around 2 to 7 days.

The most common symptoms include:

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "description": "Zika virus often has no symptoms. Some people get symptoms like a rash, high temperature, headache or muscle aches for a few days.", + "hasPart": [ + { + "position": 0, + "identifier": "1", + "text": "

Most people have few or no symptoms if they get Zika virus.

If you do have symptoms, they're usually mild and last around 2 to 7 days.

The most common symptoms include:

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "hasHealthAspect": "http://schema.org/SymptomsHealthAspect", + "headline": "Symptoms of Zika virus" + }, + { + "identifier": "0", + "name": "section heading", + "position": 5, "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "description": "Zika virus can harm your baby if you get it when you're pregnant. Rarely, it can also cause a serious condition called Guillain-Barr\u00e9 syndrome.", - "hasPart": [ - { - "position": 0, - "identifier": "1", - "text": "

Zika virus can harm a developing baby if you get it when you're pregnant.

It can cause problems with the baby's brain and the baby having an unusually small head (microcephaly).

You can have Zika virus without having any symptoms. This is why it's important to avoid getting pregnant for up to 3 months after you've come back to the UK from a country where there's a Zika virus risk.

Speak to your midwife or doctor for advice if you're worried your unborn baby may be affected by Zika virus.

Rarely, Zika virus can also cause Guillain-Barr\u00e9 syndrome (GBS), a serious condition that affects the nervous system.

", + "mainEntityOfPage": [ + { + "position": 0, + "@type": "WebPageElement", + "name": "urgent", + "identifier": "5", + "text": "

Ask for an urgent GP appointment or get help from NHS 111 if:

\n

You've recently travelled to a country with a Zika virus risk and:

  • you feel unwell
  • you or your partner are pregnant
  • you or your partner get pregnant within 3 months of coming back to the UK
  • have numbness, pins and needles, muscle weakness or pain in your feet and hands that spreads to your arms and legs

You can call 111 or get help from 111 online.

Get medical advice quickly if you have Zika virus symptoms while you're travelling.

\n
" + } + ], + "description": "", + "hasPart": [ + { + "position": 0, + "@type": "WebPageElement", + "name": "urgent", + "identifier": "5", + "text": "

Ask for an urgent GP appointment or get help from NHS 111 if:

\n

You've recently travelled to a country with a Zika virus risk and:

  • you feel unwell
  • you or your partner are pregnant
  • you or your partner get pregnant within 3 months of coming back to the UK
  • have numbness, pins and needles, muscle weakness or pain in your feet and hands that spreads to your arms and legs

You can call 111 or get help from 111 online.

Get medical advice quickly if you have Zika virus symptoms while you're travelling.

\n
" + } + ], + "hasHealthAspect": "http://schema.org/MedicalHelpUrgentHealthAspect" + }, + { + "identifier": "0", + "name": "section heading", + "position": 6, "@type": "WebPageElement", - "name": "markdown", - "headline": "" - } - ], - "hasHealthAspect": "http://schema.org/RisksOrComplicationsHealthAspect", - "headline": "Complications of Zika virus" - }, - { - "identifier": "0", - "name": "section heading", - "position": 8, - "@type": "WebPageElement", - "mainEntityOfPage": [ - { - "position": 0, + "mainEntityOfPage": [ + { + "position": 0, + "identifier": "1", + "text": "

There are no specific treatments for Zika virus.

If you have symptoms, you should:

If you're pregnant and have Zika virus, your midwife or hospital doctor will talk about the risk with you and may arrange an ultrasound scan to check your baby's growth.

You may also be referred to a specialist for more monitoring.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "description": "There's no treatment for Zika virus. It usually gets better in about a week. Staying hydrated and taking painkillers can ease symptoms.", + "hasPart": [ + { + "position": 0, + "identifier": "1", + "text": "

There are no specific treatments for Zika virus.

If you have symptoms, you should:

If you're pregnant and have Zika virus, your midwife or hospital doctor will talk about the risk with you and may arrange an ultrasound scan to check your baby's growth.

You may also be referred to a specialist for more monitoring.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "hasHealthAspect": "http://schema.org/TreatmentsHealthAspect", + "headline": "Treatments for Zika virus" + }, + { + "identifier": "0", + "name": "section heading", + "position": 7, "@type": "WebPageElement", - "name": "Information", - "identifier": "3", - "text": "

Find out more

" - } - ], - "description": "", - "hasPart": [ - { - "position": 0, + "mainEntityOfPage": [ + { + "position": 0, + "identifier": "1", + "text": "

Zika virus can harm a developing baby if you get it when you're pregnant.

It can cause problems with the baby's brain and the baby having an unusually small head (microcephaly).

You can have Zika virus without having any symptoms. This is why it's important to avoid getting pregnant for up to 3 months after you've come back to the UK from a country where there's a Zika virus risk.

Speak to your midwife or doctor for advice if you're worried your unborn baby may be affected by Zika virus.

Rarely, Zika virus can also cause Guillain-Barré syndrome (GBS), a serious condition that affects the nervous system.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "description": "Zika virus can harm your baby if you get it when you're pregnant. Rarely, it can also cause a serious condition called Guillain-Barré syndrome.", + "hasPart": [ + { + "position": 0, + "identifier": "1", + "text": "

Zika virus can harm a developing baby if you get it when you're pregnant.

It can cause problems with the baby's brain and the baby having an unusually small head (microcephaly).

You can have Zika virus without having any symptoms. This is why it's important to avoid getting pregnant for up to 3 months after you've come back to the UK from a country where there's a Zika virus risk.

Speak to your midwife or doctor for advice if you're worried your unborn baby may be affected by Zika virus.

Rarely, Zika virus can also cause Guillain-Barré syndrome (GBS), a serious condition that affects the nervous system.

", + "@type": "WebPageElement", + "name": "markdown", + "headline": "" + } + ], + "hasHealthAspect": "http://schema.org/RisksOrComplicationsHealthAspect", + "headline": "Complications of Zika virus" + }, + { + "identifier": "0", + "name": "section heading", + "position": 8, "@type": "WebPageElement", - "name": "Information", - "identifier": "3", - "text": "

Find out more

" - } - ] - } + "mainEntityOfPage": [ + { + "position": 0, + "@type": "WebPageElement", + "name": "Information", + "identifier": "3", + "text": "

Find out more

" + } + ], + "description": "", + "hasPart": [ + { + "position": 0, + "@type": "WebPageElement", + "name": "Information", + "identifier": "3", + "text": "

Find out more

" + } + ] + } ], "webpage": "https://www.nhs.uk/conditions/zika/" } diff --git a/sandbox/responses/symptoms-root-category-a.json b/sandbox/responses/symptoms-root-category-a.json new file mode 100644 index 0000000..6914298 --- /dev/null +++ b/sandbox/responses/symptoms-root-category-a.json @@ -0,0 +1,143 @@ +{ + "@context": "http://schema.org", + "@type": "MedicalWebPage", + "name": "Symptoms A to Z", + "copyrightHolder": { + "name": "Crown Copyright", + "@type": "Organization" + }, + "license": "https://developer.api.nhs.uk/terms", + "author": { + "url": "https://www.nhs.uk", + "logo": "https://assets.nhs.uk/nhsuk-cms/images/nhs-attribution.width-510.png", + "email": "nhswebsite.servicedesk@nhs.net", + "@type": "Organization", + "name": "NHS website" + }, + "about": { + "@type": "WebPage", + "name": "Symptoms A to Z", + "alternateName": "" + }, + "description": "Find out about symptoms such as pain, stomach problems or skin symptoms, including causes, treatment and what to do.", + "url": "https://api.service.nhs.uk/nhs-website-content/symptoms/", + "genre": [], + "keywords": "", + "dateModified": "2025-04-16T12:23:46+00:00", + "breadcrumb": { + "@context": "http://schema.org", + "@type": "BreadcrumbList", + "itemListElement": [ + { + "@type": "ListItem", + "position": 0, + "item": { + "@id": "https://api.service.nhs.uk/nhs-website-content/symptoms/", + "name": "Symptoms A to Z", + "genre": [] + } + } + ] + }, + "contentSubTypes": [], + "significantLink": [ + { + "description": "Find out what causes anal pain, what you can do to ease the pain and when to get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-17T15:49:36+00:00", + "dateModified": "2025-04-15T15:32:37+00:00", + "lastReviewed": [ + "2022-03-15T01:00:00+00:00", + "2025-03-15T01:00:00+00:00" + ], + "reviewDue": "2025-03-15T01:00:00+00:00", + "keywords": "", + "alternateName": [ + "Proctalgia" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anal-pain/", + "name": "Anal pain" + }, + { + "description": "Find out what you can do to ease ankle pain, what could be causing the pain and when to get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2022-03-30T12:58:40+00:00", + "dateModified": "2025-04-16T10:54:20+00:00", + "lastReviewed": [ + "2022-02-22T08:29:00+00:00", + "2025-02-22T08:29:00+00:00" + ], + "reviewDue": "2025-02-22T08:29:00+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/foot-pain/ankle-pain/", + "name": "Ankle pain" + }, + { + "description": "Read practical tips and advice on what to do if you're struggling with anxiety, fear or panic", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "WebPage", + "genre": [ + "Advice or information" + ], + "datePublished": "2021-02-02T16:01:35+00:00", + "dateModified": "2025-04-16T11:15:42+00:00", + "lastReviewed": [ + "2023-01-17T14:01:00+00:00", + "2026-01-17T14:01:00+00:00" + ], + "reviewDue": "2026-01-17T14:01:00+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/mental-health/feelings-symptoms-behaviours/feelings-and-symptoms/anxiety-fear-panic/", + "name": "Anxiety, fear and panic" + }, + { + "description": "Read practical tips and advice on what to do if you're struggling with anger", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "WebPage", + "genre": [ + "Advice or information" + ], + "datePublished": "2021-02-03T11:32:40+00:00", + "dateModified": "2025-04-16T11:14:26+00:00", + "lastReviewed": [ + "2022-11-23T17:02:00+00:00", + "2025-11-23T17:03:00+00:00" + ], + "reviewDue": "2025-11-23T17:03:00+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/mental-health/feelings-symptoms-behaviours/feelings-and-symptoms/anger/", + "name": "Anger" + } + ] +} diff --git a/sandbox/responses/symptoms-root-category-b.json b/sandbox/responses/symptoms-root-category-b.json new file mode 100644 index 0000000..1958520 --- /dev/null +++ b/sandbox/responses/symptoms-root-category-b.json @@ -0,0 +1,465 @@ +{ + "@context": "http://schema.org", + "@type": "MedicalWebPage", + "name": "Symptoms A to Z", + "copyrightHolder": { + "name": "Crown Copyright", + "@type": "Organization" + }, + "license": "https://developer.api.nhs.uk/terms", + "author": { + "url": "https://www.nhs.uk", + "logo": "https://assets.nhs.uk/nhsuk-cms/images/nhs-attribution.width-510.png", + "email": "nhswebsite.servicedesk@nhs.net", + "@type": "Organization", + "name": "NHS website" + }, + "about": { + "@type": "WebPage", + "name": "Symptoms A to Z", + "alternateName": "" + }, + "description": "Find out about symptoms such as pain, stomach problems or skin symptoms, including causes, treatment and what to do.", + "url": "https://api.service.nhs.uk/nhs-website-content/symptoms/", + "genre": [], + "keywords": "", + "dateModified": "2025-04-16T12:23:46+00:00", + "breadcrumb": { + "@context": "http://schema.org", + "@type": "BreadcrumbList", + "itemListElement": [ + { + "@type": "ListItem", + "position": 0, + "item": { + "@id": "https://api.service.nhs.uk/nhs-website-content/symptoms/", + "name": "Symptoms A to Z", + "genre": [] + } + } + ] + }, + "contentSubTypes": [], + "significantLink": [ + { + "description": "Find out about possible causes of blood in semen and when to get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2018-10-03T19:56:07+00:00", + "dateModified": "2025-04-16T10:56:47+00:00", + "lastReviewed": [ + "2022-03-15T01:00:00+00:00", + "2025-03-15T01:00:00+00:00" + ], + "reviewDue": "2025-03-15T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/blood-in-semen/", + "name": "Blood in semen" + }, + { + "description": "Find out about blood in urine (pee). It's not usually anything serious, but sometimes it can be, so you must get it checked out by a GP.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-12-08T09:36:05+00:00", + "dateModified": "2025-04-16T11:26:05+00:00", + "lastReviewed": [ + "2023-05-19T00:00:00+00:00", + "2026-05-19T00:00:00+00:00" + ], + "reviewDue": "2026-05-19T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/blood-in-urine/", + "name": "Blood in urine" + }, + { + "description": "Find out about breast pain and what can cause it. It's usually linked to periods but can also be caused by injury, infection and taking certain medicines.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-17T16:24:54+00:00", + "dateModified": "2025-04-15T15:39:08+00:00", + "lastReviewed": [ + "2023-05-03T00:00:00+00:00", + "2026-05-03T00:00:00+00:00" + ], + "reviewDue": "2026-05-03T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/breast-pain/", + "name": "Breast pain" + }, + { + "description": "Find out about blue or grey skin or lips (cyanosis), including what it looks like, what causes it and when to get it checked.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-18T09:21:42+00:00", + "dateModified": "2025-04-15T15:37:35+00:00", + "lastReviewed": [ + "2023-10-04T00:00:00+00:00", + "2026-10-04T00:00:00+00:00" + ], + "reviewDue": "2026-10-04T00:00:00+00:00", + "keywords": "", + "alternateName": [ + "Cyanosis" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/blue-skin-or-lips-cyanosis/", + "name": "Blue or grey skin or lips (cyanosis)" + }, + { + "description": "Find out how to relieve back pain, what can cause it, and when to get medical advice.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-20T13:38:48+00:00", + "dateModified": "2025-04-16T10:56:04+00:00", + "lastReviewed": [ + "2022-06-09T23:00:00+00:00", + "2025-06-09T23:00:00+00:00" + ], + "reviewDue": "2025-06-09T23:00:00+00:00", + "keywords": "", + "alternateName": [ + "Lumbago", + "Lower back pain", + "Upper back pain" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/back-pain/", + "name": "Back pain" + }, + { + "description": "Find out what causes bad breath (halitosis), how to treat and prevent it, and when to get medical advice.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2018-10-03T20:00:01+00:00", + "dateModified": "2025-04-15T15:33:25+00:00", + "lastReviewed": [ + "2021-12-07T00:00:00+00:00", + "2024-12-07T00:00:00+00:00" + ], + "reviewDue": "2024-12-07T00:00:00+00:00", + "keywords": "", + "alternateName": [ + "Halitosis" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bad-breath/", + "name": "Bad breath" + }, + { + "description": "Find out what you can do about bedwetting, what could be causing it and when to get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-20T12:36:15+00:00", + "dateModified": "2025-04-15T15:35:02+00:00", + "lastReviewed": [ + "2023-04-11T11:00:00+00:00", + "2026-04-11T11:00:00+00:00" + ], + "reviewDue": "2026-04-11T11:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bedwetting/", + "name": "Bedwetting in children" + }, + { + "description": "Bleeding from the bottom (rectal bleeding) is often seen as small amounts of bright-red blood on toilet paper or pink water in the toilet. Find out when to get medical help if you keep bleeding from your bottom.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-20T13:30:54+00:00", + "dateModified": "2025-04-15T15:35:18+00:00", + "lastReviewed": [ + "2023-04-12T00:00:00+00:00", + "2026-04-12T00:00:00+00:00" + ], + "reviewDue": "2026-04-12T00:00:00+00:00", + "keywords": "", + "alternateName": [ + "Rectal bleeding" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bleeding-from-the-bottom-rectal-bleeding/", + "name": "Bleeding from the bottom (rectal bleeding)" + }, + { + "description": "Find out how to stop yourself blushing and read about the possible causes and treatments.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2018-10-03T20:00:15+00:00", + "dateModified": "2025-04-15T15:37:51+00:00", + "lastReviewed": [ + "2022-02-11T00:00:00+00:00", + "2025-02-11T01:00:00+00:00" + ], + "reviewDue": "2025-02-11T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/blushing/", + "name": "Blushing" + }, + { + "description": "Find out about bowel incontinence, including the symptoms, what causes it and the treatments available.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-20T13:47:09+00:00", + "dateModified": "2025-04-11T16:41:25+00:00", + "lastReviewed": [ + "2024-08-14T23:00:00+00:00", + "2027-08-14T23:00:00+00:00" + ], + "reviewDue": "2027-08-14T23:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bowel-incontinence/", + "name": "Bowel incontinence" + }, + { + "description": "Find out about breast lumps. They can have a lot of different causes and most are harmless. But always see a GP if you have a lump in your breast or any unusual changes to your breasts.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-20T13:51:59+00:00", + "dateModified": "2025-04-15T15:38:55+00:00", + "lastReviewed": [ + "2023-06-28T00:00:00+00:00", + "2026-06-28T00:00:00+00:00" + ], + "reviewDue": "2026-06-28T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/breast-lump/", + "name": "Breast lumps" + }, + { + "description": "Find out what can cause the eye to bulge and what treatments may help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-19T15:59:18+00:00", + "dateModified": "2025-04-15T15:39:22+00:00", + "lastReviewed": [ + "2022-08-03T23:00:00+00:00", + "2025-08-04T00:00:00+00:00" + ], + "reviewDue": "2025-08-04T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bulging-eyes/", + "name": "Bulging eyes (exophthalmos)" + }, + { + "description": "NHS information and advice about how to treat body odour, including when to see a GP if the problem persists.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2019-01-15T14:04:28+00:00", + "dateModified": "2025-04-16T10:58:06+00:00", + "lastReviewed": [ + "2021-12-06T13:03:00+00:00", + "2024-12-06T13:03:00+00:00" + ], + "reviewDue": "2024-12-06T13:03:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/body-odour-bo/", + "name": "Body odour (BO)" + }, + { + "description": "Find out about common causes of bloating, what you can do about it and when to get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2022-03-03T13:09:51+00:00", + "dateModified": "2025-04-15T15:35:34+00:00", + "lastReviewed": [ + "2022-03-03T12:13:00+00:00", + "2025-03-03T12:13:00+00:00" + ], + "reviewDue": "2025-03-03T12:13:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bloating/", + "name": "Bloating" + } + ] +} diff --git a/sandbox/responses/symptoms-root-no-params.json b/sandbox/responses/symptoms-root-no-params.json new file mode 100644 index 0000000..1d0aaab --- /dev/null +++ b/sandbox/responses/symptoms-root-no-params.json @@ -0,0 +1,831 @@ +{ + "@context": "http://schema.org", + "@type": "MedicalWebPage", + "name": "Symptoms A to Z", + "copyrightHolder": { + "name": "Crown Copyright", + "@type": "Organization" + }, + "license": "https://developer.api.nhs.uk/terms", + "author": { + "url": "https://www.nhs.uk", + "logo": "https://assets.nhs.uk/nhsuk-cms/images/nhs-attribution.width-510.png", + "email": "nhswebsite.servicedesk@nhs.net", + "@type": "Organization", + "name": "NHS website" + }, + "about": { + "@type": "WebPage", + "name": "Symptoms A to Z", + "alternateName": "" + }, + "description": "Find out about symptoms such as pain, stomach problems or skin symptoms, including causes, treatment and what to do.", + "url": "https://api.service.nhs.uk/nhs-website-content/symptoms/", + "genre": [], + "keywords": "", + "dateModified": "2025-04-16T12:23:46+00:00", + "breadcrumb": { + "@context": "http://schema.org", + "@type": "BreadcrumbList", + "itemListElement": [ + { + "@type": "ListItem", + "position": 0, + "item": { + "@id": "https://api.service.nhs.uk/nhs-website-content/symptoms/", + "name": "Symptoms A to Z", + "genre": [] + } + } + ] + }, + "contentSubTypes": [], + "significantLink": [ + { + "description": "Find out what causes anal pain, what you can do to ease the pain and when to get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-17T15:49:36+00:00", + "dateModified": "2025-04-15T15:32:37+00:00", + "lastReviewed": [ + "2022-03-15T01:00:00+00:00", + "2025-03-15T01:00:00+00:00" + ], + "reviewDue": "2025-03-15T01:00:00+00:00", + "keywords": "", + "alternateName": [ + "Proctalgia" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anal-pain/", + "name": "Anal pain" + }, + { + "description": "Find out about possible causes of blood in semen and when to get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2018-10-03T19:56:07+00:00", + "dateModified": "2025-04-16T10:56:47+00:00", + "lastReviewed": [ + "2022-03-15T01:00:00+00:00", + "2025-03-15T01:00:00+00:00" + ], + "reviewDue": "2025-03-15T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/blood-in-semen/", + "name": "Blood in semen" + }, + { + "description": "Find out about blood in urine (pee). It's not usually anything serious, but sometimes it can be, so you must get it checked out by a GP.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-12-08T09:36:05+00:00", + "dateModified": "2025-04-16T11:26:05+00:00", + "lastReviewed": [ + "2023-05-19T00:00:00+00:00", + "2026-05-19T00:00:00+00:00" + ], + "reviewDue": "2026-05-19T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/blood-in-urine/", + "name": "Blood in urine" + }, + { + "description": "Find out about breast pain and what can cause it. It's usually linked to periods but can also be caused by injury, infection and taking certain medicines.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-17T16:24:54+00:00", + "dateModified": "2025-04-15T15:39:08+00:00", + "lastReviewed": [ + "2023-05-03T00:00:00+00:00", + "2026-05-03T00:00:00+00:00" + ], + "reviewDue": "2026-05-03T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/breast-pain/", + "name": "Breast pain" + }, + { + "description": "Find out about catarrh, including what the symptoms are, what you can do to help ease it, when to get medical help, and treatments that may be recommended.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-18T07:05:13+00:00", + "dateModified": "2025-04-11T16:48:08+00:00", + "lastReviewed": [ + "2022-11-17T00:00:00+00:00", + "2025-11-17T00:00:00+00:00" + ], + "reviewDue": "2025-11-17T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/catarrh/", + "name": "Catarrh" + }, + { + "description": "Find out what could be causing your chest pain and if you need to go to hospital or see a GP.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-18T08:06:30+00:00", + "dateModified": "2025-04-15T15:42:48+00:00", + "lastReviewed": [ + "2023-08-08T00:00:00+00:00", + "2026-08-08T00:00:00+00:00" + ], + "reviewDue": "2026-08-08T00:00:00+00:00", + "keywords": "", + "alternateName": [ + "Heart pain" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/chest-pain/", + "name": "Chest pain" + }, + { + "description": "NHS information about sudden confusion (delirium), including how to tell if someone is confused and when to get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-18T08:54:48+00:00", + "dateModified": "2025-04-16T10:31:23+00:00", + "lastReviewed": [ + "2024-05-28T00:00:00+00:00", + "2027-05-28T00:00:00+00:00" + ], + "reviewDue": "2027-05-28T00:00:00+00:00", + "keywords": "", + "alternateName": [ + "Confusion (sudden)", + "Delirium" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/confusion/", + "name": "Sudden confusion (delirium)" + }, + { + "description": "Read about coughs, including what you can do to ease a cough, help from a pharmacist and when to see a GP.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-18T09:02:00+00:00", + "dateModified": "2025-04-15T15:44:18+00:00", + "lastReviewed": [ + "2023-12-08T00:00:00+00:00", + "2026-12-08T00:00:00+00:00" + ], + "reviewDue": "2026-12-08T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/cough/", + "name": "Cough" + }, + { + "description": "Read about coughing up blood, including what can cause it and when to get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-18T13:18:19+00:00", + "dateModified": "2025-04-15T15:44:43+00:00", + "lastReviewed": [ + "2024-06-13T00:00:00+00:00", + "2027-06-13T00:00:00+00:00" + ], + "reviewDue": "2027-06-13T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/coughing-up-blood/", + "name": "Coughing up blood (blood in phlegm)" + }, + { + "description": "Find out about blue or grey skin or lips (cyanosis), including what it looks like, what causes it and when to get it checked.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-18T09:21:42+00:00", + "dateModified": "2025-04-15T15:37:35+00:00", + "lastReviewed": [ + "2023-10-04T00:00:00+00:00", + "2026-10-04T00:00:00+00:00" + ], + "reviewDue": "2026-10-04T00:00:00+00:00", + "keywords": "", + "alternateName": [ + "Cyanosis" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/blue-skin-or-lips-cyanosis/", + "name": "Blue or grey skin or lips (cyanosis)" + }, + { + "description": "Dizziness is a common symptom that’s not usually a sign of anything serious. Find out what you can do about it and when to get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-18T10:14:27+00:00", + "dateModified": "2025-04-16T08:40:55+00:00", + "lastReviewed": [ + "2023-04-21T11:19:00+00:00", + "2026-04-21T00:00:00+00:00" + ], + "reviewDue": "2026-04-21T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/dizziness/", + "name": "Dizziness" + }, + { + "description": "Find out about dry mouth, including what causes it and things you can do to help ease it yourself.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-18T10:58:37+00:00", + "dateModified": "2025-04-16T08:41:49+00:00", + "lastReviewed": [ + "2023-11-29T00:00:00+00:00", + "2026-11-29T00:00:00+00:00" + ], + "reviewDue": "2026-11-29T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/dry-mouth/", + "name": "Dry mouth" + }, + { + "description": "Find out about earache and ear pain, a common condition, particularly in young children. It's not usually a sign of anything serious, but it can be painful.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-18T10:20:27+00:00", + "dateModified": "2025-04-16T10:59:20+00:00", + "lastReviewed": [ + "2022-04-29T00:00:00+00:00", + "2025-04-29T00:00:00+00:00" + ], + "reviewDue": "2025-04-29T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/earache/", + "name": "Earache" + }, + { + "description": "Ejaculation problems such as premature, delayed and retrograde ejaculation are a common cause of sexual problems in men.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "WebPage", + "genre": [ + "Advice or information" + ], + "datePublished": "2017-10-18T09:42:33+00:00", + "dateModified": "2025-04-11T16:51:56+00:00", + "lastReviewed": [ + "2023-02-09T01:00:00+00:00", + "2026-02-09T01:00:00+00:00" + ], + "reviewDue": "2026-02-09T01:00:00+00:00", + "keywords": "", + "alternateName": [ + "Premature ejaculation" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/ejaculation-problems/", + "name": "Ejaculation problems" + }, + { + "description": "Find out what you can do to treat a painful arm or elbow yourself, and when to get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-18T09:51:42+00:00", + "dateModified": "2025-04-16T08:43:13+00:00", + "lastReviewed": [ + "2024-01-26T18:00:00+00:00", + "2027-01-26T18:00:00+00:00" + ], + "reviewDue": "2027-01-26T18:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/elbow-and-arm-pain/", + "name": "Elbow and arm pain" + }, + { + "description": "Read about excessive daytime sleepiness (hypersomnia), a condition that causes you to feel very sleepy during the day, even if you had a good night's sleep.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition", + "Symptom" + ], + "datePublished": "2017-10-18T10:43:10+00:00", + "dateModified": "2025-04-11T16:19:23+00:00", + "lastReviewed": [ + "2023-06-23T00:00:00+00:00", + "2026-06-23T00:00:00+00:00" + ], + "reviewDue": "2026-06-23T00:00:00+00:00", + "keywords": "", + "alternateName": [ + "Hypersomnia" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/excessive-daytime-sleepiness-hypersomnia/", + "name": "Excessive daytime sleepiness (hypersomnia)" + }, + { + "description": "Find out what to do if you have a lump on your eyelid, or an eyelid that's swollen, sticky, itchy or painful.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-18T10:29:43+00:00", + "dateModified": "2025-04-16T08:45:26+00:00", + "lastReviewed": [ + "2023-11-17T01:00:00+00:00", + "2026-11-17T16:38:00+00:00" + ], + "reviewDue": "2026-11-17T16:38:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/eyelid-problems/", + "name": "Eyelid problems" + }, + { + "description": "Find out how to check if your child has a high temperature (fever), what you can do to bring their temperature down, and when to get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-24T15:25:05+00:00", + "dateModified": "2025-04-16T10:11:29+00:00", + "lastReviewed": [ + "2024-01-03T17:00:00+00:00", + "2027-01-03T17:00:00+00:00" + ], + "reviewDue": "2027-01-03T17:00:00+00:00", + "keywords": "", + "alternateName": [ + "Fever in children" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/fever-in-children/", + "name": "High temperature (fever) in children" + }, + { + "description": "Find out what heart palpitations are, what they feel like, common causes and when to get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-18T13:44:19+00:00", + "dateModified": "2025-04-16T10:10:30+00:00", + "lastReviewed": [ + "2022-06-07T00:00:00+00:00", + "2025-06-07T00:00:00+00:00" + ], + "reviewDue": "2025-06-07T00:00:00+00:00", + "keywords": "", + "alternateName": [ + "Palpitations", + "Ectopic beats" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/heart-palpitations/", + "name": "Heart palpitations" + }, + { + "description": "Find out about common causes of hip pain in adults, how you can help ease hip pain and when you should get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-18T15:45:13+00:00", + "dateModified": "2025-04-16T10:11:45+00:00", + "lastReviewed": [ + "2022-03-11T01:00:00+00:00", + "2025-03-11T01:00:00+00:00" + ], + "reviewDue": "2025-03-11T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/hip-pain/", + "name": "Hip pain in adults" + }, + { + "description": "Find out about indigestion, a common problem that causes pain or discomfort in your upper abdomen (dyspepsia) or behind your breastbone (heartburn).", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition", + "Symptom" + ], + "datePublished": "2017-10-18T18:33:34+00:00", + "dateModified": "2025-04-11T16:25:10+00:00", + "lastReviewed": [ + "2023-05-05T18:00:00+00:00", + "2026-05-05T18:00:00+00:00" + ], + "reviewDue": "2026-05-05T18:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/indigestion/", + "name": "Indigestion" + }, + { + "description": "Find out about hip pain in children, including what causes it, when to get medical help and how it can be treated.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2018-01-10T14:49:56+00:00", + "dateModified": "2025-04-16T10:12:02+00:00", + "lastReviewed": [ + "2024-04-03T13:39:00+00:00", + "2027-04-03T13:39:00+00:00" + ], + "reviewDue": "2027-04-03T13:39:00+00:00", + "keywords": "", + "alternateName": [ + "Irritable hip" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/hip-pain-children-irritable-hip/", + "name": "Hip pain in children (irritable hip)" + }, + { + "description": "Find out about common causes of joint pain, how you can help ease joint pain and when you should get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-18T16:51:32+00:00", + "dateModified": "2025-04-16T10:14:39+00:00", + "lastReviewed": [ + "2022-05-03T00:00:00+00:00", + "2025-05-03T00:00:00+00:00" + ], + "reviewDue": "2025-05-03T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/joint-pain/", + "name": "Joint pain" + }, + { + "description": "Sudden knee pain is often caused by overusing the knee or injuring it. Find out what you can do to treat it yourself and when to get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-19T07:07:57+00:00", + "dateModified": "2025-04-16T10:14:53+00:00", + "lastReviewed": [ + "2023-12-21T00:00:00+00:00", + "2026-12-21T00:00:00+00:00" + ], + "reviewDue": "2026-12-21T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/knee-pain/", + "name": "Knee pain" + }, + { + "description": "Find out more about limping in children, which is usually caused by something minor like a sprain or strain.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-19T12:52:42+00:00", + "dateModified": "2025-04-16T10:15:07+00:00", + "lastReviewed": [ + "2025-01-23T09:00:00+00:00", + "2028-01-23T09:00:00+00:00" + ], + "reviewDue": "2028-01-23T09:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/limp-in-children/", + "name": "Limping in children" + } + ], + "relatedLink": [ + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/symptoms/?page=1", + "name": "First Page", + "description": "Link to First Page", + "linkRelationship": "Pagination" + }, + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/symptoms/?page=6", + "name": "Last Page", + "description": "Link to Last Page", + "linkRelationship": "Pagination" + }, + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/symptoms/", + "name": "Self", + "description": "Link to nhs.uk Page", + "linkRelationship": "Self" + }, + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/symptoms/?page=2", + "name": "Next Page", + "description": "Link to Next Page", + "linkRelationship": "Pagination" + } + ] +} diff --git a/sandbox/responses/symptoms-root-page-1.json b/sandbox/responses/symptoms-root-page-1.json new file mode 100644 index 0000000..764b001 --- /dev/null +++ b/sandbox/responses/symptoms-root-page-1.json @@ -0,0 +1,831 @@ +{ + "@context": "http://schema.org", + "@type": "MedicalWebPage", + "name": "Symptoms A to Z", + "copyrightHolder": { + "name": "Crown Copyright", + "@type": "Organization" + }, + "license": "https://developer.api.nhs.uk/terms", + "author": { + "url": "https://www.nhs.uk", + "logo": "https://assets.nhs.uk/nhsuk-cms/images/nhs-attribution.width-510.png", + "email": "nhswebsite.servicedesk@nhs.net", + "@type": "Organization", + "name": "NHS website" + }, + "about": { + "@type": "WebPage", + "name": "Symptoms A to Z", + "alternateName": "" + }, + "description": "Find out about symptoms such as pain, stomach problems or skin symptoms, including causes, treatment and what to do.", + "url": "https://api.service.nhs.uk/nhs-website-content/symptoms/", + "genre": [], + "keywords": "", + "dateModified": "2025-04-16T12:23:46+00:00", + "breadcrumb": { + "@context": "http://schema.org", + "@type": "BreadcrumbList", + "itemListElement": [ + { + "@type": "ListItem", + "position": 0, + "item": { + "@id": "https://api.service.nhs.uk/nhs-website-content/symptoms/", + "name": "Symptoms A to Z", + "genre": [] + } + } + ] + }, + "contentSubTypes": [], + "significantLink": [ + { + "description": "Find out what causes anal pain, what you can do to ease the pain and when to get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-17T15:49:36+00:00", + "dateModified": "2025-04-15T15:32:37+00:00", + "lastReviewed": [ + "2022-03-15T01:00:00+00:00", + "2025-03-15T01:00:00+00:00" + ], + "reviewDue": "2025-03-15T01:00:00+00:00", + "keywords": "", + "alternateName": [ + "Proctalgia" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anal-pain/", + "name": "Anal pain" + }, + { + "description": "Find out about possible causes of blood in semen and when to get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2018-10-03T19:56:07+00:00", + "dateModified": "2025-04-16T10:56:47+00:00", + "lastReviewed": [ + "2022-03-15T01:00:00+00:00", + "2025-03-15T01:00:00+00:00" + ], + "reviewDue": "2025-03-15T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/blood-in-semen/", + "name": "Blood in semen" + }, + { + "description": "Find out about blood in urine (pee). It's not usually anything serious, but sometimes it can be, so you must get it checked out by a GP.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-12-08T09:36:05+00:00", + "dateModified": "2025-04-16T11:26:05+00:00", + "lastReviewed": [ + "2023-05-19T00:00:00+00:00", + "2026-05-19T00:00:00+00:00" + ], + "reviewDue": "2026-05-19T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/blood-in-urine/", + "name": "Blood in urine" + }, + { + "description": "Find out about breast pain and what can cause it. It's usually linked to periods but can also be caused by injury, infection and taking certain medicines.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-17T16:24:54+00:00", + "dateModified": "2025-04-15T15:39:08+00:00", + "lastReviewed": [ + "2023-05-03T00:00:00+00:00", + "2026-05-03T00:00:00+00:00" + ], + "reviewDue": "2026-05-03T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/breast-pain/", + "name": "Breast pain" + }, + { + "description": "Find out about catarrh, including what the symptoms are, what you can do to help ease it, when to get medical help, and treatments that may be recommended.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-18T07:05:13+00:00", + "dateModified": "2025-04-11T16:48:08+00:00", + "lastReviewed": [ + "2022-11-17T00:00:00+00:00", + "2025-11-17T00:00:00+00:00" + ], + "reviewDue": "2025-11-17T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/catarrh/", + "name": "Catarrh" + }, + { + "description": "Find out what could be causing your chest pain and if you need to go to hospital or see a GP.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-18T08:06:30+00:00", + "dateModified": "2025-04-15T15:42:48+00:00", + "lastReviewed": [ + "2023-08-08T00:00:00+00:00", + "2026-08-08T00:00:00+00:00" + ], + "reviewDue": "2026-08-08T00:00:00+00:00", + "keywords": "", + "alternateName": [ + "Heart pain" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/chest-pain/", + "name": "Chest pain" + }, + { + "description": "NHS information about sudden confusion (delirium), including how to tell if someone is confused and when to get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-18T08:54:48+00:00", + "dateModified": "2025-04-16T10:31:23+00:00", + "lastReviewed": [ + "2024-05-28T00:00:00+00:00", + "2027-05-28T00:00:00+00:00" + ], + "reviewDue": "2027-05-28T00:00:00+00:00", + "keywords": "", + "alternateName": [ + "Confusion (sudden)", + "Delirium" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/confusion/", + "name": "Sudden confusion (delirium)" + }, + { + "description": "Read about coughs, including what you can do to ease a cough, help from a pharmacist and when to see a GP.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-18T09:02:00+00:00", + "dateModified": "2025-04-15T15:44:18+00:00", + "lastReviewed": [ + "2023-12-08T00:00:00+00:00", + "2026-12-08T00:00:00+00:00" + ], + "reviewDue": "2026-12-08T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/cough/", + "name": "Cough" + }, + { + "description": "Read about coughing up blood, including what can cause it and when to get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-18T13:18:19+00:00", + "dateModified": "2025-04-15T15:44:43+00:00", + "lastReviewed": [ + "2024-06-13T00:00:00+00:00", + "2027-06-13T00:00:00+00:00" + ], + "reviewDue": "2027-06-13T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/coughing-up-blood/", + "name": "Coughing up blood (blood in phlegm)" + }, + { + "description": "Find out about blue or grey skin or lips (cyanosis), including what it looks like, what causes it and when to get it checked.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-18T09:21:42+00:00", + "dateModified": "2025-04-15T15:37:35+00:00", + "lastReviewed": [ + "2023-10-04T00:00:00+00:00", + "2026-10-04T00:00:00+00:00" + ], + "reviewDue": "2026-10-04T00:00:00+00:00", + "keywords": "", + "alternateName": [ + "Cyanosis" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/blue-skin-or-lips-cyanosis/", + "name": "Blue or grey skin or lips (cyanosis)" + }, + { + "description": "Dizziness is a common symptom that’s not usually a sign of anything serious. Find out what you can do about it and when to get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-18T10:14:27+00:00", + "dateModified": "2025-04-16T08:40:55+00:00", + "lastReviewed": [ + "2023-04-21T11:19:00+00:00", + "2026-04-21T00:00:00+00:00" + ], + "reviewDue": "2026-04-21T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/dizziness/", + "name": "Dizziness" + }, + { + "description": "Find out about dry mouth, including what causes it and things you can do to help ease it yourself.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-18T10:58:37+00:00", + "dateModified": "2025-04-16T08:41:49+00:00", + "lastReviewed": [ + "2023-11-29T00:00:00+00:00", + "2026-11-29T00:00:00+00:00" + ], + "reviewDue": "2026-11-29T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/dry-mouth/", + "name": "Dry mouth" + }, + { + "description": "Find out about earache and ear pain, a common condition, particularly in young children. It's not usually a sign of anything serious, but it can be painful.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-18T10:20:27+00:00", + "dateModified": "2025-04-16T10:59:20+00:00", + "lastReviewed": [ + "2022-04-29T00:00:00+00:00", + "2025-04-29T00:00:00+00:00" + ], + "reviewDue": "2025-04-29T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/earache/", + "name": "Earache" + }, + { + "description": "Ejaculation problems such as premature, delayed and retrograde ejaculation are a common cause of sexual problems in men.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "WebPage", + "genre": [ + "Advice or information" + ], + "datePublished": "2017-10-18T09:42:33+00:00", + "dateModified": "2025-04-11T16:51:56+00:00", + "lastReviewed": [ + "2023-02-09T01:00:00+00:00", + "2026-02-09T01:00:00+00:00" + ], + "reviewDue": "2026-02-09T01:00:00+00:00", + "keywords": "", + "alternateName": [ + "Premature ejaculation" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/ejaculation-problems/", + "name": "Ejaculation problems" + }, + { + "description": "Find out what you can do to treat a painful arm or elbow yourself, and when to get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-18T09:51:42+00:00", + "dateModified": "2025-04-16T08:43:13+00:00", + "lastReviewed": [ + "2024-01-26T18:00:00+00:00", + "2027-01-26T18:00:00+00:00" + ], + "reviewDue": "2027-01-26T18:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/elbow-and-arm-pain/", + "name": "Elbow and arm pain" + }, + { + "description": "Read about excessive daytime sleepiness (hypersomnia), a condition that causes you to feel very sleepy during the day, even if you had a good night's sleep.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition", + "Symptom" + ], + "datePublished": "2017-10-18T10:43:10+00:00", + "dateModified": "2025-04-11T16:19:23+00:00", + "lastReviewed": [ + "2023-06-23T00:00:00+00:00", + "2026-06-23T00:00:00+00:00" + ], + "reviewDue": "2026-06-23T00:00:00+00:00", + "keywords": "", + "alternateName": [ + "Hypersomnia" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/excessive-daytime-sleepiness-hypersomnia/", + "name": "Excessive daytime sleepiness (hypersomnia)" + }, + { + "description": "Find out what to do if you have a lump on your eyelid, or an eyelid that's swollen, sticky, itchy or painful.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-18T10:29:43+00:00", + "dateModified": "2025-04-16T08:45:26+00:00", + "lastReviewed": [ + "2023-11-17T01:00:00+00:00", + "2026-11-17T16:38:00+00:00" + ], + "reviewDue": "2026-11-17T16:38:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/eyelid-problems/", + "name": "Eyelid problems" + }, + { + "description": "Find out how to check if your child has a high temperature (fever), what you can do to bring their temperature down, and when to get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-24T15:25:05+00:00", + "dateModified": "2025-04-16T10:11:29+00:00", + "lastReviewed": [ + "2024-01-03T17:00:00+00:00", + "2027-01-03T17:00:00+00:00" + ], + "reviewDue": "2027-01-03T17:00:00+00:00", + "keywords": "", + "alternateName": [ + "Fever in children" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/fever-in-children/", + "name": "High temperature (fever) in children" + }, + { + "description": "Find out what heart palpitations are, what they feel like, common causes and when to get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-18T13:44:19+00:00", + "dateModified": "2025-04-16T10:10:30+00:00", + "lastReviewed": [ + "2022-06-07T00:00:00+00:00", + "2025-06-07T00:00:00+00:00" + ], + "reviewDue": "2025-06-07T00:00:00+00:00", + "keywords": "", + "alternateName": [ + "Palpitations", + "Ectopic beats" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/heart-palpitations/", + "name": "Heart palpitations" + }, + { + "description": "Find out about common causes of hip pain in adults, how you can help ease hip pain and when you should get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-18T15:45:13+00:00", + "dateModified": "2025-04-16T10:11:45+00:00", + "lastReviewed": [ + "2022-03-11T01:00:00+00:00", + "2025-03-11T01:00:00+00:00" + ], + "reviewDue": "2025-03-11T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/hip-pain/", + "name": "Hip pain in adults" + }, + { + "description": "Find out about indigestion, a common problem that causes pain or discomfort in your upper abdomen (dyspepsia) or behind your breastbone (heartburn).", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition", + "Symptom" + ], + "datePublished": "2017-10-18T18:33:34+00:00", + "dateModified": "2025-04-11T16:25:10+00:00", + "lastReviewed": [ + "2023-05-05T18:00:00+00:00", + "2026-05-05T18:00:00+00:00" + ], + "reviewDue": "2026-05-05T18:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/indigestion/", + "name": "Indigestion" + }, + { + "description": "Find out about hip pain in children, including what causes it, when to get medical help and how it can be treated.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2018-01-10T14:49:56+00:00", + "dateModified": "2025-04-16T10:12:02+00:00", + "lastReviewed": [ + "2024-04-03T13:39:00+00:00", + "2027-04-03T13:39:00+00:00" + ], + "reviewDue": "2027-04-03T13:39:00+00:00", + "keywords": "", + "alternateName": [ + "Irritable hip" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/hip-pain-children-irritable-hip/", + "name": "Hip pain in children (irritable hip)" + }, + { + "description": "Find out about common causes of joint pain, how you can help ease joint pain and when you should get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-18T16:51:32+00:00", + "dateModified": "2025-04-16T10:14:39+00:00", + "lastReviewed": [ + "2022-05-03T00:00:00+00:00", + "2025-05-03T00:00:00+00:00" + ], + "reviewDue": "2025-05-03T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/joint-pain/", + "name": "Joint pain" + }, + { + "description": "Sudden knee pain is often caused by overusing the knee or injuring it. Find out what you can do to treat it yourself and when to get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-19T07:07:57+00:00", + "dateModified": "2025-04-16T10:14:53+00:00", + "lastReviewed": [ + "2023-12-21T00:00:00+00:00", + "2026-12-21T00:00:00+00:00" + ], + "reviewDue": "2026-12-21T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/knee-pain/", + "name": "Knee pain" + }, + { + "description": "Find out more about limping in children, which is usually caused by something minor like a sprain or strain.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-19T12:52:42+00:00", + "dateModified": "2025-04-16T10:15:07+00:00", + "lastReviewed": [ + "2025-01-23T09:00:00+00:00", + "2028-01-23T09:00:00+00:00" + ], + "reviewDue": "2028-01-23T09:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/limp-in-children/", + "name": "Limping in children" + } + ], + "relatedLink": [ + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/symptoms/?page=1", + "name": "First Page", + "description": "Link to First Page", + "linkRelationship": "Pagination" + }, + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/symptoms/?page=6", + "name": "Last Page", + "description": "Link to Last Page", + "linkRelationship": "Pagination" + }, + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/symptoms/?page=1", + "name": "Self", + "description": "Link to nhs.uk Page", + "linkRelationship": "Self" + }, + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/symptoms/?page=2", + "name": "Next Page", + "description": "Link to Next Page", + "linkRelationship": "Pagination" + } + ] +} diff --git a/sandbox/responses/symptoms-root-page-6.json b/sandbox/responses/symptoms-root-page-6.json new file mode 100644 index 0000000..35af112 --- /dev/null +++ b/sandbox/responses/symptoms-root-page-6.json @@ -0,0 +1,257 @@ +{ + "@context": "http://schema.org", + "@type": "MedicalWebPage", + "name": "Symptoms A to Z", + "copyrightHolder": { + "name": "Crown Copyright", + "@type": "Organization" + }, + "license": "https://developer.api.nhs.uk/terms", + "author": { + "url": "https://www.nhs.uk", + "logo": "https://assets.nhs.uk/nhsuk-cms/images/nhs-attribution.width-510.png", + "email": "nhswebsite.servicedesk@nhs.net", + "@type": "Organization", + "name": "NHS website" + }, + "about": { + "@type": "WebPage", + "name": "Symptoms A to Z", + "alternateName": "" + }, + "description": "Find out about symptoms such as pain, stomach problems or skin symptoms, including causes, treatment and what to do.", + "url": "https://api.service.nhs.uk/nhs-website-content/symptoms/", + "genre": [], + "keywords": "", + "dateModified": "2025-04-16T12:23:46+00:00", + "breadcrumb": { + "@context": "http://schema.org", + "@type": "BreadcrumbList", + "itemListElement": [ + { + "@type": "ListItem", + "position": 0, + "item": { + "@id": "https://api.service.nhs.uk/nhs-website-content/symptoms/", + "name": "Symptoms A to Z", + "genre": [] + } + } + ] + }, + "contentSubTypes": [], + "significantLink": [ + { + "description": "Read more about what to do about pain in the back of your hand, when to get help and the common causes.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2022-03-30T15:04:59+00:00", + "dateModified": "2025-04-16T10:47:21+00:00", + "lastReviewed": [ + "2022-03-22T14:08:00+00:00", + "2025-03-22T14:08:00+00:00" + ], + "reviewDue": "2025-03-22T14:08:00+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/hand-pain/pain-in-the-back-of-the-hand/", + "name": "Pain in the back of the hand" + }, + { + "description": "Find out about lumps and spots on the penis, including what can cause them and when to get medical advice.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2024-06-27T13:41:32+00:00", + "dateModified": "2025-04-16T10:22:05+00:00", + "lastReviewed": [ + "2024-06-24T23:00:00+00:00", + "2027-06-24T23:00:00+00:00" + ], + "reviewDue": "2027-06-24T23:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/penis-lumps-and-spots/", + "name": "Penis lumps and spots" + }, + { + "description": "Find out about bleeding between periods or after sex, including what causes it and when to get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2024-08-14T15:17:21+00:00", + "dateModified": "2025-04-16T10:44:24+00:00", + "lastReviewed": [ + "2024-08-13T09:36:00+00:00", + "2027-08-13T09:36:00+00:00" + ], + "reviewDue": "2027-08-13T09:36:00+00:00", + "keywords": "", + "alternateName": [ + "Bleeding between periods or after sex" + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/vaginal-bleeding-between-periods-or-after-sex/", + "name": "Vaginal bleeding between periods or after sex" + }, + { + "description": "Read practical tips and advice on what to do if you're struggling with stress.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "WebPage", + "genre": [ + "Advice or information" + ], + "datePublished": "2021-02-02T15:19:30+00:00", + "dateModified": "2025-04-16T11:16:20+00:00", + "lastReviewed": [ + "2022-11-22T13:56:00+00:00", + "2025-11-22T13:56:00+00:00" + ], + "reviewDue": "2025-11-22T13:56:00+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/mental-health/feelings-symptoms-behaviours/feelings-and-symptoms/stress/", + "name": "Stress" + }, + { + "description": "Read practical tips and advice on what to do if you're struggling with anxiety, fear or panic", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "WebPage", + "genre": [ + "Advice or information" + ], + "datePublished": "2021-02-02T16:01:35+00:00", + "dateModified": "2025-04-16T11:15:42+00:00", + "lastReviewed": [ + "2023-01-17T14:01:00+00:00", + "2026-01-17T14:01:00+00:00" + ], + "reviewDue": "2026-01-17T14:01:00+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/mental-health/feelings-symptoms-behaviours/feelings-and-symptoms/anxiety-fear-panic/", + "name": "Anxiety, fear and panic" + }, + { + "description": "Read practical tips and advice on what to do if you're struggling with a low mood, sadness or depression.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "WebPage", + "genre": [ + "Advice or information" + ], + "datePublished": "2021-02-02T16:44:23+00:00", + "dateModified": "2025-04-16T11:17:35+00:00", + "lastReviewed": [ + "2022-11-23T17:34:00+00:00", + "2025-11-23T17:34:00+00:00" + ], + "reviewDue": "2025-11-23T17:34:00+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/mental-health/feelings-symptoms-behaviours/feelings-and-symptoms/low-mood-sadness-depression/", + "name": "Low mood, sadness and depression" + }, + { + "description": "Read practical tips and advice on what to do if you're struggling with anger", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "WebPage", + "genre": [ + "Advice or information" + ], + "datePublished": "2021-02-03T11:32:40+00:00", + "dateModified": "2025-04-16T11:14:26+00:00", + "lastReviewed": [ + "2022-11-23T17:02:00+00:00", + "2025-11-23T17:03:00+00:00" + ], + "reviewDue": "2025-11-23T17:03:00+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/mental-health/feelings-symptoms-behaviours/feelings-and-symptoms/anger/", + "name": "Anger" + }, + { + "description": "Find out about hallucinations and hearing things, including signs, causes and treatments.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2021-02-03T11:47:32+00:00", + "dateModified": "2025-04-16T10:08:08+00:00", + "lastReviewed": [ + "2022-02-15T00:00:00+00:00", + "2025-02-15T00:00:00+00:00" + ], + "reviewDue": "2025-02-15T00:00:00+00:00", + "keywords": "", + "alternateName": [ + "Hearing voices" + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/mental-health/feelings-symptoms-behaviours/feelings-and-symptoms/hallucinations-hearing-voices/", + "name": "Hallucinations and hearing voices" + } + ], + "relatedLink": [ + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/symptoms/?page=1", + "name": "First Page", + "description": "Link to First Page", + "linkRelationship": "Pagination" + }, + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/symptoms/?page=6", + "name": "Last Page", + "description": "Link to Last Page", + "linkRelationship": "Pagination" + }, + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/symptoms/?page=6", + "name": "Self", + "description": "Link to nhs.uk Page", + "linkRelationship": "Self" + } + ] +} diff --git a/sandbox/responses/tests-and-treatments-root-category-a.json b/sandbox/responses/tests-and-treatments-root-category-a.json new file mode 100644 index 0000000..7733ee9 --- /dev/null +++ b/sandbox/responses/tests-and-treatments-root-category-a.json @@ -0,0 +1,302 @@ +{ + "@context": "http://schema.org", + "@type": "MedicalWebPage", + "name": "Tests and treatments A to Z", + "copyrightHolder": { + "name": "Crown Copyright", + "@type": "Organization" + }, + "license": "https://developer.api.nhs.uk/terms", + "author": { + "url": "https://www.nhs.uk", + "logo": "https://assets.nhs.uk/nhsuk-cms/images/nhs-attribution.width-510.png", + "email": "nhswebsite.servicedesk@nhs.net", + "@type": "Organization", + "name": "NHS website" + }, + "about": { + "@type": "WebPage", + "name": "Tests and treatments A to Z", + "alternateName": "" + }, + "description": "Find out about surgery and procedures, tests, screening and other treatments, including why they're done and what happens.", + "url": "https://api.service.nhs.uk/nhs-website-content/tests-and-treatments/", + "genre": [], + "keywords": "", + "dateModified": "2025-04-16T12:24:19+00:00", + "breadcrumb": { + "@context": "http://schema.org", + "@type": "BreadcrumbList", + "itemListElement": [ + { + "@type": "ListItem", + "position": 0, + "item": { + "@id": "https://api.service.nhs.uk/nhs-website-content/tests-and-treatments/", + "name": "Tests and treatments A to Z", + "genre": [] + } + } + ] + }, + "contentSubTypes": [], + "significantLink": [ + { + "description": "Read about acupuncture, a treatment derived from ancient Chinese medicine in which fine needles are inserted at certain sites in the body to relieve or prevent health problems", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Treatment" + ], + "datePublished": "2017-10-17T15:41:00+00:00", + "dateModified": "2025-04-15T10:38:33+00:00", + "lastReviewed": [ + "2023-02-28T02:00:00+00:00", + "2026-02-28T03:00:00+00:00" + ], + "reviewDue": "2026-02-28T03:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acupuncture/", + "name": "Acupuncture" + }, + { + "description": "Find out what an adenoidectomy is, why it's done, what happens during the operation and the possible complications.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Treatment", + "Procedure" + ], + "datePublished": "2017-10-17T15:31:58+00:00", + "dateModified": "2025-04-15T10:38:48+00:00", + "lastReviewed": [ + "2023-03-10T15:37:00+00:00", + "2026-03-10T15:37:00+00:00" + ], + "reviewDue": "2026-03-10T15:37:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/adenoidectomy/", + "name": "Adenoidectomy" + }, + { + "description": "The Alexander technique teaches improved posture and movement, which is believed to help reduce and prevent problems caused by unhelpful habits.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Treatment" + ], + "datePublished": "2017-10-17T16:16:34+00:00", + "dateModified": "2025-04-15T10:39:02+00:00", + "lastReviewed": [ + "2024-10-23T00:00:00+00:00", + "2027-10-23T00:00:00+00:00" + ], + "reviewDue": "2027-10-23T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/alexander-technique/", + "name": "Alexander technique" + }, + { + "description": "Information about amputation, including why and how it's carried out, recovery and rehabilitation, prosthetics, stump care and possible complications.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Treatment", + "Procedure" + ], + "datePublished": "2017-10-17T15:47:57+00:00", + "dateModified": "2025-04-15T10:38:04+00:00", + "lastReviewed": [ + "2023-02-17T01:00:00+00:00", + "2026-02-17T01:00:00+00:00" + ], + "reviewDue": "2026-02-17T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/amputation/", + "name": "Amputation" + }, + { + "description": "Find out about abdominal aortic aneurysm (AAA) screening, including who it's offered to, why it's done and what happens.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Test" + ], + "datePublished": "2017-10-20T10:36:32+00:00", + "dateModified": "2025-04-15T10:40:07+00:00", + "lastReviewed": [ + "2024-11-11T01:00:00+00:00", + "2027-11-11T01:00:00+00:00" + ], + "reviewDue": "2027-11-11T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/abdominal-aortic-aneurysm-screening/", + "name": "Abdominal aortic aneurysm (AAA) screening" + }, + { + "description": "Find out why angiography is used, what happens during the procedure, and the possible risks involved. Also, read about the different types of angiography.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Test", + "Procedure" + ], + "datePublished": "2017-10-19T14:44:01+00:00", + "dateModified": "2025-04-15T10:45:54+00:00", + "lastReviewed": [ + "2023-01-30T00:00:00+00:00", + "2026-01-30T00:00:00+00:00" + ], + "reviewDue": "2026-01-30T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/angiography/", + "name": "Angiography" + }, + { + "description": "Read about aortic valve replacement, a type of open heart surgery that replaces faulty or or damaged valves.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Treatment", + "Procedure" + ], + "datePublished": "2017-10-20T12:19:54+00:00", + "dateModified": "2025-04-15T10:46:39+00:00", + "lastReviewed": [ + "2021-12-23T00:00:00+00:00", + "2024-12-23T00:00:00+00:00" + ], + "reviewDue": "2024-12-23T00:00:00+00:00", + "keywords": "", + "alternateName": [ + "Heart valve replacement" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/aortic-valve-replacement/", + "name": "Aortic valve replacement" + }, + { + "description": "Read about arthroscopy, a type of keyhole surgery used to diagnose and sometimes treat joint problems. Keyhole surgery is where only small cuts are made.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Test", + "Procedure" + ], + "datePublished": "2017-10-20T12:11:25+00:00", + "dateModified": "2025-04-15T10:47:00+00:00", + "lastReviewed": [ + "2022-06-09T00:00:00+00:00", + "2025-06-09T00:00:00+00:00" + ], + "reviewDue": "2025-06-09T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/arthroscopy/", + "name": "Arthroscopy" + }, + { + "description": "Find out about abortion, medicine or an operation to end a pregnancy. Find out why it's done, what it involves, possible complications and what to expect after the operation.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Procedure" + ], + "datePublished": "2024-12-13T15:49:34+00:00", + "dateModified": "2025-04-15T10:40:40+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/abortion/", + "name": "Abortion" + } + ] +} diff --git a/sandbox/responses/tests-and-treatments-root-category-b.json b/sandbox/responses/tests-and-treatments-root-category-b.json new file mode 100644 index 0000000..b4f9e8b --- /dev/null +++ b/sandbox/responses/tests-and-treatments-root-category-b.json @@ -0,0 +1,383 @@ +{ + "@context": "http://schema.org", + "@type": "MedicalWebPage", + "name": "Tests and treatments A to Z", + "copyrightHolder": { + "name": "Crown Copyright", + "@type": "Organization" + }, + "license": "https://developer.api.nhs.uk/terms", + "author": { + "url": "https://www.nhs.uk", + "logo": "https://assets.nhs.uk/nhsuk-cms/images/nhs-attribution.width-510.png", + "email": "nhswebsite.servicedesk@nhs.net", + "@type": "Organization", + "name": "NHS website" + }, + "about": { + "@type": "WebPage", + "name": "Tests and treatments A to Z", + "alternateName": "" + }, + "description": "Find out about surgery and procedures, tests, screening and other treatments, including why they're done and what happens.", + "url": "https://api.service.nhs.uk/nhs-website-content/tests-and-treatments/", + "genre": [], + "keywords": "", + "dateModified": "2025-04-16T12:24:19+00:00", + "breadcrumb": { + "@context": "http://schema.org", + "@type": "BreadcrumbList", + "itemListElement": [ + { + "@type": "ListItem", + "position": 0, + "item": { + "@id": "https://api.service.nhs.uk/nhs-website-content/tests-and-treatments/", + "name": "Tests and treatments A to Z", + "genre": [] + } + } + ] + }, + "contentSubTypes": [], + "significantLink": [ + { + "description": "Read about having a barium enema, including what you need to do to prepare, what happens during the test, and what happens afterwards.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Test", + "Procedure" + ], + "datePublished": "2017-10-17T16:09:38+00:00", + "dateModified": "2025-04-15T10:48:15+00:00", + "lastReviewed": [ + "2022-05-13T00:00:00+00:00", + "2025-05-13T00:00:00+00:00" + ], + "reviewDue": "2025-05-13T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/barium-enema/", + "name": "Barium enema" + }, + { + "description": "Find out about blood groups. There are 4 main blood groups – A, B, AB and O.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "WebPage", + "genre": [ + "Advice or information" + ], + "datePublished": "2017-10-17T16:22:10+00:00", + "dateModified": "2025-04-15T11:00:33+00:00", + "lastReviewed": [ + "2023-05-10T08:40:00+00:00", + "2026-05-10T08:40:00+00:00" + ], + "reviewDue": "2026-05-10T08:40:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/blood-groups/", + "name": "Blood groups" + }, + { + "description": "Find out why a blood pressure test is important, how it’s done and what your blood pressure reading might mean.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Test" + ], + "datePublished": "2018-07-30T13:46:29+00:00", + "dateModified": "2025-04-15T14:46:03+00:00", + "lastReviewed": [ + "2023-07-11T03:00:00+00:00", + "2026-07-11T03:00:00+00:00" + ], + "reviewDue": "2026-07-11T03:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/blood-pressure-test/", + "name": "Blood pressure test" + }, + { + "description": "Find out whether you might be eligible for breast reduction surgery on the NHS and what to do if you think you might qualify.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "WebPage", + "genre": [ + "Advice or information" + ], + "datePublished": "2017-10-17T16:38:33+00:00", + "dateModified": "2025-04-15T12:37:42+00:00", + "lastReviewed": [ + "2022-11-14T01:00:00+00:00", + "2025-11-14T01:00:00+00:00" + ], + "reviewDue": "2025-11-14T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/breast-reduction-on-the-nhs/", + "name": "Breast reduction on the NHS" + }, + { + "description": "Find out more about having a biopsy, which involves taking a small sample of body tissue so it can be examined under a microscope.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Test", + "Procedure" + ], + "datePublished": "2017-10-20T14:01:58+00:00", + "dateModified": "2025-04-15T14:44:36+00:00", + "lastReviewed": [ + "2021-08-10T00:00:00+00:00", + "2024-08-10T00:00:00+00:00" + ], + "reviewDue": "2024-08-10T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/biopsy/", + "name": "Biopsy" + }, + { + "description": "Find out about blood tests, including why they’re done, how to prepare, what happens at the test, and when you’ll get your results.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Test" + ], + "datePublished": "2018-10-03T20:00:14+00:00", + "dateModified": "2025-04-15T11:00:53+00:00", + "lastReviewed": [ + "2023-11-02T01:00:00+00:00", + "2026-11-02T01:00:00+00:00" + ], + "reviewDue": "2026-11-02T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/blood-tests/", + "name": "Blood tests" + }, + { + "description": "Find out about bowel cancer screening, including why it’s done, who it’s for, how to do the test, and when you’ll get your results.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Test" + ], + "datePublished": "2017-10-20T14:07:54+00:00", + "dateModified": "2025-04-15T11:01:54+00:00", + "lastReviewed": [ + "2024-10-10T23:00:00+00:00", + "2027-10-10T23:00:00+00:00" + ], + "reviewDue": "2027-10-10T23:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bowel-cancer-screening/", + "name": "Bowel cancer screening" + }, + { + "description": "A DEXA scan is a type of X-ray that measures bone mineral density (BMD). It's also known as a DXA, dual X-ray absorptiometry, a bone density scan or a bone densitometry scan.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Test" + ], + "datePublished": "2017-10-19T15:18:46+00:00", + "dateModified": "2025-04-15T11:01:30+00:00", + "lastReviewed": [ + "2022-10-04T23:00:00+00:00", + "2025-10-04T23:00:00+00:00" + ], + "reviewDue": "2025-10-04T23:00:00+00:00", + "keywords": "", + "alternateName": [ + "DEXA scan" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/dexa-scan/", + "name": "Bone density scan (DEXA scan)" + }, + { + "description": "Find out about blood transfusions, what they are, why they are done and what happens during the procedure.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Treatment", + "Procedure" + ], + "datePublished": "2017-10-19T07:24:53+00:00", + "dateModified": "2025-04-15T11:01:06+00:00", + "lastReviewed": [ + "2025-01-16T00:00:00+00:00", + "2028-01-16T00:00:00+00:00" + ], + "reviewDue": "2028-01-16T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/blood-transfusion/", + "name": "Blood transfusion" + }, + { + "description": "Find out about NHS breast screening, including when you'll be invited, how to book, what happens and what your result means.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Test" + ], + "datePublished": "2021-09-22T09:03:18+00:00", + "dateModified": "2025-04-15T12:38:01+00:00", + "keywords": "", + "alternateName": [ + "Mammogram" + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/breast-screening-mammogram/", + "name": "Breast screening (mammogram)" + }, + { + "description": "Find out about braces and orthodontics, including how much they cost on the NHS or privately, and how to care for your teeth while wearing braces.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "WebPage", + "genre": [ + "Advice or information" + ], + "datePublished": "2022-02-24T16:46:44+00:00", + "dateModified": "2025-04-15T12:37:25+00:00", + "lastReviewed": [ + "2022-01-25T16:40:00+00:00", + "2025-01-25T16:40:00+00:00" + ], + "reviewDue": "2025-01-25T16:40:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/braces-and-orthodontics/", + "name": "Braces and orthodontics" + }, + { + "description": "Find out about the BCG vaccine for tuberculosis (TB), including who should have it and possible side effects.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Vaccine" + ], + "datePublished": "2024-03-06T17:39:52+00:00", + "dateModified": "2025-04-15T14:20:32+00:00", + "lastReviewed": [ + "2023-12-04T16:56:00+00:00", + "2026-12-04T16:56:00+00:00" + ], + "reviewDue": "2026-12-04T16:56:00+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/vaccinations/bcg-vaccine-for-tuberculosis-tb/", + "name": "BCG vaccine for tuberculosis (TB)" + } + ] +} diff --git a/sandbox/responses/tests-and-treatments-root-no-params.json b/sandbox/responses/tests-and-treatments-root-no-params.json new file mode 100644 index 0000000..d8a6b29 --- /dev/null +++ b/sandbox/responses/tests-and-treatments-root-no-params.json @@ -0,0 +1,805 @@ +{ + "@context": "http://schema.org", + "@type": "MedicalWebPage", + "name": "Tests and treatments A to Z", + "copyrightHolder": { + "name": "Crown Copyright", + "@type": "Organization" + }, + "license": "https://developer.api.nhs.uk/terms", + "author": { + "url": "https://www.nhs.uk", + "logo": "https://assets.nhs.uk/nhsuk-cms/images/nhs-attribution.width-510.png", + "email": "nhswebsite.servicedesk@nhs.net", + "@type": "Organization", + "name": "NHS website" + }, + "about": { + "@type": "WebPage", + "name": "Tests and treatments A to Z", + "alternateName": "" + }, + "description": "Find out about surgery and procedures, tests, screening and other treatments, including why they're done and what happens.", + "url": "https://api.service.nhs.uk/nhs-website-content/tests-and-treatments/", + "genre": [], + "keywords": "", + "dateModified": "2025-04-16T12:24:19+00:00", + "breadcrumb": { + "@context": "http://schema.org", + "@type": "BreadcrumbList", + "itemListElement": [ + { + "@type": "ListItem", + "position": 0, + "item": { + "@id": "https://api.service.nhs.uk/nhs-website-content/tests-and-treatments/", + "name": "Tests and treatments A to Z", + "genre": [] + } + } + ] + }, + "contentSubTypes": [], + "significantLink": [ + { + "description": "Find out when your urine albumin to creatinine ratio (ACR) should\r\nbe measured. ACR values can help identify kidney disease that occurs as a complication of diabetes.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Test" + ], + "datePublished": "2018-08-28T16:15:09+00:00", + "dateModified": "2025-04-15T14:09:45+00:00", + "lastReviewed": [ + "2022-05-24T00:00:00+00:00", + "2025-05-24T00:00:00+00:00" + ], + "reviewDue": "2025-05-24T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acr-test/", + "name": "Urine albumin to creatinine ratio (ACR)" + }, + { + "description": "Read about acupuncture, a treatment derived from ancient Chinese medicine in which fine needles are inserted at certain sites in the body to relieve or prevent health problems", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Treatment" + ], + "datePublished": "2017-10-17T15:41:00+00:00", + "dateModified": "2025-04-15T10:38:33+00:00", + "lastReviewed": [ + "2023-02-28T02:00:00+00:00", + "2026-02-28T03:00:00+00:00" + ], + "reviewDue": "2026-02-28T03:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acupuncture/", + "name": "Acupuncture" + }, + { + "description": "Find out what an adenoidectomy is, why it's done, what happens during the operation and the possible complications.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Treatment", + "Procedure" + ], + "datePublished": "2017-10-17T15:31:58+00:00", + "dateModified": "2025-04-15T10:38:48+00:00", + "lastReviewed": [ + "2023-03-10T15:37:00+00:00", + "2026-03-10T15:37:00+00:00" + ], + "reviewDue": "2026-03-10T15:37:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/adenoidectomy/", + "name": "Adenoidectomy" + }, + { + "description": "The Alexander technique teaches improved posture and movement, which is believed to help reduce and prevent problems caused by unhelpful habits.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Treatment" + ], + "datePublished": "2017-10-17T16:16:34+00:00", + "dateModified": "2025-04-15T10:39:02+00:00", + "lastReviewed": [ + "2024-10-23T00:00:00+00:00", + "2027-10-23T00:00:00+00:00" + ], + "reviewDue": "2027-10-23T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/alexander-technique/", + "name": "Alexander technique" + }, + { + "description": "Information about amputation, including why and how it's carried out, recovery and rehabilitation, prosthetics, stump care and possible complications.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Treatment", + "Procedure" + ], + "datePublished": "2017-10-17T15:47:57+00:00", + "dateModified": "2025-04-15T10:38:04+00:00", + "lastReviewed": [ + "2023-02-17T01:00:00+00:00", + "2026-02-17T01:00:00+00:00" + ], + "reviewDue": "2026-02-17T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/amputation/", + "name": "Amputation" + }, + { + "description": "Find out about intrauterine (artificial) insemination, or IUI, a procedure to help you get pregnant where sperm are put directly into your womb.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Procedure" + ], + "datePublished": "2017-10-17T16:07:35+00:00", + "dateModified": "2025-04-16T10:12:35+00:00", + "lastReviewed": [ + "2024-06-24T23:00:00+00:00", + "2027-06-24T23:00:00+00:00" + ], + "reviewDue": "2027-06-24T23:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/intrauterine-insemination-iui/", + "name": "Intrauterine insemination (IUI)" + }, + { + "description": "Read about having a barium enema, including what you need to do to prepare, what happens during the test, and what happens afterwards.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Test", + "Procedure" + ], + "datePublished": "2017-10-17T16:09:38+00:00", + "dateModified": "2025-04-15T10:48:15+00:00", + "lastReviewed": [ + "2022-05-13T00:00:00+00:00", + "2025-05-13T00:00:00+00:00" + ], + "reviewDue": "2025-05-13T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/barium-enema/", + "name": "Barium enema" + }, + { + "description": "Find out about blood groups. There are 4 main blood groups – A, B, AB and O.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "WebPage", + "genre": [ + "Advice or information" + ], + "datePublished": "2017-10-17T16:22:10+00:00", + "dateModified": "2025-04-15T11:00:33+00:00", + "lastReviewed": [ + "2023-05-10T08:40:00+00:00", + "2026-05-10T08:40:00+00:00" + ], + "reviewDue": "2026-05-10T08:40:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/blood-groups/", + "name": "Blood groups" + }, + { + "description": "Find out why a blood pressure test is important, how it’s done and what your blood pressure reading might mean.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Test" + ], + "datePublished": "2018-07-30T13:46:29+00:00", + "dateModified": "2025-04-15T14:46:03+00:00", + "lastReviewed": [ + "2023-07-11T03:00:00+00:00", + "2026-07-11T03:00:00+00:00" + ], + "reviewDue": "2026-07-11T03:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/blood-pressure-test/", + "name": "Blood pressure test" + }, + { + "description": "Find out whether you might be eligible for breast reduction surgery on the NHS and what to do if you think you might qualify.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "WebPage", + "genre": [ + "Advice or information" + ], + "datePublished": "2017-10-17T16:38:33+00:00", + "dateModified": "2025-04-15T12:37:42+00:00", + "lastReviewed": [ + "2022-11-14T01:00:00+00:00", + "2025-11-14T01:00:00+00:00" + ], + "reviewDue": "2025-11-14T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/breast-reduction-on-the-nhs/", + "name": "Breast reduction on the NHS" + }, + { + "description": "Find out what chiropractic is, how you can get it on the NHS or privately, and what the treatment involves.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Treatment" + ], + "datePublished": "2017-10-18T08:28:36+00:00", + "dateModified": "2025-04-15T12:42:28+00:00", + "lastReviewed": [ + "2023-09-06T00:00:00+00:00", + "2026-09-06T00:00:00+00:00" + ], + "reviewDue": "2026-09-06T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/chiropractic/", + "name": "Chiropractic" + }, + { + "description": "Read about circumcision in boys, including why it's carried out, medical reasons for circumcision, what the procedure involves, recovery and risks.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Treatment", + "Procedure" + ], + "datePublished": "2017-10-18T11:29:35+00:00", + "dateModified": "2025-04-15T12:42:54+00:00", + "lastReviewed": [ + "2022-06-26T23:00:00+00:00", + "2025-06-26T23:00:00+00:00" + ], + "reviewDue": "2025-06-26T23:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/circumcision-in-boys/", + "name": "Circumcision in boys" + }, + { + "description": "Read about the medical reasons why circumcision in men may be necessary and what happens before, during and after the procedure.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Treatment", + "Procedure" + ], + "datePublished": "2017-10-18T10:51:56+00:00", + "dateModified": "2025-04-15T12:43:21+00:00", + "lastReviewed": [ + "2022-09-20T23:00:00+00:00", + "2025-09-20T23:00:00+00:00" + ], + "reviewDue": "2025-09-20T23:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/circumcision-in-men/", + "name": "Circumcision in men" + }, + { + "description": "Find out more about why CT scans are done and what happens before, during and after the scan.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Test" + ], + "datePublished": "2017-10-18T08:39:28+00:00", + "dateModified": "2025-04-15T12:48:55+00:00", + "lastReviewed": [ + "2023-11-08T01:00:00+00:00", + "2026-11-08T01:00:00+00:00" + ], + "reviewDue": "2026-11-08T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/ct-scan/", + "name": "CT scan" + }, + { + "description": "Find out about dentures (false teeth), including when they’re needed, how to get them, how they’re made and fitted and how to look after them.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Treatment" + ], + "datePublished": "2017-10-18T09:39:42+00:00", + "dateModified": "2025-04-15T12:50:24+00:00", + "lastReviewed": [ + "2025-03-19T01:00:00+00:00", + "2028-03-19T01:00:00+00:00" + ], + "reviewDue": "2028-03-19T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/dentures/", + "name": "Dentures (false teeth)" + }, + { + "description": "Find out who should have diabetic eye screening, why it's done and what happens, and when you’ll get your results.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Test" + ], + "datePublished": "2017-10-18T09:19:09+00:00", + "dateModified": "2025-04-15T12:50:39+00:00", + "lastReviewed": [ + "2024-10-25T00:00:00+00:00", + "2027-10-25T00:00:00+00:00" + ], + "reviewDue": "2027-10-25T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/diabetic-eye-screening/", + "name": "Diabetic eye screening" + }, + { + "description": "Read about echocardiograms, including why they're done, what happens during the test, and what the risks are.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Test" + ], + "datePublished": "2017-10-18T09:55:44+00:00", + "dateModified": "2025-04-15T12:58:32+00:00", + "lastReviewed": [ + "2022-03-28T00:00:00+00:00", + "2025-03-28T01:00:00+00:00" + ], + "reviewDue": "2025-03-28T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/echocardiogram/", + "name": "Echocardiogram" + }, + { + "description": "Find out more about ECGs (electrocardiograms), including why they're done, the different types, and what happens.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Test" + ], + "datePublished": "2017-10-18T10:18:23+00:00", + "dateModified": "2025-04-15T12:58:50+00:00", + "lastReviewed": [ + "2023-11-09T01:00:00+00:00", + "2026-11-09T01:00:00+00:00" + ], + "reviewDue": "2026-11-09T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/electrocardiogram/", + "name": "Electrocardiogram (ECG)" + }, + { + "description": "Find out about an electroencephalogram (EEG), which records brain activity, and when this type of test may be used.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Test" + ], + "datePublished": "2017-10-18T09:46:42+00:00", + "dateModified": "2025-04-15T12:59:07+00:00", + "lastReviewed": [ + "2022-01-05T04:00:00+00:00", + "2025-01-05T04:00:00+00:00" + ], + "reviewDue": "2025-01-05T04:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/electroencephalogram/", + "name": "Electroencephalogram (EEG)" + }, + { + "description": "Find out why and when an electrolyte test may be needed. Also, read about the possible treatments that may be recommended if you have an electrolyte imbalance.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Test" + ], + "datePublished": "2018-08-29T14:19:41+00:00", + "dateModified": "2025-04-15T12:59:28+00:00", + "lastReviewed": [ + "2022-03-15T01:00:00+00:00", + "2025-03-15T01:00:00+00:00" + ], + "reviewDue": "2025-03-15T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/electrolyte-test/", + "name": "Electrolyte test" + }, + { + "description": "Read more about emollients, which are moisturising treatments applied directly to the skin. They're often used to treat skin conditions like eczema.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Medicine" + ], + "datePublished": "2017-10-18T14:01:06+00:00", + "dateModified": "2025-04-15T12:59:47+00:00", + "lastReviewed": [ + "2023-10-24T00:00:00+00:00", + "2026-10-24T00:00:00+00:00" + ], + "reviewDue": "2026-10-24T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/emollients/", + "name": "Emollients" + }, + { + "description": "Find out about the different types of endoscopy. The type of endoscopy you have will depend on your symptoms.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "WebPage", + "genre": [ + "Advice or information" + ], + "datePublished": "2017-10-18T11:53:17+00:00", + "dateModified": "2025-04-15T13:00:14+00:00", + "lastReviewed": [ + "2022-02-08T12:27:00+00:00", + "2025-02-08T12:27:00+00:00" + ], + "reviewDue": "2025-02-08T12:27:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/endoscopy/", + "name": "Endoscopy" + }, + { + "description": "Find out about enhanced recovery, an evidence-based approach that helps people to recover more quickly after having major surgery.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "WebPage", + "genre": [ + "Advice or information" + ], + "datePublished": "2017-10-18T11:58:19+00:00", + "dateModified": "2025-04-15T13:00:25+00:00", + "lastReviewed": [ + "2023-04-18T12:07:00+00:00", + "2026-04-18T12:07:00+00:00" + ], + "reviewDue": "2026-04-18T12:07:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/enhanced-recovery/", + "name": "Enhanced recovery" + }, + { + "description": "Read about euthanasia (deliberately ending a person's life to relieve suffering) and assisted suicide (deliberately assisting a person to kill themselves). Both are illegal in England.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "WebPage", + "genre": [ + "Advice or information" + ], + "datePublished": "2018-06-07T10:29:10+00:00", + "dateModified": "2025-04-15T13:00:47+00:00", + "lastReviewed": [ + "2023-07-12T00:00:00+00:00", + "2026-07-12T00:00:00+00:00" + ], + "reviewDue": "2026-07-12T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/euthanasia-and-assisted-suicide/", + "name": "Euthanasia and assisted suicide" + }, + { + "description": "Read about the routine eye checks that newborn babies have and eye tests for children. Eye checks are important because they allow any problems to be identified early on in a child's development.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Test" + ], + "datePublished": "2017-10-18T11:14:11+00:00", + "dateModified": "2025-04-15T13:12:56+00:00", + "lastReviewed": [ + "2023-03-07T01:00:00+00:00", + "2026-03-07T01:00:00+00:00" + ], + "reviewDue": "2026-03-07T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/eye-tests-in-children/", + "name": "Eye tests for children" + } + ], + "relatedLink": [ + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/tests-and-treatments/?page=1", + "name": "First Page", + "description": "Link to First Page", + "linkRelationship": "Pagination" + }, + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/tests-and-treatments/?page=7", + "name": "Last Page", + "description": "Link to Last Page", + "linkRelationship": "Pagination" + }, + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/tests-and-treatments/", + "name": "Self", + "description": "Link to nhs.uk Page", + "linkRelationship": "Self" + }, + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/tests-and-treatments/?page=2", + "name": "Next Page", + "description": "Link to Next Page", + "linkRelationship": "Pagination" + } + ] +} diff --git a/sandbox/responses/tests-and-treatments-root-page-1.json b/sandbox/responses/tests-and-treatments-root-page-1.json new file mode 100644 index 0000000..62e82ea --- /dev/null +++ b/sandbox/responses/tests-and-treatments-root-page-1.json @@ -0,0 +1,805 @@ +{ + "@context": "http://schema.org", + "@type": "MedicalWebPage", + "name": "Tests and treatments A to Z", + "copyrightHolder": { + "name": "Crown Copyright", + "@type": "Organization" + }, + "license": "https://developer.api.nhs.uk/terms", + "author": { + "url": "https://www.nhs.uk", + "logo": "https://assets.nhs.uk/nhsuk-cms/images/nhs-attribution.width-510.png", + "email": "nhswebsite.servicedesk@nhs.net", + "@type": "Organization", + "name": "NHS website" + }, + "about": { + "@type": "WebPage", + "name": "Tests and treatments A to Z", + "alternateName": "" + }, + "description": "Find out about surgery and procedures, tests, screening and other treatments, including why they're done and what happens.", + "url": "https://api.service.nhs.uk/nhs-website-content/tests-and-treatments/", + "genre": [], + "keywords": "", + "dateModified": "2025-04-16T12:24:19+00:00", + "breadcrumb": { + "@context": "http://schema.org", + "@type": "BreadcrumbList", + "itemListElement": [ + { + "@type": "ListItem", + "position": 0, + "item": { + "@id": "https://api.service.nhs.uk/nhs-website-content/tests-and-treatments/", + "name": "Tests and treatments A to Z", + "genre": [] + } + } + ] + }, + "contentSubTypes": [], + "significantLink": [ + { + "description": "Find out when your urine albumin to creatinine ratio (ACR) should\r\nbe measured. ACR values can help identify kidney disease that occurs as a complication of diabetes.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Test" + ], + "datePublished": "2018-08-28T16:15:09+00:00", + "dateModified": "2025-04-15T14:09:45+00:00", + "lastReviewed": [ + "2022-05-24T00:00:00+00:00", + "2025-05-24T00:00:00+00:00" + ], + "reviewDue": "2025-05-24T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acr-test/", + "name": "Urine albumin to creatinine ratio (ACR)" + }, + { + "description": "Read about acupuncture, a treatment derived from ancient Chinese medicine in which fine needles are inserted at certain sites in the body to relieve or prevent health problems", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Treatment" + ], + "datePublished": "2017-10-17T15:41:00+00:00", + "dateModified": "2025-04-15T10:38:33+00:00", + "lastReviewed": [ + "2023-02-28T02:00:00+00:00", + "2026-02-28T03:00:00+00:00" + ], + "reviewDue": "2026-02-28T03:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acupuncture/", + "name": "Acupuncture" + }, + { + "description": "Find out what an adenoidectomy is, why it's done, what happens during the operation and the possible complications.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Treatment", + "Procedure" + ], + "datePublished": "2017-10-17T15:31:58+00:00", + "dateModified": "2025-04-15T10:38:48+00:00", + "lastReviewed": [ + "2023-03-10T15:37:00+00:00", + "2026-03-10T15:37:00+00:00" + ], + "reviewDue": "2026-03-10T15:37:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/adenoidectomy/", + "name": "Adenoidectomy" + }, + { + "description": "The Alexander technique teaches improved posture and movement, which is believed to help reduce and prevent problems caused by unhelpful habits.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Treatment" + ], + "datePublished": "2017-10-17T16:16:34+00:00", + "dateModified": "2025-04-15T10:39:02+00:00", + "lastReviewed": [ + "2024-10-23T00:00:00+00:00", + "2027-10-23T00:00:00+00:00" + ], + "reviewDue": "2027-10-23T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/alexander-technique/", + "name": "Alexander technique" + }, + { + "description": "Information about amputation, including why and how it's carried out, recovery and rehabilitation, prosthetics, stump care and possible complications.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Treatment", + "Procedure" + ], + "datePublished": "2017-10-17T15:47:57+00:00", + "dateModified": "2025-04-15T10:38:04+00:00", + "lastReviewed": [ + "2023-02-17T01:00:00+00:00", + "2026-02-17T01:00:00+00:00" + ], + "reviewDue": "2026-02-17T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/amputation/", + "name": "Amputation" + }, + { + "description": "Find out about intrauterine (artificial) insemination, or IUI, a procedure to help you get pregnant where sperm are put directly into your womb.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Procedure" + ], + "datePublished": "2017-10-17T16:07:35+00:00", + "dateModified": "2025-04-16T10:12:35+00:00", + "lastReviewed": [ + "2024-06-24T23:00:00+00:00", + "2027-06-24T23:00:00+00:00" + ], + "reviewDue": "2027-06-24T23:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/intrauterine-insemination-iui/", + "name": "Intrauterine insemination (IUI)" + }, + { + "description": "Read about having a barium enema, including what you need to do to prepare, what happens during the test, and what happens afterwards.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Test", + "Procedure" + ], + "datePublished": "2017-10-17T16:09:38+00:00", + "dateModified": "2025-04-15T10:48:15+00:00", + "lastReviewed": [ + "2022-05-13T00:00:00+00:00", + "2025-05-13T00:00:00+00:00" + ], + "reviewDue": "2025-05-13T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/barium-enema/", + "name": "Barium enema" + }, + { + "description": "Find out about blood groups. There are 4 main blood groups – A, B, AB and O.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "WebPage", + "genre": [ + "Advice or information" + ], + "datePublished": "2017-10-17T16:22:10+00:00", + "dateModified": "2025-04-15T11:00:33+00:00", + "lastReviewed": [ + "2023-05-10T08:40:00+00:00", + "2026-05-10T08:40:00+00:00" + ], + "reviewDue": "2026-05-10T08:40:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/blood-groups/", + "name": "Blood groups" + }, + { + "description": "Find out why a blood pressure test is important, how it’s done and what your blood pressure reading might mean.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Test" + ], + "datePublished": "2018-07-30T13:46:29+00:00", + "dateModified": "2025-04-15T14:46:03+00:00", + "lastReviewed": [ + "2023-07-11T03:00:00+00:00", + "2026-07-11T03:00:00+00:00" + ], + "reviewDue": "2026-07-11T03:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/blood-pressure-test/", + "name": "Blood pressure test" + }, + { + "description": "Find out whether you might be eligible for breast reduction surgery on the NHS and what to do if you think you might qualify.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "WebPage", + "genre": [ + "Advice or information" + ], + "datePublished": "2017-10-17T16:38:33+00:00", + "dateModified": "2025-04-15T12:37:42+00:00", + "lastReviewed": [ + "2022-11-14T01:00:00+00:00", + "2025-11-14T01:00:00+00:00" + ], + "reviewDue": "2025-11-14T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/breast-reduction-on-the-nhs/", + "name": "Breast reduction on the NHS" + }, + { + "description": "Find out what chiropractic is, how you can get it on the NHS or privately, and what the treatment involves.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Treatment" + ], + "datePublished": "2017-10-18T08:28:36+00:00", + "dateModified": "2025-04-15T12:42:28+00:00", + "lastReviewed": [ + "2023-09-06T00:00:00+00:00", + "2026-09-06T00:00:00+00:00" + ], + "reviewDue": "2026-09-06T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/chiropractic/", + "name": "Chiropractic" + }, + { + "description": "Read about circumcision in boys, including why it's carried out, medical reasons for circumcision, what the procedure involves, recovery and risks.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Treatment", + "Procedure" + ], + "datePublished": "2017-10-18T11:29:35+00:00", + "dateModified": "2025-04-15T12:42:54+00:00", + "lastReviewed": [ + "2022-06-26T23:00:00+00:00", + "2025-06-26T23:00:00+00:00" + ], + "reviewDue": "2025-06-26T23:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/circumcision-in-boys/", + "name": "Circumcision in boys" + }, + { + "description": "Read about the medical reasons why circumcision in men may be necessary and what happens before, during and after the procedure.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Treatment", + "Procedure" + ], + "datePublished": "2017-10-18T10:51:56+00:00", + "dateModified": "2025-04-15T12:43:21+00:00", + "lastReviewed": [ + "2022-09-20T23:00:00+00:00", + "2025-09-20T23:00:00+00:00" + ], + "reviewDue": "2025-09-20T23:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/circumcision-in-men/", + "name": "Circumcision in men" + }, + { + "description": "Find out more about why CT scans are done and what happens before, during and after the scan.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Test" + ], + "datePublished": "2017-10-18T08:39:28+00:00", + "dateModified": "2025-04-15T12:48:55+00:00", + "lastReviewed": [ + "2023-11-08T01:00:00+00:00", + "2026-11-08T01:00:00+00:00" + ], + "reviewDue": "2026-11-08T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/ct-scan/", + "name": "CT scan" + }, + { + "description": "Find out about dentures (false teeth), including when they’re needed, how to get them, how they’re made and fitted and how to look after them.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Treatment" + ], + "datePublished": "2017-10-18T09:39:42+00:00", + "dateModified": "2025-04-15T12:50:24+00:00", + "lastReviewed": [ + "2025-03-19T01:00:00+00:00", + "2028-03-19T01:00:00+00:00" + ], + "reviewDue": "2028-03-19T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/dentures/", + "name": "Dentures (false teeth)" + }, + { + "description": "Find out who should have diabetic eye screening, why it's done and what happens, and when you’ll get your results.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Test" + ], + "datePublished": "2017-10-18T09:19:09+00:00", + "dateModified": "2025-04-15T12:50:39+00:00", + "lastReviewed": [ + "2024-10-25T00:00:00+00:00", + "2027-10-25T00:00:00+00:00" + ], + "reviewDue": "2027-10-25T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/diabetic-eye-screening/", + "name": "Diabetic eye screening" + }, + { + "description": "Read about echocardiograms, including why they're done, what happens during the test, and what the risks are.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Test" + ], + "datePublished": "2017-10-18T09:55:44+00:00", + "dateModified": "2025-04-15T12:58:32+00:00", + "lastReviewed": [ + "2022-03-28T00:00:00+00:00", + "2025-03-28T01:00:00+00:00" + ], + "reviewDue": "2025-03-28T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/echocardiogram/", + "name": "Echocardiogram" + }, + { + "description": "Find out more about ECGs (electrocardiograms), including why they're done, the different types, and what happens.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Test" + ], + "datePublished": "2017-10-18T10:18:23+00:00", + "dateModified": "2025-04-15T12:58:50+00:00", + "lastReviewed": [ + "2023-11-09T01:00:00+00:00", + "2026-11-09T01:00:00+00:00" + ], + "reviewDue": "2026-11-09T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/electrocardiogram/", + "name": "Electrocardiogram (ECG)" + }, + { + "description": "Find out about an electroencephalogram (EEG), which records brain activity, and when this type of test may be used.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Test" + ], + "datePublished": "2017-10-18T09:46:42+00:00", + "dateModified": "2025-04-15T12:59:07+00:00", + "lastReviewed": [ + "2022-01-05T04:00:00+00:00", + "2025-01-05T04:00:00+00:00" + ], + "reviewDue": "2025-01-05T04:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/electroencephalogram/", + "name": "Electroencephalogram (EEG)" + }, + { + "description": "Find out why and when an electrolyte test may be needed. Also, read about the possible treatments that may be recommended if you have an electrolyte imbalance.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Test" + ], + "datePublished": "2018-08-29T14:19:41+00:00", + "dateModified": "2025-04-15T12:59:28+00:00", + "lastReviewed": [ + "2022-03-15T01:00:00+00:00", + "2025-03-15T01:00:00+00:00" + ], + "reviewDue": "2025-03-15T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/electrolyte-test/", + "name": "Electrolyte test" + }, + { + "description": "Read more about emollients, which are moisturising treatments applied directly to the skin. They're often used to treat skin conditions like eczema.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Medicine" + ], + "datePublished": "2017-10-18T14:01:06+00:00", + "dateModified": "2025-04-15T12:59:47+00:00", + "lastReviewed": [ + "2023-10-24T00:00:00+00:00", + "2026-10-24T00:00:00+00:00" + ], + "reviewDue": "2026-10-24T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/emollients/", + "name": "Emollients" + }, + { + "description": "Find out about the different types of endoscopy. The type of endoscopy you have will depend on your symptoms.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "WebPage", + "genre": [ + "Advice or information" + ], + "datePublished": "2017-10-18T11:53:17+00:00", + "dateModified": "2025-04-15T13:00:14+00:00", + "lastReviewed": [ + "2022-02-08T12:27:00+00:00", + "2025-02-08T12:27:00+00:00" + ], + "reviewDue": "2025-02-08T12:27:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/endoscopy/", + "name": "Endoscopy" + }, + { + "description": "Find out about enhanced recovery, an evidence-based approach that helps people to recover more quickly after having major surgery.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "WebPage", + "genre": [ + "Advice or information" + ], + "datePublished": "2017-10-18T11:58:19+00:00", + "dateModified": "2025-04-15T13:00:25+00:00", + "lastReviewed": [ + "2023-04-18T12:07:00+00:00", + "2026-04-18T12:07:00+00:00" + ], + "reviewDue": "2026-04-18T12:07:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/enhanced-recovery/", + "name": "Enhanced recovery" + }, + { + "description": "Read about euthanasia (deliberately ending a person's life to relieve suffering) and assisted suicide (deliberately assisting a person to kill themselves). Both are illegal in England.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "WebPage", + "genre": [ + "Advice or information" + ], + "datePublished": "2018-06-07T10:29:10+00:00", + "dateModified": "2025-04-15T13:00:47+00:00", + "lastReviewed": [ + "2023-07-12T00:00:00+00:00", + "2026-07-12T00:00:00+00:00" + ], + "reviewDue": "2026-07-12T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/euthanasia-and-assisted-suicide/", + "name": "Euthanasia and assisted suicide" + }, + { + "description": "Read about the routine eye checks that newborn babies have and eye tests for children. Eye checks are important because they allow any problems to be identified early on in a child's development.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Test" + ], + "datePublished": "2017-10-18T11:14:11+00:00", + "dateModified": "2025-04-15T13:12:56+00:00", + "lastReviewed": [ + "2023-03-07T01:00:00+00:00", + "2026-03-07T01:00:00+00:00" + ], + "reviewDue": "2026-03-07T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/eye-tests-in-children/", + "name": "Eye tests for children" + } + ], + "relatedLink": [ + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/tests-and-treatments/?page=1", + "name": "First Page", + "description": "Link to First Page", + "linkRelationship": "Pagination" + }, + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/tests-and-treatments/?page=7", + "name": "Last Page", + "description": "Link to Last Page", + "linkRelationship": "Pagination" + }, + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/tests-and-treatments/?page=1", + "name": "Self", + "description": "Link to nhs.uk Page", + "linkRelationship": "Self" + }, + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/tests-and-treatments/?page=2", + "name": "Next Page", + "description": "Link to Next Page", + "linkRelationship": "Pagination" + } + ] +} diff --git a/sandbox/responses/tests-and-treatments-root-page-7.json b/sandbox/responses/tests-and-treatments-root-page-7.json new file mode 100644 index 0000000..16f4022 --- /dev/null +++ b/sandbox/responses/tests-and-treatments-root-page-7.json @@ -0,0 +1,576 @@ +{ + "@context": "http://schema.org", + "@type": "MedicalWebPage", + "name": "Tests and treatments A to Z", + "copyrightHolder": { + "name": "Crown Copyright", + "@type": "Organization" + }, + "license": "https://developer.api.nhs.uk/terms", + "author": { + "url": "https://www.nhs.uk", + "logo": "https://assets.nhs.uk/nhsuk-cms/images/nhs-attribution.width-510.png", + "email": "nhswebsite.servicedesk@nhs.net", + "@type": "Organization", + "name": "NHS website" + }, + "about": { + "@type": "WebPage", + "name": "Tests and treatments A to Z", + "alternateName": "" + }, + "description": "Find out about surgery and procedures, tests, screening and other treatments, including why they're done and what happens.", + "url": "https://api.service.nhs.uk/nhs-website-content/tests-and-treatments/", + "genre": [], + "keywords": "", + "dateModified": "2025-04-16T12:24:19+00:00", + "breadcrumb": { + "@context": "http://schema.org", + "@type": "BreadcrumbList", + "itemListElement": [ + { + "@type": "ListItem", + "position": 0, + "item": { + "@id": "https://api.service.nhs.uk/nhs-website-content/tests-and-treatments/", + "name": "Tests and treatments A to Z", + "genre": [] + } + } + ] + }, + "contentSubTypes": [], + "significantLink": [ + { + "description": "The progestogen-only pill, also called the mini pill, is a type of hormonal contraception.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Contraception" + ], + "datePublished": "2024-02-29T09:10:18+00:00", + "dateModified": "2025-04-15T14:27:49+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/contraception/methods-of-contraception/progestogen-only-pill/", + "name": "Progestogen-only pill" + }, + { + "description": "Find out about the combined contraceptive pill, including who can take it and where to get it.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Contraception" + ], + "datePublished": "2024-02-29T09:10:07+00:00", + "dateModified": "2025-04-15T14:28:14+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/contraception/methods-of-contraception/combined-pill/", + "name": "Combined pill" + }, + { + "description": "Find out how female sterilisation (also called “getting your tubes tied” or tubal ligation) works to prevent pregnancy, how it’s done and what to expect after surgery.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Contraception" + ], + "datePublished": "2024-02-29T09:10:31+00:00", + "dateModified": "2025-04-15T14:25:51+00:00", + "keywords": "", + "alternateName": [ + "Sterilisation (female)" + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/contraception/methods-of-contraception/female-sterilisation/", + "name": "Female sterilisation" + }, + { + "description": "Find out more about the emergency contraceptive pill (morning after pill), including how to get it and when to take it.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Contraception" + ], + "datePublished": "2024-02-29T08:59:55+00:00", + "dateModified": "2025-04-15T14:25:00+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/contraception/methods-of-contraception/emergency-contraceptive-pill-morning-after-pill/", + "name": "Emergency contraceptive pill (morning after pill)" + }, + { + "description": "Find out about NHS vaccinations for babies, children and adults, including why they're important and how to get them.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [], + "datePublished": "2024-03-06T17:39:14+00:00", + "dateModified": "2025-04-15T14:12:25+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/vaccinations/", + "name": "Vaccinations" + }, + { + "description": "Get advice about getting vaccinated before travelling abroad and information about common travel vaccines.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "WebPage", + "genre": [ + "Advice or information" + ], + "datePublished": "2024-03-06T17:39:38+00:00", + "dateModified": "2025-04-15T14:12:40+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/vaccinations/travel-vaccinations/", + "name": "Travel vaccinations" + }, + { + "description": "Find out about the 4-in-1 pre-school booster, including who should have it, how to get it and side effects.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Vaccine" + ], + "datePublished": "2024-03-06T17:39:47+00:00", + "dateModified": "2025-04-15T14:19:44+00:00", + "lastReviewed": [ + "2023-12-13T16:52:00+00:00", + "2026-12-13T16:52:00+00:00" + ], + "reviewDue": "2026-12-13T16:52:00+00:00", + "keywords": "", + "alternateName": [ + "Pre-school booster vaccine" + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/vaccinations/4-in-1-preschool-booster-vaccine/", + "name": "4-in-1 pre-school booster vaccine" + }, + { + "description": "NHS information about the 6-in-1 vaccine, including what the vaccine helps protect against, who should have it, how to get it and side effects.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Vaccine" + ], + "datePublished": "2024-03-06T17:39:48+00:00", + "dateModified": "2025-04-15T14:21:59+00:00", + "lastReviewed": [ + "2023-06-26T15:54:00+00:00", + "2026-06-26T15:54:00+00:00" + ], + "reviewDue": "2026-06-26T15:54:00+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/vaccinations/6-in-1-vaccine/", + "name": "6-in-1 vaccine" + }, + { + "description": "Find out about the BCG vaccine for tuberculosis (TB), including who should have it and possible side effects.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Vaccine" + ], + "datePublished": "2024-03-06T17:39:52+00:00", + "dateModified": "2025-04-15T14:20:32+00:00", + "lastReviewed": [ + "2023-12-04T16:56:00+00:00", + "2026-12-04T16:56:00+00:00" + ], + "reviewDue": "2026-12-04T16:56:00+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/vaccinations/bcg-vaccine-for-tuberculosis-tb/", + "name": "BCG vaccine for tuberculosis (TB)" + }, + { + "description": "Find out about the chickenpox vaccine, including who can get it on the NHS, how to get it and what the side effects are.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Vaccine" + ], + "datePublished": "2024-03-06T17:39:53+00:00", + "dateModified": "2025-04-15T14:17:11+00:00", + "lastReviewed": [ + "2024-03-19T08:12:00+00:00", + "2027-03-19T08:12:00+00:00" + ], + "reviewDue": "2027-03-19T08:12:00+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/vaccinations/chickenpox-vaccine/", + "name": "Chickenpox vaccine" + }, + { + "description": "Find out about the flu vaccine for adults, including who should have it, how to get it and side effects.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Vaccine" + ], + "datePublished": "2024-03-06T17:39:58+00:00", + "dateModified": "2025-04-15T14:14:49+00:00", + "lastReviewed": [ + "2023-11-23T08:28:00+00:00", + "2026-11-23T08:28:00+00:00" + ], + "reviewDue": "2026-11-23T08:28:00+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/vaccinations/flu-vaccine/", + "name": "Flu vaccine" + }, + { + "description": "Find out about the children's flu vaccine, including who should have it, how to get it and side effects.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Vaccine" + ], + "datePublished": "2024-03-06T17:39:58+00:00", + "dateModified": "2025-04-15T14:16:55+00:00", + "lastReviewed": [ + "2023-12-13T08:33:00+00:00", + "2026-12-13T08:33:00+00:00" + ], + "reviewDue": "2026-12-13T08:33:00+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/vaccinations/child-flu-vaccine/", + "name": "Children's flu vaccine" + }, + { + "description": "Find out about the hepatitis B vaccine, including why it’s given, who can have it and what side effects it can have.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Vaccine" + ], + "datePublished": "2024-03-06T17:39:59+00:00", + "dateModified": "2025-04-15T14:17:36+00:00", + "lastReviewed": [ + "2024-03-19T08:35:00+00:00", + "2027-03-19T08:35:00+00:00" + ], + "reviewDue": "2027-03-19T08:35:00+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/vaccinations/hepatitis-b-vaccine/", + "name": "Hepatitis B vaccine" + }, + { + "description": "Find out about the Hib/MenC vaccine, including what it's for, who should have it and how to get it.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Vaccine" + ], + "datePublished": "2024-03-06T17:40:00+00:00", + "dateModified": "2025-04-15T14:21:17+00:00", + "lastReviewed": [ + "2023-11-30T08:36:00+00:00", + "2026-11-30T08:36:00+00:00" + ], + "reviewDue": "2026-11-30T08:36:00+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/vaccinations/hib-menc-vaccine/", + "name": "Hib/MenC vaccine" + }, + { + "description": "Find out about the HPV vaccine, including who it's for, how to get it and possible side effects.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Vaccine" + ], + "datePublished": "2024-03-06T17:40:04+00:00", + "dateModified": "2025-04-15T14:15:58+00:00", + "lastReviewed": [ + "2023-09-01T07:37:00+00:00", + "2026-09-01T07:37:00+00:00" + ], + "reviewDue": "2026-09-01T07:37:00+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/vaccinations/hpv-vaccine/", + "name": "HPV vaccine" + }, + { + "description": "Find out about the MenACWY vaccine, including what it’s for, who should have it, how to get it and possible side effects.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Vaccine" + ], + "datePublished": "2024-03-06T17:40:08+00:00", + "dateModified": "2025-04-15T14:17:51+00:00", + "lastReviewed": [ + "2024-02-28T08:38:00+00:00", + "2027-02-28T08:38:00+00:00" + ], + "reviewDue": "2027-02-28T08:38:00+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/vaccinations/menacwy-vaccine/", + "name": "MenACWY vaccine" + }, + { + "description": "Find out about the MenB vaccine, including who should have it, how to get it, side effects and how well it works.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Vaccine" + ], + "datePublished": "2024-03-06T17:40:09+00:00", + "dateModified": "2025-04-15T14:20:12+00:00", + "lastReviewed": [ + "2024-03-13T08:40:00+00:00", + "2027-03-13T08:40:00+00:00" + ], + "reviewDue": "2027-03-13T08:40:00+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/vaccinations/menb-vaccine/", + "name": "MenB vaccine" + }, + { + "description": "Find out about the MMR vaccine for measles, mumps and rubella, including who should have it, when it's given and possible side effects.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Vaccine" + ], + "datePublished": "2024-03-06T17:40:10+00:00", + "dateModified": "2025-04-15T14:16:16+00:00", + "lastReviewed": [ + "2024-03-08T08:43:00+00:00", + "2027-03-08T08:43:00+00:00" + ], + "reviewDue": "2027-03-08T08:43:00+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/vaccinations/mmr-vaccine/", + "name": "MMR (measles, mumps and rubella) vaccine" + }, + { + "description": "NHS information about the pneumococcal vaccine, including what the vaccine helps protect against, who should have it, how to get it and side effects.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Vaccine" + ], + "datePublished": "2024-03-06T17:40:11+00:00", + "dateModified": "2025-04-15T14:18:09+00:00", + "lastReviewed": [ + "2023-06-26T07:44:00+00:00", + "2026-06-26T07:44:00+00:00" + ], + "reviewDue": "2026-06-26T07:44:00+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/vaccinations/pneumococcal-vaccine/", + "name": "Pneumococcal vaccine" + }, + { + "description": "Find out about the rotavirus vaccine, including why it's given, who should have it and what the possible side effects are.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Vaccine" + ], + "datePublished": "2024-03-06T17:40:14+00:00", + "dateModified": "2025-04-15T14:21:34+00:00", + "lastReviewed": [ + "2023-12-13T08:45:00+00:00", + "2026-12-13T08:45:00+00:00" + ], + "reviewDue": "2026-12-13T08:45:00+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/vaccinations/rotavirus-vaccine/", + "name": "Rotavirus vaccine" + }, + { + "description": "Find out about the shingles vaccine, including who it's for, how to get it and possible side effects.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Vaccine" + ], + "datePublished": "2024-03-06T17:40:20+00:00", + "dateModified": "2025-04-15T14:16:33+00:00", + "lastReviewed": [ + "2023-09-01T07:46:00+00:00", + "2026-09-01T07:46:00+00:00" + ], + "reviewDue": "2026-09-01T07:46:00+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/vaccinations/shingles-vaccine/", + "name": "Shingles vaccine" + }, + { + "description": "Find out about the Td/IPV vaccine (3-in-1 teenage booster) for tetanus, diphtheria and polio, including who it's for, how to get it and possible side effects.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Vaccine" + ], + "datePublished": "2024-03-06T17:40:24+00:00", + "dateModified": "2025-04-15T14:21:01+00:00", + "lastReviewed": [ + "2024-02-12T08:48:00+00:00", + "2027-02-12T08:48:00+00:00" + ], + "reviewDue": "2027-02-12T08:48:00+00:00", + "keywords": "", + "alternateName": [ + "3-in-1 teenage booster vaccine" + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/vaccinations/td-ipv-vaccine-3-in-1-teenage-booster/", + "name": "Td/IPV vaccine (3-in-1 teenage booster)" + }, + { + "description": "Find out about the RSV vaccine, including who it's for, how to get it and common side effects.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Vaccine" + ], + "datePublished": "2024-09-01T06:05:29+00:00", + "dateModified": "2025-04-15T14:15:25+00:00", + "lastReviewed": [ + "2024-09-01T11:40:00+00:00", + "2027-09-01T11:40:00+00:00" + ], + "reviewDue": "2027-09-01T11:40:00+00:00", + "keywords": "", + "alternateName": [ + "Respiratory syncytial virus (RSV) vaccine" + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/vaccinations/rsv-vaccine/", + "name": "RSV vaccine" + }, + { + "description": "NHS information about the COVID-19 vaccine, including what the vaccine helps protect against, who should have it and when, how to get it and side effects.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Vaccine" + ], + "datePublished": "2024-09-11T12:36:34+00:00", + "dateModified": "2025-04-15T14:14:18+00:00", + "lastReviewed": [ + "2024-09-02T13:17:00+00:00", + "2027-09-02T13:17:00+00:00" + ], + "reviewDue": "2027-09-02T13:17:00+00:00", + "keywords": "" + }, + "url": "https://api.service.nhs.uk/nhs-website-content/vaccinations/covid-19-vaccine/", + "name": "COVID-19 vaccine" + } + ], + "relatedLink": [ + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/tests-and-treatments/?page=1", + "name": "First Page", + "description": "Link to First Page", + "linkRelationship": "Pagination" + }, + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/tests-and-treatments/?page=7", + "name": "Last Page", + "description": "Link to Last Page", + "linkRelationship": "Pagination" + }, + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/tests-and-treatments/?page=7", + "name": "Self", + "description": "Link to nhs.uk Page", + "linkRelationship": "Self" + } + ] +} diff --git a/specification/components/examples/ConditionsHealthAToZ.json b/specification/components/examples/ConditionsHealthAToZ.json index 88f6b91..d431f7f 100644 --- a/specification/components/examples/ConditionsHealthAToZ.json +++ b/specification/components/examples/ConditionsHealthAToZ.json @@ -1,647 +1,826 @@ { - "@context": "http://schema.org", - "@type": "MedicalWebPage", - "name": "Health A to Z", - "copyrightHolder": { - "name": "Crown Copyright", - "@type": "Organization" - }, - "license": "https://developer.api.nhs.uk/terms", - "author": { - "url": "https://www.nhs.uk", - "logo": "https://assets.nhs.uk/nhsuk-cms/images/nhs-attribution.width-510.png", - "email": "nhswebsite.servicedesk@nhs.net", - "@type": "Organization", - "name": "NHS website" - }, - "about": { - "@type": "WebPage", - "name": "Health A to Z" - }, - "description": "", - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/", - "genre": [], - "keywords": "", - "breadcrumb": { "@context": "http://schema.org", - "@type": "BreadcrumbList", - "itemListElement": [ - { - "@type": "ListItem", - "position": 0, - "item": { - "@id": "https://www.nhs.uk/conditions/", - "name": "Health A to Z", - "genre": [] - } - } - ] - }, - "contentSubTypes": [], - "significantLink": [ - { - "description": "Acanthosis nigricans is the term for darkened, thickened patches of skin in the armpit and around the groin and neck. Find out about the main causes and treatments.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-24T08:48:21+00:00", - "dateModified": "2021-11-30T15:42:29+00:00", - "lastReviewed": [ - "2021-06-20T00:00:00+00:00", - "2024-06-20T00:00:00+00:00" - ], - "reviewDue": "2024-06-20T00:00:00+00:00", - "keywords": "", - "code": [ - { - "@type": "MedicalCode", - "codeValue": "", - "codingSystem": "SNOMED-CT" - } - ] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acanthosis-nigricans/", - "name": "Acanthosis nigricans" + "@type": "MedicalWebPage", + "name": "Conditions A to Z", + "copyrightHolder": { + "name": "Crown Copyright", + "@type": "Organization" }, - { - "description": "Read about achalasia, a disorder of the gullet (oesophagus) where it loses the ability to move food along. The valve at the end of the gullet also fails to open.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T15:19:45+00:00", - "dateModified": "2021-12-23T11:26:22+00:00", - "lastReviewed": [ - "2020-12-24T14:50:00+00:00", - "2023-12-24T15:00:00+00:00" - ], - "reviewDue": "2023-12-24T15:00:00+00:00", - "keywords": "", - "code": [ - { - "@type": "MedicalCode", - "codeValue": "", - "codingSystem": "SNOMED-CT" - } - ] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/achalasia/", - "name": "Achalasia" + "license": "https://developer.api.nhs.uk/terms", + "author": { + "url": "https://www.nhs.uk", + "logo": "https://assets.nhs.uk/nhsuk-cms/images/nhs-attribution.width-510.png", + "email": "nhswebsite.servicedesk@nhs.net", + "@type": "Organization", + "name": "NHS website" }, - { - "description": "Find out about first aid and treatment for acid and chemical burns, including burns from acid attacks.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Accident or injury"], - "datePublished": "2018-10-03T19:55:47+00:00", - "dateModified": "2021-11-18T15:26:08+00:00", - "lastReviewed": [ - "2020-09-18T00:00:00+00:00", - "2023-09-18T17:00:00+00:00" - ], - "reviewDue": "2023-09-18T17:00:00+00:00", - "keywords": "", - "code": [ - { - "@type": "MedicalCode", - "codeValue": "", - "codingSystem": "SNOMED-CT" - } - ] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acid-and-chemical-burns/", - "name": "Acid and chemical burns" + "about": { + "@type": "WebPage", + "name": "Conditions A to Z", + "alternateName": "" }, - { - "description": "An acoustic neuroma is a type of non-cancerous (benign) brain tumour. Find out about the symptoms, treatments and outlook for this condition.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T15:44:39+00:00", - "dateModified": "2022-12-02T16:38:26+00:00", - "lastReviewed": [ - "2022-11-29T00:00:00+00:00", - "2025-11-29T00:00:00+00:00" - ], - "reviewDue": "2025-11-29T00:00:00+00:00", - "keywords": "", - "alternateName": ["Vestibular schwannoma"], - "code": [ - { - "@type": "MedicalCode", - "codeValue": "", - "codingSystem": "SNOMED-CT" + "description": "Find out about health conditions, including their symptoms and how they're treated.", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/", + "genre": [], + "keywords": "", + "dateModified": "2025-04-16T13:49:43+00:00", + "breadcrumb": { + "@context": "http://schema.org", + "@type": "BreadcrumbList", + "itemListElement": [ + { + "@type": "ListItem", + "position": 0, + "item": { + "@id": "https://api.service.nhs.uk/nhs-website-content/conditions/", + "name": "Conditions A to Z", + "genre": [] } - ] - }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acoustic-neuroma/", - "name": "Acoustic neuroma (vestibular schwannoma)" + } + ] }, - { - "description": "Find out about acromegaly, a rare condition where the body produces too much growth hormone causing tissue and bone to grow more quickly. Read about symptoms, causes, diagnosis and treatment.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T15:17:11+00:00", - "dateModified": "2022-10-10T10:39:06+00:00", - "lastReviewed": [ - "2020-10-12T00:00:00+00:00", - "2023-10-12T00:00:00+00:00" - ], - "reviewDue": "2023-10-12T00:00:00+00:00", - "keywords": "", - "alternateName": ["Gigantism"], - "code": [ - { - "@type": "MedicalCode", - "codeValue": "", - "codingSystem": "SNOMED-CT" - } - ] + "contentSubTypes": [], + "significantLink": [ + { + "description": "Acanthosis nigricans is the term for darkened, thickened patches of skin in the armpit and around the groin and neck. Find out about the main causes and treatments.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-24T08:48:21+00:00", + "dateModified": "2025-02-20T13:24:49+00:00", + "lastReviewed": [ + "2024-07-04T00:00:00+00:00", + "2027-07-04T00:00:00+00:00" + ], + "reviewDue": "2027-07-04T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acanthosis-nigricans/", + "name": "Acanthosis nigricans" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acromegaly/", - "name": "Acromegaly" - }, - { - "description": "Find out when your urine albumin to creatinine ratio (ACR) should\r\nbe measured. ACR values can help identify kidney disease that occurs as a complication of diabetes.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Test"], - "datePublished": "2018-08-28T16:15:09+00:00", - "dateModified": "2022-05-30T12:17:41+00:00", - "lastReviewed": [ - "2022-05-24T00:00:00+00:00", - "2025-05-24T00:00:00+00:00" - ], - "reviewDue": "2025-05-24T00:00:00+00:00", - "keywords": "", - "code": [ - { - "@type": "MedicalCode", - "codeValue": "", - "codingSystem": "SNOMED-CT" - } - ] + { + "description": "Read about achalasia, a disorder of the gullet (oesophagus) where it loses the ability to move food along. The valve at the end of the gullet also fails to open.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T15:19:45+00:00", + "dateModified": "2023-12-12T10:14:58+00:00", + "lastReviewed": [ + "2023-12-05T14:50:00+00:00", + "2026-12-05T15:00:00+00:00" + ], + "reviewDue": "2026-12-05T15:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/achalasia/", + "name": "Achalasia" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acr-test/", - "name": "Urine albumin to creatinine ratio (ACR)" - }, - { - "description": "Find out more about actinic keratoses, which are patches of skin that have been damaged by the sun.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T15:23:05+00:00", - "dateModified": "2021-11-18T15:26:11+00:00", - "lastReviewed": [ - "2020-06-08T00:00:00+00:00", - "2023-06-08T00:00:00+00:00" - ], - "reviewDue": "2023-06-08T00:00:00+00:00", - "keywords": "", - "alternateName": ["Solar keratoses"], - "code": [ - { - "@type": "MedicalCode", - "codeValue": "", - "codingSystem": "SNOMED-CT" - } - ] + { + "description": "Find out about acid and chemical burns including what causes them, where to get help, how to do first aid, and how they're treated.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Accident or injury" + ], + "datePublished": "2018-10-03T19:55:47+00:00", + "dateModified": "2024-06-10T08:44:38+00:00", + "lastReviewed": [ + "2024-06-05T00:00:00+00:00", + "2027-06-05T17:00:00+00:00" + ], + "reviewDue": "2027-06-05T17:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acid-and-chemical-burns/", + "name": "Acid and chemical burns" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/actinic-keratoses/", - "name": "Actinic keratoses (solar keratoses)" - }, - { - "description": "Read about acupuncture, a treatment derived from ancient Chinese medicine in which fine needles are inserted at certain sites in the body to relieve or prevent health problems", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Treatment"], - "datePublished": "2017-10-17T15:41:00+00:00", - "dateModified": "2021-11-18T15:26:12+00:00", - "lastReviewed": [ - "2019-08-13T00:00:00+00:00", - "2022-08-13T00:00:00+00:00" - ], - "reviewDue": "2022-08-13T00:00:00+00:00", - "keywords": "", - "code": [ - { - "@type": "MedicalCode", - "codeValue": "", - "codingSystem": "SNOMED-CT" - } - ] + { + "description": "An acoustic neuroma is a type of non-cancerous (benign) brain tumour. Find out about the symptoms, treatments and outlook for this condition.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T15:44:39+00:00", + "dateModified": "2024-03-07T16:55:34+00:00", + "lastReviewed": [ + "2022-11-29T00:00:00+00:00", + "2025-11-29T00:00:00+00:00" + ], + "reviewDue": "2025-11-29T00:00:00+00:00", + "keywords": "", + "alternateName": [ + "Vestibular schwannoma" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acoustic-neuroma/", + "name": "Acoustic neuroma (vestibular schwannoma)" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acupuncture/", - "name": "Acupuncture" - }, - { - "description": "Read about acute cholecystitis, which is inflammation of the gallbladder. It usually occurs when a gallstone blocks the cystic duct.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T15:30:37+00:00", - "dateModified": "2022-05-30T14:33:13+00:00", - "lastReviewed": [ - "2019-08-07T00:00:00+00:00", - "2022-08-07T00:00:00+00:00" - ], - "reviewDue": "2022-08-07T00:00:00+00:00", - "keywords": "", - "alternateName": ["Gallbladder pain", "Cholecystitis (acute)"], - "code": [ - { - "@type": "MedicalCode", - "codeValue": "", - "codingSystem": "SNOMED-CT" - } - ] + { + "description": "Find out about acromegaly, the abnormal growth of hands, feet and other body parts. This includes the symptoms, when to get medical help and how it's treated.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T15:17:11+00:00", + "dateModified": "2025-02-20T13:26:16+00:00", + "lastReviewed": [ + "2024-12-19T01:00:00+00:00", + "2027-12-19T01:00:00+00:00" + ], + "reviewDue": "2027-12-19T01:00:00+00:00", + "keywords": "", + "alternateName": [ + "Gigantism" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acromegaly/", + "name": "Acromegaly" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acute-cholecystitis/", - "name": "Acute cholecystitis" - }, - { - "description": "Acute kidney injury (AKI) is sudden damage to the kidneys that causes them to not work properly. It can range from minor loss of kidney function to complete kidney failure.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2018-10-03T19:55:51+00:00", - "dateModified": "2022-09-13T14:52:40+00:00", - "lastReviewed": [ - "2022-09-07T23:00:00+00:00", - "2025-09-07T23:00:00+00:00" - ], - "reviewDue": "2025-09-07T23:00:00+00:00", - "keywords": "", - "code": [ - { - "@type": "MedicalCode", - "codeValue": "", - "codingSystem": "SNOMED-CT" - } - ] + { + "description": "Find out more about actinic keratoses, which are patches of skin that have been damaged by the sun.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T15:23:05+00:00", + "dateModified": "2023-07-04T10:02:21+00:00", + "lastReviewed": [ + "2023-06-14T00:00:00+00:00", + "2026-06-14T00:00:00+00:00" + ], + "reviewDue": "2026-06-14T00:00:00+00:00", + "keywords": "", + "alternateName": [ + "Solar keratoses" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/actinic-keratoses/", + "name": "Actinic keratoses (solar keratoses)" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acute-kidney-injury/", - "name": "Acute kidney injury" - }, - { - "description": "Read about acute respiratory distress syndrome (ARDS), which is a life-threatening condition where the lungs cannot provide the body's vital organs with enough oxygen.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T15:27:22+00:00", - "dateModified": "2023-01-16T09:10:43+00:00", - "lastReviewed": [ - "2020-03-12T00:00:00+00:00", - "2023-03-12T00:00:00+00:00" - ], - "reviewDue": "2023-03-12T00:00:00+00:00", - "keywords": "", - "code": [ - { - "@type": "MedicalCode", - "codeValue": "", - "codingSystem": "SNOMED-CT" - } - ] + { + "description": "Read about acute cholecystitis, which is inflammation of the gallbladder. It usually occurs when a gallstone blocks the cystic duct.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T15:30:37+00:00", + "dateModified": "2023-12-18T14:58:04+00:00", + "lastReviewed": [ + "2023-02-21T01:00:00+00:00", + "2026-02-21T01:00:00+00:00" + ], + "reviewDue": "2026-02-21T01:00:00+00:00", + "keywords": "", + "alternateName": [ + "Gallbladder pain", + "Cholecystitis (acute)" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acute-cholecystitis/", + "name": "Acute cholecystitis" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acute-respiratory-distress-syndrome/", - "name": "Acute respiratory distress syndrome" - }, - { - "description": "Read about an adenoidectomy, a surgical procedure to remove the adenoids. Find out what the adenoids do, when they need to be removed and how the procedure is done.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": [], - "datePublished": "2017-10-17T15:31:58+00:00", - "dateModified": "2023-01-12T11:20:41+00:00", - "lastReviewed": [ - "2020-02-10T15:37:00+00:00", - "2023-02-10T15:37:00+00:00" - ], - "reviewDue": "2023-02-10T15:37:00+00:00", - "keywords": "", - "code": [ - { - "@type": "MedicalCode", - "codeValue": "", - "codingSystem": "SNOMED-CT" - } - ] + { + "description": "Acute kidney injury (AKI) is sudden damage to the kidneys that causes them to not work properly. It can range from minor loss of kidney function to complete kidney failure.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2018-10-03T19:55:51+00:00", + "dateModified": "2022-09-13T14:52:40+00:00", + "lastReviewed": [ + "2022-09-07T23:00:00+00:00", + "2025-09-07T23:00:00+00:00" + ], + "reviewDue": "2025-09-07T23:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acute-kidney-injury/", + "name": "Acute kidney injury" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/adenoids-and-adenoidectomy/", - "name": "Adenoidectomy" - }, - { - "description": "An air or gas embolism is a serious problem that can happen to scuba divers and during some medical procedures. Read about the causes, symptoms and treatments.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-12-01T09:45:51+00:00", - "dateModified": "2021-11-18T15:26:18+00:00", - "lastReviewed": [ - "2020-12-16T00:00:00+00:00", - "2023-12-16T00:00:00+00:00" - ], - "reviewDue": "2023-12-16T00:00:00+00:00", - "keywords": "", - "alternateName": ["Decompression sickness"], - "code": [ - { - "@type": "MedicalCode", - "codeValue": "", - "codingSystem": "SNOMED-CT" - } - ] + { + "description": "Find out about acute respiratory distress syndrome, including who’s at risk of getting it, the symptoms, how it’s treated and what causes it.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T15:27:22+00:00", + "dateModified": "2024-06-18T15:33:56+00:00", + "lastReviewed": [ + "2023-07-11T23:00:00+00:00", + "2026-07-11T23:00:00+00:00" + ], + "reviewDue": "2026-07-11T23:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acute-respiratory-distress-syndrome/", + "name": "Acute respiratory distress syndrome (ARDS)" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/air-embolism/", - "name": "Air or gas embolism" - }, - { - "description": "Find out about alcohol poisoning, what the symptoms are, what to do if you think you or someone else has it, what the treatments are and what causes it.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T15:40:36+00:00", - "dateModified": "2023-01-12T12:26:14+00:00", - "lastReviewed": [ - "2023-01-11T01:00:00+00:00", - "2026-01-11T01:00:00+00:00" - ], - "reviewDue": "2026-01-11T01:00:00+00:00", - "keywords": "", - "code": [ - { - "@type": "MedicalCode", - "codeValue": "", - "codingSystem": "SNOMED-CT" - } - ] + { + "description": "Find out about alcohol poisoning, what the symptoms are, what to do if you think you or someone else has it, what the treatments are and what causes it.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T15:40:36+00:00", + "dateModified": "2024-06-19T13:14:22+00:00", + "lastReviewed": [ + "2023-01-11T01:00:00+00:00", + "2026-01-11T01:00:00+00:00" + ], + "reviewDue": "2026-01-11T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/alcohol-poisoning/", + "name": "Alcohol poisoning" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/alcohol-poisoning/", - "name": "Alcohol poisoning" - }, - { - "description": "The Alexander technique teaches improved posture and movement, which is believed to help reduce and prevent problems caused by unhelpful habits.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Treatment"], - "datePublished": "2017-10-17T16:16:34+00:00", - "dateModified": "2021-11-18T15:26:20+00:00", - "lastReviewed": [ - "2021-09-06T00:00:00+00:00", - "2024-09-06T00:00:00+00:00" - ], - "reviewDue": "2024-09-06T00:00:00+00:00", - "keywords": "", - "code": [ - { - "@type": "MedicalCode", - "codeValue": "", - "codingSystem": "SNOMED-CT" - } - ] + { + "description": "Read about alkaptonuria, or \"black urine disease\", a rare inherited disorder that can turn urine and parts of the body a dark colour and lead to other problems.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-24T10:34:28+00:00", + "dateModified": "2024-10-15T08:00:59+00:00", + "lastReviewed": [ + "2022-03-10T00:00:00+00:00", + "2025-03-10T00:00:00+00:00" + ], + "reviewDue": "2025-03-10T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/alkaptonuria/", + "name": "Alkaptonuria" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/alexander-technique/", - "name": "Alexander technique" - }, - { - "description": "Read about alkaptonuria, or \"black urine disease\", a rare inherited disorder that can turn urine and parts of the body a dark colour and lead to other problems.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-24T10:34:28+00:00", - "dateModified": "2022-05-30T14:54:22+00:00", - "lastReviewed": [ - "2022-03-10T00:00:00+00:00", - "2025-03-10T00:00:00+00:00" - ], - "reviewDue": "2025-03-10T00:00:00+00:00", - "keywords": "", - "code": [ - { - "@type": "MedicalCode", - "codeValue": "", - "codingSystem": "SNOMED-CT" - } - ] + { + "description": "Find out about amyloidosis, including what the symptoms are, when and where to get medical help, the causes and how it's treated.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T15:48:36+00:00", + "dateModified": "2025-02-28T12:50:27+00:00", + "lastReviewed": [ + "2023-08-23T00:00:00+00:00", + "2026-08-23T00:00:00+00:00" + ], + "reviewDue": "2026-08-23T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/amyloidosis/", + "name": "Amyloidosis" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/alkaptonuria/", - "name": "Alkaptonuria" - }, - { - "description": "Information about amputation, including why and how it's carried out, recovery and rehabilitation, prosthetics, stump care and possible complications.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Procedure", "Treatment"], - "datePublished": "2017-10-17T15:47:57+00:00", - "dateModified": "2022-12-15T08:28:26+00:00", - "lastReviewed": [ - "2019-08-12T00:00:00+00:00", - "2022-08-09T00:00:00+00:00" - ], - "reviewDue": "2022-08-09T00:00:00+00:00", - "keywords": "", - "code": [ - { - "@type": "MedicalCode", - "codeValue": "", - "codingSystem": "SNOMED-CT" - } - ] + { + "description": "Read about anabolic steroids, which are prescription-only medicines that are sometimes taken without medical advice to increase muscle mass and improve athletic performance.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "WebPage", + "genre": [ + "Advice or information" + ], + "datePublished": "2017-10-17T15:50:01+00:00", + "dateModified": "2024-11-27T11:27:43+00:00", + "lastReviewed": [ + "2022-04-13T09:37:00+00:00", + "2025-04-13T09:37:00+00:00" + ], + "reviewDue": "2025-04-13T09:37:00+00:00", + "keywords": "", + "alternateName": [ + "Steroid misuse" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anabolic-steroid-misuse/", + "name": "Anabolic steroid misuse" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/amputation/", - "name": "Amputation" - }, - { - "description": "Read about amyloidosis, a group of rare but serious conditions caused by deposits of abnormal protein called amyloid found in tissues and organs throughout the body.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T15:48:36+00:00", - "dateModified": "2021-11-18T15:26:23+00:00", - "lastReviewed": [ - "2020-09-17T00:00:00+00:00", - "2023-09-17T00:00:00+00:00" - ], - "reviewDue": "2023-09-17T00:00:00+00:00", - "keywords": "", - "code": [ - { - "@type": "MedicalCode", - "codeValue": "", - "codingSystem": "SNOMED-CT" - } - ] + { + "description": "Read about Angelman syndrome, a genetic disorder that affects the nervous system and causes severe physical and intellectual disability", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:28:17+00:00", + "dateModified": "2023-04-13T10:12:21+00:00", + "lastReviewed": [ + "2023-03-09T01:00:00+00:00", + "2026-03-09T01:00:00+00:00" + ], + "reviewDue": "2026-03-09T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/angelman-syndrome/", + "name": "Angelman syndrome" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/amyloidosis/", - "name": "Amyloidosis" - }, - { - "description": "Read about anabolic steroids, which are prescription-only medicines that are sometimes taken without medical advice to increase muscle mass and improve athletic performance.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "WebPage", - "genre": ["Advice or information"], - "datePublished": "2017-10-17T15:50:01+00:00", - "dateModified": "2022-11-04T09:39:37+00:00", - "lastReviewed": [ - "2022-04-13T09:37:00+00:00", - "2025-04-13T09:37:00+00:00" - ], - "reviewDue": "2025-04-13T09:37:00+00:00", - "keywords": "", - "alternateName": ["Steroid misuse"], - "code": [ - { - "@type": "MedicalCode", - "codeValue": "", - "codingSystem": "SNOMED-CT" - } - ] + { + "description": "Find out what to do if you’ve been bitten by an animal or person, including first aid advice, when to get medical help and what treatment you may need.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Accident or injury" + ], + "datePublished": "2017-10-17T15:53:13+00:00", + "dateModified": "2024-06-18T15:43:26+00:00", + "lastReviewed": [ + "2022-06-22T23:00:00+00:00", + "2025-06-22T23:00:00+00:00" + ], + "reviewDue": "2025-06-22T23:00:00+00:00", + "keywords": "", + "alternateName": [ + "Bite (animal or human)", + "Cat bites", + "Dog bites", + "Human bites" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/animal-and-human-bites/", + "name": "Animal and human bites" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anabolic-steroid-misuse/", - "name": "Anabolic steroid misuse" - }, - { - "description": "Find out about different types of anaesthetics, how they work, and the potential side effects. Also, read about the role of the anaesthetist.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Medicine"], - "datePublished": "2017-10-17T15:49:39+00:00", - "dateModified": "2021-11-18T15:26:25+00:00", - "lastReviewed": [ - "2021-09-23T00:00:00+00:00", - "2024-09-23T00:00:00+00:00" - ], - "reviewDue": "2024-09-23T00:00:00+00:00", - "keywords": "", - "code": [ - { - "@type": "MedicalCode", - "codeValue": "", - "codingSystem": "SNOMED-CT" - } - ] + { + "description": "Find out about the symptoms of heart rhythm problems and what causes them, and when you should see a GP.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2018-02-19T15:41:03+00:00", + "dateModified": "2025-04-08T14:24:30+00:00", + "lastReviewed": [ + "2024-10-28T00:00:00+00:00", + "2027-10-27T23:00:00+00:00" + ], + "reviewDue": "2027-10-27T23:00:00+00:00", + "keywords": "", + "alternateName": [ + "Arrhythmia" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/arrhythmia/", + "name": "Heart rhythm problems (arrhythmia)" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anaesthesia/", - "name": "Anaesthesia" - }, - { - "description": "Anal cancer is a rare type of cancer that affects the anus. Get information and advice about symptoms, causes and treatments.", - "linkRelationship": "Result", - "@type": "LinkRole", - "articleStatus": "published", - "mainEntityOfPage": { - "@type": "MedicalWebPage", - "genre": ["Condition"], - "datePublished": "2017-10-17T16:08:41+00:00", - "dateModified": "2022-07-12T15:04:44+00:00", - "lastReviewed": [ - "2021-03-08T01:00:00+00:00", - "2024-03-08T01:00:00+00:00" - ], - "reviewDue": "2024-03-08T01:00:00+00:00", - "keywords": "", - "code": [ - { - "@type": "MedicalCode", - "codeValue": "", - "codingSystem": "SNOMED-CT" - } - ] + { + "description": "Asbestosis is a serious lung condition caused by exposure to asbestos – a building material used mostly from the 1950s to the 1990s.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:02:11+00:00", + "dateModified": "2024-03-20T15:19:22+00:00", + "lastReviewed": [ + "2023-07-31T15:03:00+00:00", + "2026-07-31T00:00:00+00:00" + ], + "reviewDue": "2026-07-31T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/asbestosis/", + "name": "Asbestosis" }, - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anal-cancer/", - "name": "Anal cancer" - } - ], - "relatedLink": [ - { - "@type": "LinkRole", - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/?page=1", - "name": "First Page", - "description": "Link to First Page", - "linkRelationship": "Pagination" - }, - { - "@type": "LinkRole", - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/?page=191", - "name": "Last Page", - "description": "Link to Last Page", - "linkRelationship": "Pagination" - }, - { - "@type": "LinkRole", - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/", - "name": "Self", - "description": "Link to nhs.uk Page", - "linkRelationship": "Self" - }, - { - "@type": "LinkRole", - "url": "https://api.service.nhs.uk/nhs-website-content/conditions/?page=2", - "name": "Next Page", - "description": "Link to Next Page", - "linkRelationship": "Pagination" - } - ], - "webpage": "https://www.nhs.uk/conditions/" -} + { + "description": "Find out more about atherosclerosis, what the symptoms are, how you can help stop it getting worse, how it's treated and what causes it.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T15:59:05+00:00", + "dateModified": "2024-11-27T11:55:44+00:00", + "lastReviewed": [ + "2023-01-30T01:00:00+00:00", + "2026-01-30T01:00:00+00:00" + ], + "reviewDue": "2026-01-30T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/atherosclerosis/", + "name": "Atherosclerosis" + }, + { + "description": "Read about athlete's foot, a common fungal infection of the foot. Find out about the symptoms, what causes it, and how it's treated.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:02:41+00:00", + "dateModified": "2024-05-08T11:28:05+00:00", + "lastReviewed": [ + "2024-04-29T17:00:00+00:00", + "2027-04-29T17:00:00+00:00" + ], + "reviewDue": "2027-04-29T17:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/athletes-foot/", + "name": "Athlete's foot" + }, + { + "description": "Find out about auditory processing disorder, a condition where you have difficulty understanding sounds including spoken words.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:01:41+00:00", + "dateModified": "2025-03-24T11:59:49+00:00", + "lastReviewed": [ + "2023-07-31T00:00:00+00:00", + "2026-07-31T00:00:00+00:00" + ], + "reviewDue": "2026-07-31T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/auditory-processing-disorder/", + "name": "Auditory processing disorder (APD)" + }, + { + "description": "Read about balanitis, which is where the head of the penis is swollen and sore. Find out about the symptoms, causes, treatments and when to get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:07:52+00:00", + "dateModified": "2023-05-30T12:15:43+00:00", + "lastReviewed": [ + "2023-05-30T00:00:00+00:00", + "2026-05-30T00:00:00+00:00" + ], + "reviewDue": "2026-05-30T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/balanitis/", + "name": "Balanitis" + }, + { + "description": "Find out about bedbugs, including checking if you have them, how to get rid of them and how to treat bedbug bites.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:09:19+00:00", + "dateModified": "2023-11-08T13:24:51+00:00", + "lastReviewed": [ + "2022-08-01T23:00:00+00:00", + "2025-08-01T23:00:00+00:00" + ], + "reviewDue": "2025-08-01T23:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/bedbugs/", + "name": "Bedbugs" + }, + { + "description": "Find out more about a black eye, which is bruising and swelling around your eye, usually caused by a blow.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Accident or injury" + ], + "datePublished": "2017-10-17T16:07:56+00:00", + "dateModified": "2024-06-18T15:49:03+00:00", + "lastReviewed": [ + "2023-07-27T00:00:00+00:00", + "2026-07-27T00:00:00+00:00" + ], + "reviewDue": "2026-07-27T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/black-eye/", + "name": "Black eye" + }, + { + "description": "Find out about the symptoms of an infected piercing, including what to do if your piercing is infected and how to keep your piercing clean to stop it getting infected.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:19:09+00:00", + "dateModified": "2023-04-25T09:59:10+00:00", + "lastReviewed": [ + "2023-04-18T00:00:00+00:00", + "2026-04-18T00:00:00+00:00" + ], + "reviewDue": "2026-04-18T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/infected-piercings/", + "name": "Infected piercings" + }, + { + "description": "Read more about boils and carbuncles, which are red, painful lumps on the skin that are usually caused by a bacterial infection.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-17T16:16:23+00:00", + "dateModified": "2023-06-23T15:18:57+00:00", + "lastReviewed": [ + "2023-06-20T00:00:00+00:00", + "2026-06-20T00:00:00+00:00" + ], + "reviewDue": "2026-06-20T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/boils/", + "name": "Boils" + } + ], + "relatedLink": [ + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/?page=1", + "name": "First Page", + "description": "Link to First Page", + "linkRelationship": "Pagination" + }, + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/?page=29", + "name": "Last Page", + "description": "Link to Last Page", + "linkRelationship": "Pagination" + }, + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/", + "name": "Self", + "description": "Link to nhs.uk Page", + "linkRelationship": "Self" + }, + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/?page=2", + "name": "Next Page", + "description": "Link to Next Page", + "linkRelationship": "Pagination" + } + ], + "webpage": "https://www.nhs.uk/conditions/" + } \ No newline at end of file diff --git a/specification/components/examples/SymptomsAToZ.json b/specification/components/examples/SymptomsAToZ.json new file mode 100644 index 0000000..1257af5 --- /dev/null +++ b/specification/components/examples/SymptomsAToZ.json @@ -0,0 +1,832 @@ +{ + "@context": "http://schema.org", + "@type": "MedicalWebPage", + "name": "Symptoms A to Z", + "copyrightHolder": { + "name": "Crown Copyright", + "@type": "Organization" + }, + "license": "https://developer.api.nhs.uk/terms", + "author": { + "url": "https://www.nhs.uk", + "logo": "https://assets.nhs.uk/nhsuk-cms/images/nhs-attribution.width-510.png", + "email": "nhswebsite.servicedesk@nhs.net", + "@type": "Organization", + "name": "NHS website" + }, + "about": { + "@type": "WebPage", + "name": "Symptoms A to Z", + "alternateName": "" + }, + "description": "Find out about symptoms such as pain, stomach problems or skin symptoms, including causes, treatment and what to do.", + "url": "https://api.service.nhs.uk/nhs-website-content/symptoms/", + "genre": [], + "keywords": "", + "dateModified": "2025-04-16T12:23:46+00:00", + "breadcrumb": { + "@context": "http://schema.org", + "@type": "BreadcrumbList", + "itemListElement": [ + { + "@type": "ListItem", + "position": 0, + "item": { + "@id": "https://api.service.nhs.uk/nhs-website-content/symptoms/", + "name": "Symptoms A to Z", + "genre": [] + } + } + ] + }, + "contentSubTypes": [], + "significantLink": [ + { + "description": "Find out what causes anal pain, what you can do to ease the pain and when to get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-17T15:49:36+00:00", + "dateModified": "2025-04-15T15:32:37+00:00", + "lastReviewed": [ + "2022-03-15T01:00:00+00:00", + "2025-03-15T01:00:00+00:00" + ], + "reviewDue": "2025-03-15T01:00:00+00:00", + "keywords": "", + "alternateName": [ + "Proctalgia" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/anal-pain/", + "name": "Anal pain" + }, + { + "description": "Find out about possible causes of blood in semen and when to get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2018-10-03T19:56:07+00:00", + "dateModified": "2025-04-16T10:56:47+00:00", + "lastReviewed": [ + "2022-03-15T01:00:00+00:00", + "2025-03-15T01:00:00+00:00" + ], + "reviewDue": "2025-03-15T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/blood-in-semen/", + "name": "Blood in semen" + }, + { + "description": "Find out about blood in urine (pee). It's not usually anything serious, but sometimes it can be, so you must get it checked out by a GP.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-12-08T09:36:05+00:00", + "dateModified": "2025-04-16T11:26:05+00:00", + "lastReviewed": [ + "2023-05-19T00:00:00+00:00", + "2026-05-19T00:00:00+00:00" + ], + "reviewDue": "2026-05-19T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/blood-in-urine/", + "name": "Blood in urine" + }, + { + "description": "Find out about breast pain and what can cause it. It's usually linked to periods but can also be caused by injury, infection and taking certain medicines.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-17T16:24:54+00:00", + "dateModified": "2025-04-15T15:39:08+00:00", + "lastReviewed": [ + "2023-05-03T00:00:00+00:00", + "2026-05-03T00:00:00+00:00" + ], + "reviewDue": "2026-05-03T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/breast-pain/", + "name": "Breast pain" + }, + { + "description": "Find out about catarrh, including what the symptoms are, what you can do to help ease it, when to get medical help, and treatments that may be recommended.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition" + ], + "datePublished": "2017-10-18T07:05:13+00:00", + "dateModified": "2025-04-11T16:48:08+00:00", + "lastReviewed": [ + "2022-11-17T00:00:00+00:00", + "2025-11-17T00:00:00+00:00" + ], + "reviewDue": "2025-11-17T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/catarrh/", + "name": "Catarrh" + }, + { + "description": "Find out what could be causing your chest pain and if you need to go to hospital or see a GP.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-18T08:06:30+00:00", + "dateModified": "2025-04-15T15:42:48+00:00", + "lastReviewed": [ + "2023-08-08T00:00:00+00:00", + "2026-08-08T00:00:00+00:00" + ], + "reviewDue": "2026-08-08T00:00:00+00:00", + "keywords": "", + "alternateName": [ + "Heart pain" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/chest-pain/", + "name": "Chest pain" + }, + { + "description": "NHS information about sudden confusion (delirium), including how to tell if someone is confused and when to get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-18T08:54:48+00:00", + "dateModified": "2025-04-16T10:31:23+00:00", + "lastReviewed": [ + "2024-05-28T00:00:00+00:00", + "2027-05-28T00:00:00+00:00" + ], + "reviewDue": "2027-05-28T00:00:00+00:00", + "keywords": "", + "alternateName": [ + "Confusion (sudden)", + "Delirium" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/confusion/", + "name": "Sudden confusion (delirium)" + }, + { + "description": "Read about coughs, including what you can do to ease a cough, help from a pharmacist and when to see a GP.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-18T09:02:00+00:00", + "dateModified": "2025-04-15T15:44:18+00:00", + "lastReviewed": [ + "2023-12-08T00:00:00+00:00", + "2026-12-08T00:00:00+00:00" + ], + "reviewDue": "2026-12-08T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/cough/", + "name": "Cough" + }, + { + "description": "Read about coughing up blood, including what can cause it and when to get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-18T13:18:19+00:00", + "dateModified": "2025-04-15T15:44:43+00:00", + "lastReviewed": [ + "2024-06-13T00:00:00+00:00", + "2027-06-13T00:00:00+00:00" + ], + "reviewDue": "2027-06-13T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/coughing-up-blood/", + "name": "Coughing up blood (blood in phlegm)" + }, + { + "description": "Find out about blue or grey skin or lips (cyanosis), including what it looks like, what causes it and when to get it checked.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-18T09:21:42+00:00", + "dateModified": "2025-04-15T15:37:35+00:00", + "lastReviewed": [ + "2023-10-04T00:00:00+00:00", + "2026-10-04T00:00:00+00:00" + ], + "reviewDue": "2026-10-04T00:00:00+00:00", + "keywords": "", + "alternateName": [ + "Cyanosis" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/blue-skin-or-lips-cyanosis/", + "name": "Blue or grey skin or lips (cyanosis)" + }, + { + "description": "Dizziness is a common symptom that’s not usually a sign of anything serious. Find out what you can do about it and when to get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-18T10:14:27+00:00", + "dateModified": "2025-04-16T08:40:55+00:00", + "lastReviewed": [ + "2023-04-21T11:19:00+00:00", + "2026-04-21T00:00:00+00:00" + ], + "reviewDue": "2026-04-21T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/dizziness/", + "name": "Dizziness" + }, + { + "description": "Find out about dry mouth, including what causes it and things you can do to help ease it yourself.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-18T10:58:37+00:00", + "dateModified": "2025-04-16T08:41:49+00:00", + "lastReviewed": [ + "2023-11-29T00:00:00+00:00", + "2026-11-29T00:00:00+00:00" + ], + "reviewDue": "2026-11-29T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/dry-mouth/", + "name": "Dry mouth" + }, + { + "description": "Find out about earache and ear pain, a common condition, particularly in young children. It's not usually a sign of anything serious, but it can be painful.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-18T10:20:27+00:00", + "dateModified": "2025-04-16T10:59:20+00:00", + "lastReviewed": [ + "2022-04-29T00:00:00+00:00", + "2025-04-29T00:00:00+00:00" + ], + "reviewDue": "2025-04-29T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/earache/", + "name": "Earache" + }, + { + "description": "Ejaculation problems such as premature, delayed and retrograde ejaculation are a common cause of sexual problems in men.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "WebPage", + "genre": [ + "Advice or information" + ], + "datePublished": "2017-10-18T09:42:33+00:00", + "dateModified": "2025-04-11T16:51:56+00:00", + "lastReviewed": [ + "2023-02-09T01:00:00+00:00", + "2026-02-09T01:00:00+00:00" + ], + "reviewDue": "2026-02-09T01:00:00+00:00", + "keywords": "", + "alternateName": [ + "Premature ejaculation" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/ejaculation-problems/", + "name": "Ejaculation problems" + }, + { + "description": "Find out what you can do to treat a painful arm or elbow yourself, and when to get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-18T09:51:42+00:00", + "dateModified": "2025-04-16T08:43:13+00:00", + "lastReviewed": [ + "2024-01-26T18:00:00+00:00", + "2027-01-26T18:00:00+00:00" + ], + "reviewDue": "2027-01-26T18:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/elbow-and-arm-pain/", + "name": "Elbow and arm pain" + }, + { + "description": "Read about excessive daytime sleepiness (hypersomnia), a condition that causes you to feel very sleepy during the day, even if you had a good night's sleep.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition", + "Symptom" + ], + "datePublished": "2017-10-18T10:43:10+00:00", + "dateModified": "2025-04-11T16:19:23+00:00", + "lastReviewed": [ + "2023-06-23T00:00:00+00:00", + "2026-06-23T00:00:00+00:00" + ], + "reviewDue": "2026-06-23T00:00:00+00:00", + "keywords": "", + "alternateName": [ + "Hypersomnia" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/excessive-daytime-sleepiness-hypersomnia/", + "name": "Excessive daytime sleepiness (hypersomnia)" + }, + { + "description": "Find out what to do if you have a lump on your eyelid, or an eyelid that's swollen, sticky, itchy or painful.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-18T10:29:43+00:00", + "dateModified": "2025-04-16T08:45:26+00:00", + "lastReviewed": [ + "2023-11-17T01:00:00+00:00", + "2026-11-17T16:38:00+00:00" + ], + "reviewDue": "2026-11-17T16:38:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/eyelid-problems/", + "name": "Eyelid problems" + }, + { + "description": "Find out how to check if your child has a high temperature (fever), what you can do to bring their temperature down, and when to get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-24T15:25:05+00:00", + "dateModified": "2025-04-16T10:11:29+00:00", + "lastReviewed": [ + "2024-01-03T17:00:00+00:00", + "2027-01-03T17:00:00+00:00" + ], + "reviewDue": "2027-01-03T17:00:00+00:00", + "keywords": "", + "alternateName": [ + "Fever in children" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/fever-in-children/", + "name": "High temperature (fever) in children" + }, + { + "description": "Find out what heart palpitations are, what they feel like, common causes and when to get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-18T13:44:19+00:00", + "dateModified": "2025-04-16T10:10:30+00:00", + "lastReviewed": [ + "2022-06-07T00:00:00+00:00", + "2025-06-07T00:00:00+00:00" + ], + "reviewDue": "2025-06-07T00:00:00+00:00", + "keywords": "", + "alternateName": [ + "Palpitations", + "Ectopic beats" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/heart-palpitations/", + "name": "Heart palpitations" + }, + { + "description": "Find out about common causes of hip pain in adults, how you can help ease hip pain and when you should get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-18T15:45:13+00:00", + "dateModified": "2025-04-16T10:11:45+00:00", + "lastReviewed": [ + "2022-03-11T01:00:00+00:00", + "2025-03-11T01:00:00+00:00" + ], + "reviewDue": "2025-03-11T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/hip-pain/", + "name": "Hip pain in adults" + }, + { + "description": "Find out about indigestion, a common problem that causes pain or discomfort in your upper abdomen (dyspepsia) or behind your breastbone (heartburn).", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Condition", + "Symptom" + ], + "datePublished": "2017-10-18T18:33:34+00:00", + "dateModified": "2025-04-11T16:25:10+00:00", + "lastReviewed": [ + "2023-05-05T18:00:00+00:00", + "2026-05-05T18:00:00+00:00" + ], + "reviewDue": "2026-05-05T18:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/indigestion/", + "name": "Indigestion" + }, + { + "description": "Find out about hip pain in children, including what causes it, when to get medical help and how it can be treated.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2018-01-10T14:49:56+00:00", + "dateModified": "2025-04-16T10:12:02+00:00", + "lastReviewed": [ + "2024-04-03T13:39:00+00:00", + "2027-04-03T13:39:00+00:00" + ], + "reviewDue": "2027-04-03T13:39:00+00:00", + "keywords": "", + "alternateName": [ + "Irritable hip" + ], + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/hip-pain-children-irritable-hip/", + "name": "Hip pain in children (irritable hip)" + }, + { + "description": "Find out about common causes of joint pain, how you can help ease joint pain and when you should get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-18T16:51:32+00:00", + "dateModified": "2025-04-16T10:14:39+00:00", + "lastReviewed": [ + "2022-05-03T00:00:00+00:00", + "2025-05-03T00:00:00+00:00" + ], + "reviewDue": "2025-05-03T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/joint-pain/", + "name": "Joint pain" + }, + { + "description": "Sudden knee pain is often caused by overusing the knee or injuring it. Find out what you can do to treat it yourself and when to get medical help.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-19T07:07:57+00:00", + "dateModified": "2025-04-16T10:14:53+00:00", + "lastReviewed": [ + "2023-12-21T00:00:00+00:00", + "2026-12-21T00:00:00+00:00" + ], + "reviewDue": "2026-12-21T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/knee-pain/", + "name": "Knee pain" + }, + { + "description": "Find out more about limping in children, which is usually caused by something minor like a sprain or strain.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Symptom" + ], + "datePublished": "2017-10-19T12:52:42+00:00", + "dateModified": "2025-04-16T10:15:07+00:00", + "lastReviewed": [ + "2025-01-23T09:00:00+00:00", + "2028-01-23T09:00:00+00:00" + ], + "reviewDue": "2028-01-23T09:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/limp-in-children/", + "name": "Limping in children" + } + ], + "relatedLink": [ + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/symptoms/?page=1", + "name": "First Page", + "description": "Link to First Page", + "linkRelationship": "Pagination" + }, + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/symptoms/?page=6", + "name": "Last Page", + "description": "Link to Last Page", + "linkRelationship": "Pagination" + }, + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/symptoms/", + "name": "Self", + "description": "Link to nhs.uk Page", + "linkRelationship": "Self" + }, + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/symptoms/?page=2", + "name": "Next Page", + "description": "Link to Next Page", + "linkRelationship": "Pagination" + } + ], + "webpage": "https://www.nhs.uk/symptoms/" + } \ No newline at end of file diff --git a/specification/components/examples/TestsAndTreatmentsAToZ.json b/specification/components/examples/TestsAndTreatmentsAToZ.json new file mode 100644 index 0000000..41d1cea --- /dev/null +++ b/specification/components/examples/TestsAndTreatmentsAToZ.json @@ -0,0 +1,806 @@ +{ + "@context": "http://schema.org", + "@type": "MedicalWebPage", + "name": "Tests and treatments A to Z", + "copyrightHolder": { + "name": "Crown Copyright", + "@type": "Organization" + }, + "license": "https://developer.api.nhs.uk/terms", + "author": { + "url": "https://www.nhs.uk", + "logo": "https://assets.nhs.uk/nhsuk-cms/images/nhs-attribution.width-510.png", + "email": "nhswebsite.servicedesk@nhs.net", + "@type": "Organization", + "name": "NHS website" + }, + "about": { + "@type": "WebPage", + "name": "Tests and treatments A to Z", + "alternateName": "" + }, + "description": "Find out about surgery and procedures, tests, screening and other treatments, including why they're done and what happens.", + "url": "https://api.service.nhs.uk/nhs-website-content/tests-and-treatments/", + "genre": [], + "keywords": "", + "dateModified": "2025-04-16T12:24:19+00:00", + "breadcrumb": { + "@context": "http://schema.org", + "@type": "BreadcrumbList", + "itemListElement": [ + { + "@type": "ListItem", + "position": 0, + "item": { + "@id": "https://api.service.nhs.uk/nhs-website-content/tests-and-treatments/", + "name": "Tests and treatments A to Z", + "genre": [] + } + } + ] + }, + "contentSubTypes": [], + "significantLink": [ + { + "description": "Find out when your urine albumin to creatinine ratio (ACR) should\r\nbe measured. ACR values can help identify kidney disease that occurs as a complication of diabetes.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Test" + ], + "datePublished": "2018-08-28T16:15:09+00:00", + "dateModified": "2025-04-15T14:09:45+00:00", + "lastReviewed": [ + "2022-05-24T00:00:00+00:00", + "2025-05-24T00:00:00+00:00" + ], + "reviewDue": "2025-05-24T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acr-test/", + "name": "Urine albumin to creatinine ratio (ACR)" + }, + { + "description": "Read about acupuncture, a treatment derived from ancient Chinese medicine in which fine needles are inserted at certain sites in the body to relieve or prevent health problems", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Treatment" + ], + "datePublished": "2017-10-17T15:41:00+00:00", + "dateModified": "2025-04-15T10:38:33+00:00", + "lastReviewed": [ + "2023-02-28T02:00:00+00:00", + "2026-02-28T03:00:00+00:00" + ], + "reviewDue": "2026-02-28T03:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/acupuncture/", + "name": "Acupuncture" + }, + { + "description": "Find out what an adenoidectomy is, why it's done, what happens during the operation and the possible complications.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Treatment", + "Procedure" + ], + "datePublished": "2017-10-17T15:31:58+00:00", + "dateModified": "2025-04-15T10:38:48+00:00", + "lastReviewed": [ + "2023-03-10T15:37:00+00:00", + "2026-03-10T15:37:00+00:00" + ], + "reviewDue": "2026-03-10T15:37:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/adenoidectomy/", + "name": "Adenoidectomy" + }, + { + "description": "The Alexander technique teaches improved posture and movement, which is believed to help reduce and prevent problems caused by unhelpful habits.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Treatment" + ], + "datePublished": "2017-10-17T16:16:34+00:00", + "dateModified": "2025-04-15T10:39:02+00:00", + "lastReviewed": [ + "2024-10-23T00:00:00+00:00", + "2027-10-23T00:00:00+00:00" + ], + "reviewDue": "2027-10-23T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/alexander-technique/", + "name": "Alexander technique" + }, + { + "description": "Information about amputation, including why and how it's carried out, recovery and rehabilitation, prosthetics, stump care and possible complications.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Treatment", + "Procedure" + ], + "datePublished": "2017-10-17T15:47:57+00:00", + "dateModified": "2025-04-15T10:38:04+00:00", + "lastReviewed": [ + "2023-02-17T01:00:00+00:00", + "2026-02-17T01:00:00+00:00" + ], + "reviewDue": "2026-02-17T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/amputation/", + "name": "Amputation" + }, + { + "description": "Find out about intrauterine (artificial) insemination, or IUI, a procedure to help you get pregnant where sperm are put directly into your womb.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Procedure" + ], + "datePublished": "2017-10-17T16:07:35+00:00", + "dateModified": "2025-04-16T10:12:35+00:00", + "lastReviewed": [ + "2024-06-24T23:00:00+00:00", + "2027-06-24T23:00:00+00:00" + ], + "reviewDue": "2027-06-24T23:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/intrauterine-insemination-iui/", + "name": "Intrauterine insemination (IUI)" + }, + { + "description": "Read about having a barium enema, including what you need to do to prepare, what happens during the test, and what happens afterwards.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Test", + "Procedure" + ], + "datePublished": "2017-10-17T16:09:38+00:00", + "dateModified": "2025-04-15T10:48:15+00:00", + "lastReviewed": [ + "2022-05-13T00:00:00+00:00", + "2025-05-13T00:00:00+00:00" + ], + "reviewDue": "2025-05-13T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/barium-enema/", + "name": "Barium enema" + }, + { + "description": "Find out about blood groups. There are 4 main blood groups – A, B, AB and O.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "WebPage", + "genre": [ + "Advice or information" + ], + "datePublished": "2017-10-17T16:22:10+00:00", + "dateModified": "2025-04-15T11:00:33+00:00", + "lastReviewed": [ + "2023-05-10T08:40:00+00:00", + "2026-05-10T08:40:00+00:00" + ], + "reviewDue": "2026-05-10T08:40:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/blood-groups/", + "name": "Blood groups" + }, + { + "description": "Find out why a blood pressure test is important, how it’s done and what your blood pressure reading might mean.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Test" + ], + "datePublished": "2018-07-30T13:46:29+00:00", + "dateModified": "2025-04-15T14:46:03+00:00", + "lastReviewed": [ + "2023-07-11T03:00:00+00:00", + "2026-07-11T03:00:00+00:00" + ], + "reviewDue": "2026-07-11T03:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/blood-pressure-test/", + "name": "Blood pressure test" + }, + { + "description": "Find out whether you might be eligible for breast reduction surgery on the NHS and what to do if you think you might qualify.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "WebPage", + "genre": [ + "Advice or information" + ], + "datePublished": "2017-10-17T16:38:33+00:00", + "dateModified": "2025-04-15T12:37:42+00:00", + "lastReviewed": [ + "2022-11-14T01:00:00+00:00", + "2025-11-14T01:00:00+00:00" + ], + "reviewDue": "2025-11-14T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/breast-reduction-on-the-nhs/", + "name": "Breast reduction on the NHS" + }, + { + "description": "Find out what chiropractic is, how you can get it on the NHS or privately, and what the treatment involves.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Treatment" + ], + "datePublished": "2017-10-18T08:28:36+00:00", + "dateModified": "2025-04-15T12:42:28+00:00", + "lastReviewed": [ + "2023-09-06T00:00:00+00:00", + "2026-09-06T00:00:00+00:00" + ], + "reviewDue": "2026-09-06T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/chiropractic/", + "name": "Chiropractic" + }, + { + "description": "Read about circumcision in boys, including why it's carried out, medical reasons for circumcision, what the procedure involves, recovery and risks.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Treatment", + "Procedure" + ], + "datePublished": "2017-10-18T11:29:35+00:00", + "dateModified": "2025-04-15T12:42:54+00:00", + "lastReviewed": [ + "2022-06-26T23:00:00+00:00", + "2025-06-26T23:00:00+00:00" + ], + "reviewDue": "2025-06-26T23:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/circumcision-in-boys/", + "name": "Circumcision in boys" + }, + { + "description": "Read about the medical reasons why circumcision in men may be necessary and what happens before, during and after the procedure.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Treatment", + "Procedure" + ], + "datePublished": "2017-10-18T10:51:56+00:00", + "dateModified": "2025-04-15T12:43:21+00:00", + "lastReviewed": [ + "2022-09-20T23:00:00+00:00", + "2025-09-20T23:00:00+00:00" + ], + "reviewDue": "2025-09-20T23:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/circumcision-in-men/", + "name": "Circumcision in men" + }, + { + "description": "Find out more about why CT scans are done and what happens before, during and after the scan.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Test" + ], + "datePublished": "2017-10-18T08:39:28+00:00", + "dateModified": "2025-04-15T12:48:55+00:00", + "lastReviewed": [ + "2023-11-08T01:00:00+00:00", + "2026-11-08T01:00:00+00:00" + ], + "reviewDue": "2026-11-08T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/ct-scan/", + "name": "CT scan" + }, + { + "description": "Find out about dentures (false teeth), including when they’re needed, how to get them, how they’re made and fitted and how to look after them.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Treatment" + ], + "datePublished": "2017-10-18T09:39:42+00:00", + "dateModified": "2025-04-15T12:50:24+00:00", + "lastReviewed": [ + "2025-03-19T01:00:00+00:00", + "2028-03-19T01:00:00+00:00" + ], + "reviewDue": "2028-03-19T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/dentures/", + "name": "Dentures (false teeth)" + }, + { + "description": "Find out who should have diabetic eye screening, why it's done and what happens, and when you’ll get your results.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Test" + ], + "datePublished": "2017-10-18T09:19:09+00:00", + "dateModified": "2025-04-15T12:50:39+00:00", + "lastReviewed": [ + "2024-10-25T00:00:00+00:00", + "2027-10-25T00:00:00+00:00" + ], + "reviewDue": "2027-10-25T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/diabetic-eye-screening/", + "name": "Diabetic eye screening" + }, + { + "description": "Read about echocardiograms, including why they're done, what happens during the test, and what the risks are.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Test" + ], + "datePublished": "2017-10-18T09:55:44+00:00", + "dateModified": "2025-04-15T12:58:32+00:00", + "lastReviewed": [ + "2022-03-28T00:00:00+00:00", + "2025-03-28T01:00:00+00:00" + ], + "reviewDue": "2025-03-28T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/echocardiogram/", + "name": "Echocardiogram" + }, + { + "description": "Find out more about ECGs (electrocardiograms), including why they're done, the different types, and what happens.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Test" + ], + "datePublished": "2017-10-18T10:18:23+00:00", + "dateModified": "2025-04-15T12:58:50+00:00", + "lastReviewed": [ + "2023-11-09T01:00:00+00:00", + "2026-11-09T01:00:00+00:00" + ], + "reviewDue": "2026-11-09T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/electrocardiogram/", + "name": "Electrocardiogram (ECG)" + }, + { + "description": "Find out about an electroencephalogram (EEG), which records brain activity, and when this type of test may be used.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Test" + ], + "datePublished": "2017-10-18T09:46:42+00:00", + "dateModified": "2025-04-15T12:59:07+00:00", + "lastReviewed": [ + "2022-01-05T04:00:00+00:00", + "2025-01-05T04:00:00+00:00" + ], + "reviewDue": "2025-01-05T04:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/electroencephalogram/", + "name": "Electroencephalogram (EEG)" + }, + { + "description": "Find out why and when an electrolyte test may be needed. Also, read about the possible treatments that may be recommended if you have an electrolyte imbalance.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Test" + ], + "datePublished": "2018-08-29T14:19:41+00:00", + "dateModified": "2025-04-15T12:59:28+00:00", + "lastReviewed": [ + "2022-03-15T01:00:00+00:00", + "2025-03-15T01:00:00+00:00" + ], + "reviewDue": "2025-03-15T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/electrolyte-test/", + "name": "Electrolyte test" + }, + { + "description": "Read more about emollients, which are moisturising treatments applied directly to the skin. They're often used to treat skin conditions like eczema.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Medicine" + ], + "datePublished": "2017-10-18T14:01:06+00:00", + "dateModified": "2025-04-15T12:59:47+00:00", + "lastReviewed": [ + "2023-10-24T00:00:00+00:00", + "2026-10-24T00:00:00+00:00" + ], + "reviewDue": "2026-10-24T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/emollients/", + "name": "Emollients" + }, + { + "description": "Find out about the different types of endoscopy. The type of endoscopy you have will depend on your symptoms.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "WebPage", + "genre": [ + "Advice or information" + ], + "datePublished": "2017-10-18T11:53:17+00:00", + "dateModified": "2025-04-15T13:00:14+00:00", + "lastReviewed": [ + "2022-02-08T12:27:00+00:00", + "2025-02-08T12:27:00+00:00" + ], + "reviewDue": "2025-02-08T12:27:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/endoscopy/", + "name": "Endoscopy" + }, + { + "description": "Find out about enhanced recovery, an evidence-based approach that helps people to recover more quickly after having major surgery.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "WebPage", + "genre": [ + "Advice or information" + ], + "datePublished": "2017-10-18T11:58:19+00:00", + "dateModified": "2025-04-15T13:00:25+00:00", + "lastReviewed": [ + "2023-04-18T12:07:00+00:00", + "2026-04-18T12:07:00+00:00" + ], + "reviewDue": "2026-04-18T12:07:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/enhanced-recovery/", + "name": "Enhanced recovery" + }, + { + "description": "Read about euthanasia (deliberately ending a person's life to relieve suffering) and assisted suicide (deliberately assisting a person to kill themselves). Both are illegal in England.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "WebPage", + "genre": [ + "Advice or information" + ], + "datePublished": "2018-06-07T10:29:10+00:00", + "dateModified": "2025-04-15T13:00:47+00:00", + "lastReviewed": [ + "2023-07-12T00:00:00+00:00", + "2026-07-12T00:00:00+00:00" + ], + "reviewDue": "2026-07-12T00:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/euthanasia-and-assisted-suicide/", + "name": "Euthanasia and assisted suicide" + }, + { + "description": "Read about the routine eye checks that newborn babies have and eye tests for children. Eye checks are important because they allow any problems to be identified early on in a child's development.", + "linkRelationship": "Result", + "@type": "LinkRole", + "articleStatus": "published", + "mainEntityOfPage": { + "@type": "MedicalWebPage", + "genre": [ + "Test" + ], + "datePublished": "2017-10-18T11:14:11+00:00", + "dateModified": "2025-04-15T13:12:56+00:00", + "lastReviewed": [ + "2023-03-07T01:00:00+00:00", + "2026-03-07T01:00:00+00:00" + ], + "reviewDue": "2026-03-07T01:00:00+00:00", + "keywords": "", + "code": [ + { + "@type": "MedicalCode", + "codeValue": "", + "codingSystem": "SNOMED-CT" + } + ] + }, + "url": "https://api.service.nhs.uk/nhs-website-content/conditions/eye-tests-in-children/", + "name": "Eye tests for children" + } + ], + "relatedLink": [ + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/tests-and-treatments/?page=1", + "name": "First Page", + "description": "Link to First Page", + "linkRelationship": "Pagination" + }, + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/tests-and-treatments/?page=7", + "name": "Last Page", + "description": "Link to Last Page", + "linkRelationship": "Pagination" + }, + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/tests-and-treatments/", + "name": "Self", + "description": "Link to nhs.uk Page", + "linkRelationship": "Self" + }, + { + "@type": "LinkRole", + "url": "https://api.service.nhs.uk/nhs-website-content/tests-and-treatments/?page=2", + "name": "Next Page", + "description": "Link to Next Page", + "linkRelationship": "Pagination" + } + ], + "webpage": "https://www.nhs.uk/tests-and-treatments/" + } \ No newline at end of file diff --git a/specification/nhs-website-content-api.yaml b/specification/nhs-website-content-api.yaml index db20edc..dee2d6e 100644 --- a/specification/nhs-website-content-api.yaml +++ b/specification/nhs-website-content-api.yaml @@ -8,9 +8,15 @@ info: ## Overview This API provides content from the [NHS website](https://www.nhs.uk) as JSON, to be consumed programmatically and used by your application. + ⚠️ Before April 2025, many pages covering symptoms, tests or treatments were inappropriately included in the Conditions A to Z. + + The April 2025 update introduces two new endpoints for 'symptoms' and 'tests-and-treatments' that reflect the reallocation of these pages to new A to Z pages on the website. + You can reuse the content from the following sections of the NHS website: - * Health A to Z / Conditions ([Website](https://www.nhs.uk/conditions/) | [API](https://digital.nhs.uk/developer/api-catalogue/nhs-website-content/v2#get-/conditions)) + * Conditions A to Z ([Website](https://www.nhs.uk/conditions/) | [API](https://digital.nhs.uk/developer/api-catalogue/nhs-website-content/v2#get-/conditions)) * Medicines A to Z ([Website](https://www.nhs.uk/medicines/) | [API](https://digital.nhs.uk/developer/api-catalogue/nhs-website-content/v2#get-/medicines)) + * Symptoms A to Z ([Website](https://www.nhs.uk/symptoms/) | [API](https://digital.nhs.uk/developer/api-catalogue/nhs-website-content/v2#get-/symptoms)) + * Tests and treatments A to Z ([Website](https://www.nhs.uk/tests-and-treatments/) | [API](https://digital.nhs.uk/developer/api-catalogue/nhs-website-content/v2#get-/tests-and-treatments)) * Mental health ([Website](https://www.nhs.uk/mental-health/) | [API](https://digital.nhs.uk/developer/api-catalogue/nhs-website-content/v2#get-/mental-health)) * Live Well ([Website](https://www.nhs.uk/live-well/) | [API](https://digital.nhs.uk/developer/api-catalogue/nhs-website-content/v2#get-/live-well)) * Pregnancy ([Website](https://www.nhs.uk/pregnancy/) | [API](https://digital.nhs.uk/developer/api-catalogue/nhs-website-content/v2#get-/pregnancy)) @@ -25,6 +31,13 @@ info: If you are migrating from our [old NHS website APIs](https://developer.api.nhs.uk/nhs-api), we have a [migration guide](https://developer.api.nhs.uk/support/migration/guide) to help walk you through the process and a [migration assistant](https://developer.api.nhs.uk/support/migration/assistant) to illustrate the differences in how your API requests will need to be updated. + ## Updates + + | Version | Date | Changes | + |------------|-----|--------------| + | 2.2.0 | April 2025 | Introduce `symptoms` and `tests-and-treatments` endpoints | + + ## Who can use this API Anyone can use this API for any purpose, so long as they have agreed to the [Online connection agreement](https://digital.nhs.uk/developer/guides-and-documentation/online-connection-agreement) during the [onboarding process](https://digital.nhs.uk/developer/guides-and-documentation/onboarding-process) and they include an [attribution](#overview--attribution) as outlined below. @@ -231,7 +244,7 @@ info: -

The sandbox environment includes the following 62 mocked endpoints

+

The sandbox environment includes the following 67 mocked endpoints

@@ -250,13 +263,12 @@ info:
  • https://sandbox.api.service.nhs.uk/nhs-website-content/conditions/
  • https://sandbox.api.service.nhs.uk/nhs-website-content/conditions/?category=a
  • https://sandbox.api.service.nhs.uk/nhs-website-content/conditions/?category=a&genre=condition
  • -
  • https://sandbox.api.service.nhs.uk/nhs-website-content/conditions/?category=a&genre=guide
  • https://sandbox.api.service.nhs.uk/nhs-website-content/conditions/?category=a&genre=hub
  • https://sandbox.api.service.nhs.uk/nhs-website-content/conditions/?category=b
  • https://sandbox.api.service.nhs.uk/nhs-website-content/conditions/?category=z
  • https://sandbox.api.service.nhs.uk/nhs-website-content/conditions/?page=1
  • https://sandbox.api.service.nhs.uk/nhs-website-content/conditions/?page=2
  • -
  • https://sandbox.api.service.nhs.uk/nhs-website-content/conditions/?page=70
  • +
  • https://sandbox.api.service.nhs.uk/nhs-website-content/conditions/?page=29
  • https://sandbox.api.service.nhs.uk/nhs-website-content/conditions/acanthosis-nigricans/
  • https://sandbox.api.service.nhs.uk/nhs-website-content/conditions/achalasia/
  • https://sandbox.api.service.nhs.uk/nhs-website-content/conditions/acne/
  • @@ -278,6 +290,22 @@ info:
  • https://sandbox.api.service.nhs.uk/nhs-website-content/medicines/acrivastine/?modules=true
  • https://sandbox.api.service.nhs.uk/nhs-website-content/medicines/zopiclone/
  • +

    Symptoms A-Z

    + +

    Tests and Treatments A-Z

    +

    Mental health

    • https://sandbox.api.service.nhs.uk/nhs-website-content/mental-health/
    • @@ -613,6 +641,104 @@ paths: description: | An error occurred as follows: + | HTTP status | Error code | Description | + | ----------- | -------------------------- | --------------------------------------------- | + | 401 | ACCESS_DENIED | API key missing, invalid or expired, or calling application not configured for this operation. | + | 403 | ACCESS_DENIED | User cannot perform this action. | + | 404 | RESOURCE_NOT_FOUND | Page not found. | + | 429 | TOO_MANY_REQUESTS | You have exceeded your application's [rate limit](https://digital.nhs.uk/developer/guides-and-documentation/reference-guide#rate-limits). | + /symptoms: + parameters: + - $ref: "#/components/parameters/page" + - $ref: "#/components/parameters/category" + - $ref: "#/components/parameters/orderBy" + - $ref: "#/components/parameters/startDate" + - $ref: "#/components/parameters/endDate" + - $ref: "#/components/parameters/order" + get: + summary: Get all pages in the Symptoms A to Z + operationId: get-symptoms + description: | + ## Overview + Use this endpoint to get details of pages in the [Symptoms A to Z](https://www.nhs.uk/symptoms). + + Passing in no parameters returns all pages under 'symptoms'. + + The response is limited to 25 child pages and is paginated. + + There are a number of query parameters that filter the results. + + ## Ordering by dates + + The `orderBy` parameter can be `dateModified`, `lastReviewed` and `nextReview`. By default if any of the `orderBy` parameters are chosen the results are sorted by newest first. + + However, the `orderBy` parameter can be used with the `startDate` and `endDate` parameters to filter down to the desired date. `startDate` and `endDate` should be given in the YYYY-MM-DD format. + + For example `https://api.service.nhs.uk/nhs-website-content/symptoms?startDate=2022-01-01&orderBy=dateModified` + + responses: + "200": + description: | + A valid query for symptoms. + content: + application/json: + schema: + $ref: components/schemas/WebPage.json + example: + $ref: components/examples/SymptomsAToZ.json + "4XX": + description: | + An error occurred as follows: + + | HTTP status | Error code | Description | + | ----------- | -------------------------- | --------------------------------------------- | + | 401 | ACCESS_DENIED | API key missing, invalid or expired, or calling application not configured for this operation. | + | 403 | ACCESS_DENIED | User cannot perform this action. | + | 404 | RESOURCE_NOT_FOUND | Page not found. | + | 429 | TOO_MANY_REQUESTS | You have exceeded your application's [rate limit](https://digital.nhs.uk/developer/guides-and-documentation/reference-guide#rate-limits). | + /tests-and-treatments: + parameters: + - $ref: "#/components/parameters/page" + - $ref: "#/components/parameters/category" + - $ref: "#/components/parameters/orderBy" + - $ref: "#/components/parameters/startDate" + - $ref: "#/components/parameters/endDate" + - $ref: "#/components/parameters/order" + get: + summary: Get all pages in the Tests and Treatments A to Z + operationId: get-tests-and-treatments + description: | + ## Overview + Use this endpoint to get details of pages in the [tests-and-treatments A to Z](https://www.nhs.uk/tests-and-treatments). + + Passing in no parameters returns all pages under 'tests-and-treatments'. + + The response is limited to 25 child pages and is paginated. + + There are a number of query parameters that filter the results. + + ## Ordering by dates + + The `orderBy` parameter can be `dateModified`, `lastReviewed` and `nextReview`. By default if any of the `orderBy` parameters are chosen the results are sorted by newest first. + + However, the `orderBy` parameter can be used with the `startDate` and `endDate` parameters to filter down to the desired date. `startDate` and `endDate` should be given in the YYYY-MM-DD format. + + For example `https://api.service.nhs.uk/nhs-website-content/tests-and-treatments?startDate=2022-01-01&orderBy=dateModified` + + responses: + "200": + description: | + A valid query for tests-and-treatments. + content: + application/json: + schema: + $ref: components/schemas/WebPage.json + example: + $ref: components/examples/TestsAndTreatmentsAToZ.json + "4XX": + description: | + An error occurred as follows: + | HTTP status | Error code | Description | | ----------- | -------------------------- | --------------------------------------------- | | 401 | ACCESS_DENIED | API key missing, invalid or expired, or calling application not configured for this operation. |